@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:36.995Z") @Stability(value=Stable) public interface CfnQueueProps extends software.amazon.jsii.JsiiSerializable
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 String |
getDescription()
Optional.
|
default String |
getName()
The name of the queue that you are creating.
|
default String |
getPricingPlan()
When you use AWS CloudFormation , you can create only on-demand queues.
|
default String |
getStatus()
Initial state of the queue.
|
default Object |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @Nullable default String getDescription()
A description of the queue that you are creating.
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default 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 ** .
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) @Nullable default Object getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnQueueProps.Builder builder()
CfnQueueProps.Builder of CfnQueuePropsCopyright © 2022. All rights reserved.