interface EntitlementSource
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.EntitlementSource |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#EntitlementSource |
Java | software.amazon.awscdk.services.mediaconnect.alpha.EntitlementSource |
Python | aws_cdk.aws_mediaconnect_alpha.EntitlementSource |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป EntitlementSource |
Options for Entitlement.
Example
declare const stack: Stack;
// Import an entitlement from another AWS account
const entitlement = FlowEntitlement.fromFlowEntitlementArn(stack, 'ImportedEntitlement',
'arn:aws:mediaconnect:us-west-2:111122223333:entitlement:1-11111111111111111111111111111111:MyEntitlement',
);
const flow = new Flow(stack, 'MyFlow', {
source: SourceConfiguration.entitlement({
entitlement: entitlement,
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| entitlement | IFlow | The entitlement that allows you to subscribe to content that comes from another AWS account. |
| decryption? | Static | Options to decrypt incoming feed. |
entitlement
Type:
IFlow
The entitlement that allows you to subscribe to content that comes from another AWS account.
decryption?
Type:
Static
(optional, default: no decryption)
Options to decrypt incoming feed.

.NET
Go
Java
Python
TypeScript (