@Stability(value=Stable)
public static interface CfnVirtualNode.ListenerTimeoutProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getGrpc()
An object that represents types of timeouts.
|
default Object |
getHttp()
An object that represents types of timeouts.
|
default Object |
getHttp2()
An object that represents types of timeouts.
|
default Object |
getTcp()
An object that represents types of timeouts.
|
@Stability(value=Stable) @Nullable default Object getGrpc()
@Stability(value=Stable) @Nullable default Object getHttp()
@Stability(value=Stable) @Nullable default Object getHttp2()
@Stability(value=Stable) @Nullable default Object getTcp()
@Stability(value=Stable) static CfnVirtualNode.ListenerTimeoutProperty.Builder builder()
Copyright © 2022. All rights reserved.