interface CfnPackagingGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage.CfnPackagingGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackage#CfnPackagingGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackage.CfnPackagingGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediapackage.CfnPackagingGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackage » CfnPackagingGroupMixinProps |
Properties for CfnPackagingGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackage as mediapackage } from '@aws-cdk/cfn-property-mixins';
const cfnPackagingGroupMixinProps: mediapackage.CfnPackagingGroupMixinProps = {
authorization: {
cdnIdentifierSecret: 'cdnIdentifierSecret',
secretsRoleArn: 'secretsRoleArn',
},
egressAccessLogs: {
logGroupName: 'logGroupName',
},
id: 'id',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization? | IResolvable | Authorization | Parameters for CDN authorization. |
| egress | IResolvable | Log | The configuration parameters for egress access logging. |
| id? | string | Unique identifier that you assign to the packaging group. |
| tags? | Cfn[] | The tags to assign to the packaging group. |
authorization?
Type:
IResolvable | Authorization
(optional)
Parameters for CDN authorization.
egressAccessLogs?
Type:
IResolvable | Log
(optional)
The configuration parameters for egress access logging.
id?
Type:
string
(optional)
Unique identifier that you assign to the packaging group.
tags?
Type:
Cfn[]
(optional)
The tags to assign to the packaging group.

.NET
Go
Java
Python
TypeScript