interface CfnOriginEndpointPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackageV2.CfnOriginEndpointPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackagev2#CfnOriginEndpointPolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackagev2.CfnOriginEndpointPolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediapackagev2.CfnOriginEndpointPolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackagev2 » 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 { aws_mediapackagev2 as mediapackagev2 } from '@aws-cdk/cfn-property-mixins';
declare const policy: any;
const cfnOriginEndpointPolicyMixinProps: mediapackagev2.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