Interface CfnServicePropsMixin.TimeoutConfigurationProperty

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

@Stability(Stable) public static interface CfnServicePropsMixin.TimeoutConfigurationProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the timeout configurations for Service Connect.

If idleTimeout is set to a time that is less than perRequestTimeout , the connection will close when the idleTimeout is reached and not the perRequestTimeout .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ecs.*;
 TimeoutConfigurationProperty timeoutConfigurationProperty = TimeoutConfigurationProperty.builder()
         .idleTimeoutSeconds(123)
         .perRequestTimeoutSeconds(123)
         .build();
 

See Also: