@Stability(value=Stable)
public static interface CfnRoute.TcpTimeoutProperty
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.*;
TcpTimeoutProperty tcpTimeoutProperty = TcpTimeoutProperty.builder()
.idle(DurationProperty.builder()
.unit("unit")
.value(123)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRoute.TcpTimeoutProperty.Builder
A builder for
CfnRoute.TcpTimeoutProperty |
static class |
CfnRoute.TcpTimeoutProperty.Jsii$Proxy
An implementation for
CfnRoute.TcpTimeoutProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnRoute.TcpTimeoutProperty.Builder |
builder() |
default Object |
getIdle()
An object that represents an idle timeout.
|
@Stability(value=Stable) @Nullable default Object getIdle()
An idle timeout bounds the amount of time that a connection may be idle. The default value is none.
@Stability(value=Stable) static CfnRoute.TcpTimeoutProperty.Builder builder()
Copyright © 2022. All rights reserved.