@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.757Z") @Stability(value=Stable) public interface CfnFlowEntitlementProps 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.mediaconnect.*;
CfnFlowEntitlementProps cfnFlowEntitlementProps = CfnFlowEntitlementProps.builder()
.description("description")
.flowArn("flowArn")
.name("name")
.subscribers(List.of("subscribers"))
// the properties below are optional
.dataTransferSubscriberFeePercent(123)
.encryption(EncryptionProperty.builder()
.algorithm("algorithm")
.roleArn("roleArn")
// the properties below are optional
.constantInitializationVector("constantInitializationVector")
.deviceId("deviceId")
.keyType("keyType")
.region("region")
.resourceId("resourceId")
.secretArn("secretArn")
.url("url")
.build())
.entitlementStatus("entitlementStatus")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFlowEntitlementProps.Builder
A builder for
CfnFlowEntitlementProps |
static class |
CfnFlowEntitlementProps.Jsii$Proxy
An implementation for
CfnFlowEntitlementProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnFlowEntitlementProps.Builder |
builder() |
default Number |
getDataTransferSubscriberFeePercent()
The percentage of the entitlement data transfer fee that you want the subscriber to be responsible for.
|
String |
getDescription()
A description of the entitlement.
|
default Object |
getEncryption()
The type of encryption that MediaConnect will use on the output that is associated with the entitlement.
|
default String |
getEntitlementStatus()
An indication of whether the new entitlement should be enabled or disabled as soon as it is created.
|
String |
getFlowArn()
The Amazon Resource Name (ARN) of the flow.
|
String |
getName()
The name of the entitlement.
|
List<String> |
getSubscribers()
The AWS account IDs that you want to share your content with.
|
@Stability(value=Stable) @NotNull String getDescription()
This description appears only on the MediaConnect console and is not visible outside of the current AWS account.
@Stability(value=Stable) @NotNull String getFlowArn()
@Stability(value=Stable) @NotNull String getName()
This value must be unique within the current flow.
@Stability(value=Stable) @NotNull List<String> getSubscribers()
The receiving accounts (subscribers) will be allowed to create their own flows using your content as the source.
@Stability(value=Stable) @Nullable default Number getDataTransferSubscriberFeePercent()
@Stability(value=Stable) @Nullable default Object getEncryption()
@Stability(value=Stable) @Nullable default String getEntitlementStatus()
If you don’t specify the entitlementStatus field in your request, MediaConnect sets it to ENABLED.
@Stability(value=Stable) static CfnFlowEntitlementProps.Builder builder()
CfnFlowEntitlementProps.Builder of CfnFlowEntitlementPropsCopyright © 2022. All rights reserved.