interface TcpTimeoutProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnRoutePropsMixin.TcpTimeoutProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnRoutePropsMixin_TcpTimeoutProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnRoutePropsMixin.TcpTimeoutProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnRoutePropsMixin.TcpTimeoutProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnRoutePropsMixin » TcpTimeoutProperty |
An object that represents types of timeouts.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appmesh as appmesh } from '@aws-cdk/cfn-property-mixins';
const tcpTimeoutProperty: appmesh.CfnRoutePropsMixin.TcpTimeoutProperty = {
idle: {
unit: 'unit',
value: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| idle? | IResolvable | Duration | An object that represents an idle timeout. |
idle?
Type:
IResolvable | Duration
(optional)
An object that represents an idle timeout.
An idle timeout bounds the amount of time that a connection may be idle. The default value is none.

.NET
Go
Java
Python
TypeScript