aws-cdk-lib.aws_appmesh.TcpTimeout

interface TcpTimeout

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.TcpTimeout
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#TcpTimeout
Javasoftware.amazon.awscdk.services.appmesh.TcpTimeout
Pythonaws_cdk.aws_appmesh.TcpTimeout
TypeScript (source)aws-cdk-lib » aws_appmesh » TcpTimeout

Represents timeouts for TCP protocols.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_appmesh as appmesh } from 'aws-cdk-lib';
const tcpTimeout: appmesh.TcpTimeout = {
  idle: cdk.Duration.minutes(30),
};

Properties

NameTypeDescription
idle?DurationRepresents an idle timeout.

idle?

Type: Duration (optional, default: none)

Represents an idle timeout.

The amount of time that a connection may be idle.