Interface CfnListener.ListenerAttributeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnListener.ListenerAttributeProperty.Jsii$Proxy
- Enclosing class:
CfnListener
@Stability(Stable)
public static interface CfnListener.ListenerAttributeProperty
extends software.amazon.jsii.JsiiSerializable
Information about a listener attribute.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.elasticloadbalancingv2.*;
ListenerAttributeProperty listenerAttributeProperty = ListenerAttributeProperty.builder()
.key("key")
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnListener.ListenerAttributePropertystatic final classAn implementation forCfnListener.ListenerAttributeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The name of the attribute.The following attribute is supported by Network Load Balancers, and Gateway Load Balancers.
tcp.idle_timeout.seconds- The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.
- See Also:
-
getValue
The value of the attribute.- See Also:
-
builder
-