Show / Hide Table of Contents

Class CfnFlowEntitlementProps

Properties for defining a CfnFlowEntitlement.

Inheritance
System.Object
CfnFlowEntitlementProps
Implements
ICfnFlowEntitlementProps
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.AWS.MediaConnect.dll
Syntax (csharp)
public class CfnFlowEntitlementProps : Object, ICfnFlowEntitlementProps
Syntax (vb)
Public Class CfnFlowEntitlementProps
    Inherits Object
    Implements ICfnFlowEntitlementProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-flowentitlement.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaConnect;

var cfnFlowEntitlementProps = new CfnFlowEntitlementProps {
    Description = "description",
    FlowArn = "flowArn",
    Name = "name",
    Subscribers = new [] { "subscribers" },

    // the properties below are optional
    DataTransferSubscriberFeePercent = 123,
    Encryption = new EncryptionProperty {
        Algorithm = "algorithm",
        RoleArn = "roleArn",

        // the properties below are optional
        ConstantInitializationVector = "constantInitializationVector",
        DeviceId = "deviceId",
        KeyType = "keyType",
        Region = "region",
        ResourceId = "resourceId",
        SecretArn = "secretArn",
        Url = "url"
    },
    EntitlementStatus = "entitlementStatus"
};

Synopsis

Constructors

CfnFlowEntitlementProps()

Properties

DataTransferSubscriberFeePercent

The percentage of the entitlement data transfer fee that you want the subscriber to be responsible for.

Description

A description of the entitlement.

Encryption

The type of encryption that MediaConnect will use on the output that is associated with the entitlement.

EntitlementStatus

An indication of whether the new entitlement should be enabled or disabled as soon as it is created.

FlowArn

The Amazon Resource Name (ARN) of the flow.

Name

The name of the entitlement.

Subscribers

The AWS account IDs that you want to share your content with.

Constructors

CfnFlowEntitlementProps()

public CfnFlowEntitlementProps()

Properties

DataTransferSubscriberFeePercent

The percentage of the entitlement data transfer fee that you want the subscriber to be responsible for.

public Nullable<double> DataTransferSubscriberFeePercent { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-flowentitlement.html#cfn-mediaconnect-flowentitlement-datatransfersubscriberfeepercent

Description

A description of the entitlement.

public string Description { get; set; }
Property Value

System.String

Remarks

This description appears only on the MediaConnect console and is not visible outside of the current AWS account.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-flowentitlement.html#cfn-mediaconnect-flowentitlement-description

Encryption

The type of encryption that MediaConnect will use on the output that is associated with the entitlement.

public object Encryption { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-flowentitlement.html#cfn-mediaconnect-flowentitlement-encryption

EntitlementStatus

An indication of whether the new entitlement should be enabled or disabled as soon as it is created.

public string EntitlementStatus { get; set; }
Property Value

System.String

Remarks

If you don’t specify the entitlementStatus field in your request, MediaConnect sets it to ENABLED.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-flowentitlement.html#cfn-mediaconnect-flowentitlement-entitlementstatus

FlowArn

The Amazon Resource Name (ARN) of the flow.

public string FlowArn { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-flowentitlement.html#cfn-mediaconnect-flowentitlement-flowarn

Name

The name of the entitlement.

public string Name { get; set; }
Property Value

System.String

Remarks

This value must be unique within the current flow.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-flowentitlement.html#cfn-mediaconnect-flowentitlement-name

Subscribers

The AWS account IDs that you want to share your content with.

public string[] Subscribers { get; set; }
Property Value

System.String[]

Remarks

The receiving accounts (subscribers) will be allowed to create their own flows using your content as the source.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-flowentitlement.html#cfn-mediaconnect-flowentitlement-subscribers

Implements

ICfnFlowEntitlementProps
Back to top Generated by DocFX