Interface CfnFlowEntitlementMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowEntitlementMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.284Z")
@Stability(Stable)
public interface CfnFlowEntitlementMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnFlowEntitlementPropsMixin.
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.mediaconnect.*;
CfnFlowEntitlementMixinProps cfnFlowEntitlementMixinProps = CfnFlowEntitlementMixinProps.builder()
.dataTransferSubscriberFeePercent(123)
.description("description")
.encryption(EncryptionProperty.builder()
.algorithm("algorithm")
.constantInitializationVector("constantInitializationVector")
.deviceId("deviceId")
.keyType("keyType")
.region("region")
.resourceId("resourceId")
.roleArn("roleArn")
.secretArn("secretArn")
.url("url")
.build())
.entitlementStatus("entitlementStatus")
.flowArn("flowArn")
.name("name")
.subscribers(List.of("subscribers"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowEntitlementMixinPropsstatic final classAn implementation forCfnFlowEntitlementMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe percentage of the entitlement data transfer fee that you want the subscriber to be responsible for.default StringA description of the entitlement.default ObjectEncryption information.default StringAn indication of whether the new entitlement should be enabled or disabled as soon as it is created.default StringThe Amazon Resource Name (ARN) of the flow.default StringgetName()The name of the entitlement.The AWS account IDs that you want to share your content with.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataTransferSubscriberFeePercent
The percentage of the entitlement data transfer fee that you want the subscriber to be responsible for.Default: - 0
- See Also:
-
getDescription
A description of the entitlement.This description appears only on the MediaConnect console and is not visible outside of the current AWS account.
- See Also:
-
getEncryption
Encryption information.Returns union: either
IResolvableorCfnFlowEntitlementPropsMixin.EncryptionProperty- See Also:
-
getEntitlementStatus
An indication of whether the new entitlement should be enabled or disabled as soon as it is created.If you don’t specify the entitlementStatus field in your request, MediaConnect sets it to ENABLED.
- See Also:
-
getFlowArn
The Amazon Resource Name (ARN) of the flow.- See Also:
-
getName
The name of the entitlement.This value must be unique within the current flow.
- See Also:
-
getSubscribers
The AWS account IDs that you want to share your content with.The receiving accounts (subscribers) will be allowed to create their own flows using your content as the source.
- See Also:
-
builder
-