interface ListenerTimeoutProperty
This page is available in another version. Click here for the v2 documentation.
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.CfnVirtualNode.ListenerTimeoutProperty |
![]() | software.amazon.awscdk.services.appmesh.CfnVirtualNode.ListenerTimeoutProperty |
![]() | aws_cdk.aws_appmesh.CfnVirtualNode.ListenerTimeoutProperty |
![]() | @aws-cdk/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 * as appmesh from '@aws-cdk/aws-appmesh';
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.