Interface CfnQueueProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQueueProps.Jsii$Proxy
CfnQueue
.
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.mediaconvert.*; Object tags; CfnQueueProps cfnQueueProps = CfnQueueProps.builder() .description("description") .name("name") .pricingPlan("pricingPlan") .status("status") .tags(tags) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnQueueProps
static final class
An implementation forCfnQueueProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnQueueProps.Builder
builder()
default String
Optional.default String
getName()
The name of the queue that you are creating.default String
When you use AWS CloudFormation , you can create only on-demand queues.default String
Initial state of the queue.default Object
getTags()
An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
Optional.A description of the queue that you are creating.
-
getName
The name of the queue that you are creating. -
getPricingPlan
When you use AWS CloudFormation , you can create only on-demand queues.Therefore, always set
PricingPlan
to the value "ON_DEMAND" when declaring an AWS::MediaConvert::Queue in your AWS CloudFormation template.To create a reserved queue, use the AWS Elemental MediaConvert console at https://console.aws.amazon.com/mediaconvert to set up a contract. For more information, see Working with AWS Elemental MediaConvert Queues in the ** .
-
getStatus
Initial state of the queue.Queues can be either ACTIVE or PAUSED. If you create a paused queue, then jobs that you send to that queue won't begin.
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
-
builder
- Returns:
- a
CfnQueueProps.Builder
ofCfnQueueProps
-