@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:48.870Z")
public interface CfnQueueProps
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnQueueProps.Builder
A builder for
CfnQueueProps |
static class |
CfnQueueProps.Jsii$Proxy
An implementation for
CfnQueueProps |
Modifier and Type | Method and Description |
---|---|
static CfnQueueProps.Builder |
builder() |
default java.lang.String |
getDescription()
Optional.
|
default java.lang.String |
getName()
The name of the queue that you are creating.
|
default java.lang.String |
getPricingPlan()
When you use AWS CloudFormation , you can create only on-demand queues.
|
default java.lang.String |
getStatus()
Initial state of the queue.
|
default java.lang.Object |
getTags()
An array of key-value pairs to apply to this resource.
|
default java.lang.String getDescription()
A description of the queue that you are creating.
default java.lang.String getName()
default java.lang.String getPricingPlan()
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 ** .
default java.lang.String getStatus()
Queues can be either ACTIVE or PAUSED. If you create a paused queue, then jobs that you send to that queue won't begin.
default java.lang.Object getTags()
For more information, see Tag .
static CfnQueueProps.Builder builder()
CfnQueueProps.Builder
of CfnQueueProps