interface ListenerTimeoutProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.CfnVirtualNode.ListenerTimeoutProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualNode_ListenerTimeoutProperty |
![]() | software.amazon.awscdk.services.appmesh.CfnVirtualNode.ListenerTimeoutProperty |
![]() | aws_cdk.aws_appmesh.CfnVirtualNode.ListenerTimeoutProperty |
![]() | aws-cdk-lib » aws_appmesh » CfnVirtualNode » ListenerTimeoutProperty |
An object that represents timeouts for different protocols.
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-lib';
const listenerTimeoutProperty: appmesh.CfnVirtualNode.ListenerTimeoutProperty = {
grpc: {
idle: {
unit: 'unit',
value: 123,
},
perRequest: {
unit: 'unit',
value: 123,
},
},
http: {
idle: {
unit: 'unit',
value: 123,
},
perRequest: {
unit: 'unit',
value: 123,
},
},
http2: {
idle: {
unit: 'unit',
value: 123,
},
perRequest: {
unit: 'unit',
value: 123,
},
},
tcp: {
idle: {
unit: 'unit',
value: 123,
},
},
};
Properties
Name | Type | Description |
---|---|---|
grpc? | IResolvable | Grpc | An object that represents types of timeouts. |
http? | IResolvable | Http | An object that represents types of timeouts. |
http2? | IResolvable | Http | An object that represents types of timeouts. |
tcp? | IResolvable | Tcp | An object that represents types of timeouts. |
grpc?
Type:
IResolvable
|
Grpc
(optional)
An object that represents types of timeouts.
http?
Type:
IResolvable
|
Http
(optional)
An object that represents types of timeouts.
http2?
Type:
IResolvable
|
Http
(optional)
An object that represents types of timeouts.
tcp?
Type:
IResolvable
|
Tcp
(optional)
An object that represents types of timeouts.