Interface CfnService.TimeoutConfigurationProperty

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

@Stability(Stable) public static interface CfnService.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.services.ecs.*;
 TimeoutConfigurationProperty timeoutConfigurationProperty = TimeoutConfigurationProperty.builder()
         .idleTimeoutSeconds(123)
         .perRequestTimeoutSeconds(123)
         .build();
 

See Also: