interface CfnOriginEndpointPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackageV2.Mixins.CfnOriginEndpointPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackagev2/mixins#CfnOriginEndpointPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediapackagev2.mixins.CfnOriginEndpointPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_mediapackagev2.mixins.CfnOriginEndpointPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackagev2 » mixins » CfnOriginEndpointPolicyMixinProps |
Properties for CfnOriginEndpointPolicyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediapackagev2_mixins } from '@aws-cdk/mixins-preview/aws-mediapackagev2';
declare const policy: any;
const cfnOriginEndpointPolicyMixinProps: mediapackagev2_mixins.CfnOriginEndpointPolicyMixinProps = {
cdnAuthConfiguration: {
cdnIdentifierSecretArns: ['cdnIdentifierSecretArns'],
secretsRoleArn: 'secretsRoleArn',
},
channelGroupName: 'channelGroupName',
channelName: 'channelName',
originEndpointName: 'originEndpointName',
policy: policy,
};
Properties
| Name | Type | Description |
|---|---|---|
| cdn | IResolvable | Cdn | The settings to enable CDN authorization headers in MediaPackage. |
| channel | string | The name of the channel group associated with the origin endpoint policy. |
| channel | string | The channel name associated with the origin endpoint policy. |
| origin | string | The name of the origin endpoint associated with the origin endpoint policy. |
| policy? | any | The policy associated with the origin endpoint. |
cdnAuthConfiguration?
Type:
IResolvable | Cdn
(optional)
The settings to enable CDN authorization headers in MediaPackage.
channelGroupName?
Type:
string
(optional)
The name of the channel group associated with the origin endpoint policy.
channelName?
Type:
string
(optional)
The channel name associated with the origin endpoint policy.
originEndpointName?
Type:
string
(optional)
The name of the origin endpoint associated with the origin endpoint policy.
policy?
Type:
any
(optional)
The policy associated with the origin endpoint.

.NET
Go
Java
Python
TypeScript