interface ConnectionSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticLoadBalancing.CfnLoadBalancer.ConnectionSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancing#CfnLoadBalancer_ConnectionSettingsProperty |
Java | software.amazon.awscdk.services.elasticloadbalancing.CfnLoadBalancer.ConnectionSettingsProperty |
Python | aws_cdk.aws_elasticloadbalancing.CfnLoadBalancer.ConnectionSettingsProperty |
TypeScript | aws-cdk-lib » aws_elasticloadbalancing » CfnLoadBalancer » ConnectionSettingsProperty |
Specifies the idle timeout value for your Classic Load Balancer.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticloadbalancing as elb } from 'aws-cdk-lib';
const connectionSettingsProperty: elb.CfnLoadBalancer.ConnectionSettingsProperty = {
idleTimeout: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| idle | number | The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer. |
idleTimeout
Type:
number
The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer.

.NET
Go
Java
Python
TypeScript