public static interface CfnVirtualNode.ListenerTimeoutProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.appmesh.*; ListenerTimeoutProperty listenerTimeoutProperty = ListenerTimeoutProperty.builder() .grpc(GrpcTimeoutProperty.builder() .idle(DurationProperty.builder() .unit("unit") .value(123) .build()) .perRequest(DurationProperty.builder() .unit("unit") .value(123) .build()) .build()) .http(HttpTimeoutProperty.builder() .idle(DurationProperty.builder() .unit("unit") .value(123) .build()) .perRequest(DurationProperty.builder() .unit("unit") .value(123) .build()) .build()) .http2(HttpTimeoutProperty.builder() .idle(DurationProperty.builder() .unit("unit") .value(123) .build()) .perRequest(DurationProperty.builder() .unit("unit") .value(123) .build()) .build()) .tcp(TcpTimeoutProperty.builder() .idle(DurationProperty.builder() .unit("unit") .value(123) .build()) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnVirtualNode.ListenerTimeoutProperty.Builder
A builder for
CfnVirtualNode.ListenerTimeoutProperty |
static class |
CfnVirtualNode.ListenerTimeoutProperty.Jsii$Proxy
An implementation for
CfnVirtualNode.ListenerTimeoutProperty |
Modifier and Type | Method and Description |
---|---|
static CfnVirtualNode.ListenerTimeoutProperty.Builder |
builder() |
default java.lang.Object |
getGrpc()
An object that represents types of timeouts.
|
default java.lang.Object |
getHttp()
An object that represents types of timeouts.
|
default java.lang.Object |
getHttp2()
An object that represents types of timeouts.
|
default java.lang.Object |
getTcp()
An object that represents types of timeouts.
|
default java.lang.Object getGrpc()
default java.lang.Object getHttp()
default java.lang.Object getHttp2()
default java.lang.Object getTcp()
static CfnVirtualNode.ListenerTimeoutProperty.Builder builder()