package awsappmesh // 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 "github.com/aws/aws-cdk-go/awscdk" // // tcpTimeoutProperty := &TcpTimeoutProperty{ // Idle: &DurationProperty{ // Unit: jsii.String("unit"), // Value: jsii.Number(123), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tcptimeout.html // type CfnVirtualNode_TcpTimeoutProperty struct { // 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. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tcptimeout.html#cfn-appmesh-virtualnode-tcptimeout-idle // Idle interface{} `field:"optional" json:"idle" yaml:"idle"` }