Interface CfnVirtualNode.GrpcTimeoutProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVirtualNode.GrpcTimeoutProperty.Jsii$Proxy
Enclosing class:
CfnVirtualNode

@Stability(Stable) public static interface CfnVirtualNode.GrpcTimeoutProperty extends software.amazon.jsii.JsiiSerializable
An object that represents types of timeouts.

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.*;
 GrpcTimeoutProperty grpcTimeoutProperty = GrpcTimeoutProperty.builder()
         .idle(DurationProperty.builder()
                 .unit("unit")
                 .value(123)
                 .build())
         .perRequest(DurationProperty.builder()
                 .unit("unit")
                 .value(123)
                 .build())
         .build();
 

See Also: