Interface CfnComputeEnvironment.UpdatePolicyProperty

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

@Stability(Stable) public static interface CfnComputeEnvironment.UpdatePolicyProperty extends software.amazon.jsii.JsiiSerializable
Specifies the infrastructure update policy for the compute environment.

For more information about infrastructure updates, see Updating compute environments in the AWS Batch User Guide .

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.batch.*;
 UpdatePolicyProperty updatePolicyProperty = UpdatePolicyProperty.builder()
         .jobExecutionTimeoutMinutes(123)
         .terminateJobsOnUpdate(false)
         .build();