interface CfnFlowEntitlementMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnFlowEntitlementMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnFlowEntitlementMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnFlowEntitlementMixinProps |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowEntitlementMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnFlowEntitlementMixinProps |
Properties for CfnFlowEntitlementPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const cfnFlowEntitlementMixinProps: mediaconnect_mixins.CfnFlowEntitlementMixinProps = {
dataTransferSubscriberFeePercent: 123,
description: 'description',
encryption: {
algorithm: 'algorithm',
constantInitializationVector: 'constantInitializationVector',
deviceId: 'deviceId',
keyType: 'keyType',
region: 'region',
resourceId: 'resourceId',
roleArn: 'roleArn',
secretArn: 'secretArn',
url: 'url',
},
entitlementStatus: 'entitlementStatus',
flowArn: 'flowArn',
name: 'name',
subscribers: ['subscribers'],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | number | The percentage of the entitlement data transfer fee that you want the subscriber to be responsible for. |
| description? | string | A description of the entitlement. |
| encryption? | IResolvable | Encryption | Encryption information. |
| entitlement | string | An indication of whether the new entitlement should be enabled or disabled as soon as it is created. |
| flow | string | The Amazon Resource Name (ARN) of the flow. |
| name? | string | The name of the entitlement. |
| subscribers? | string[] | The AWS account IDs that you want to share your content with. |
dataTransferSubscriberFeePercent?
Type:
number
(optional, default: 0)
The percentage of the entitlement data transfer fee that you want the subscriber to be responsible for.
description?
Type:
string
(optional)
A description of the entitlement.
This description appears only on the MediaConnect console and is not visible outside of the current AWS account.
encryption?
Type:
IResolvable | Encryption
(optional)
Encryption information.
entitlementStatus?
Type:
string
(optional)
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.
flowArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the flow.
name?
Type:
string
(optional)
The name of the entitlement.
This value must be unique within the current flow.
subscribers?
Type:
string[]
(optional)
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.

.NET
Go
Java
Python
TypeScript