interface MediaLiveInputRouterOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterOutputPropsMixin.MediaLiveInputRouterOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterOutputPropsMixin_MediaLiveInputRouterOutputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterOutputPropsMixin.MediaLiveInputRouterOutputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterOutputPropsMixin.MediaLiveInputRouterOutputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterOutputPropsMixin » MediaLiveInputRouterOutputConfigurationProperty |
Configuration settings for connecting a router output to a MediaLive input.
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';
declare const automatic: any;
const mediaLiveInputRouterOutputConfigurationProperty: mediaconnect_mixins.CfnRouterOutputPropsMixin.MediaLiveInputRouterOutputConfigurationProperty = {
destinationTransitEncryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
encryptionKeyType: 'encryptionKeyType',
},
mediaLiveInputArn: 'mediaLiveInputArn',
mediaLivePipelineId: 'mediaLivePipelineId',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | IResolvable | Media | The encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive. |
| media | string | The ARN of the MediaLive input to connect to this router output. |
| media | string |
destinationTransitEncryption?
Type:
IResolvable | Media
(optional)
The encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive.
This configuration determines whether encryption keys are automatically managed by the service or manually managed through AWS Secrets Manager.
mediaLiveInputArn?
Type:
string
(optional)
The ARN of the MediaLive input to connect to this router output.
mediaLivePipelineId?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript