Interface CfnJobTemplatePropsMixin.HopDestinationProperty

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

@Stability(Stable) public static interface CfnJobTemplatePropsMixin.HopDestinationProperty extends software.amazon.jsii.JsiiSerializable
Optional.

Configuration for a destination queue to which the job can hop once a customer-defined minimum wait time has passed. For more information, see Setting Up Queue Hopping to Avoid Long Waits in the AWS Elemental MediaConvert 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.cfnpropertymixins.services.mediaconvert.*;
 HopDestinationProperty hopDestinationProperty = HopDestinationProperty.builder()
         .priority(123)
         .queue("queue")
         .waitMinutes(123)
         .build();
 

See Also: