CfnFlowEntitlementMixinProps
- class aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowEntitlementMixinProps(*, data_transfer_subscriber_fee_percent=None, description=None, encryption=None, entitlement_status=None, flow_arn=None, name=None, subscribers=None)
Bases:
objectProperties for CfnFlowEntitlementPropsMixin.
- Parameters:
data_transfer_subscriber_fee_percent (
Union[int,float,None]) – The percentage of the entitlement data transfer fee that you want the subscriber to be responsible for. Default: - 0description (
Optional[str]) – A description of the entitlement. This description appears only on the MediaConnect console and is not visible outside of the current AWS account.encryption (
Union[IResolvable,EncryptionProperty,Dict[str,Any],None]) – Encryption information.entitlement_status (
Optional[str]) – 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.flow_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the flow.name (
Optional[str]) – The name of the entitlement. This value must be unique within the current flow.subscribers (
Optional[Sequence[str]]) – 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:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_mediaconnect import mixins as mediaconnect_mixins cfn_flow_entitlement_mixin_props = mediaconnect_mixins.CfnFlowEntitlementMixinProps( data_transfer_subscriber_fee_percent=123, description="description", encryption=mediaconnect_mixins.CfnFlowEntitlementPropsMixin.EncryptionProperty( algorithm="algorithm", constant_initialization_vector="constantInitializationVector", device_id="deviceId", key_type="keyType", region="region", resource_id="resourceId", role_arn="roleArn", secret_arn="secretArn", url="url" ), entitlement_status="entitlementStatus", flow_arn="flowArn", name="name", subscribers=["subscribers"] )
Attributes
- data_transfer_subscriber_fee_percent
The percentage of the entitlement data transfer fee that you want the subscriber to be responsible for.
- description
A description of the entitlement.
This description appears only on the MediaConnect console and is not visible outside of the current AWS account.
- encryption
Encryption information.
- entitlement_status
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.
- flow_arn
The Amazon Resource Name (ARN) of the flow.
- name
The name of the entitlement.
This value must be unique within the current flow.
- subscribers
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.