interface OriginEndpointAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.Alpha.OriginEndpointAttributes |
Go | github.com/aws/aws-cdk-go/awsmediapackagev2alpha/v2#OriginEndpointAttributes |
Java | software.amazon.awscdk.services.mediapackagev2.alpha.OriginEndpointAttributes |
Python | aws_cdk.aws_mediapackagev2_alpha.OriginEndpointAttributes |
TypeScript (source) | @aws-cdk/aws-mediapackagev2-alpha ยป OriginEndpointAttributes |
Represents an Origin Endpoint defined outside of this stack.
Example
declare const stack: Stack;
const originEndpoint = OriginEndpoint.fromOriginEndpointAttributes(stack, 'ImportedOriginEndpoint', {
channelGroupName: 'MyChannelGroup',
channelName: 'MyChannel',
originEndpointName: 'MyExampleOriginEndpoint',
});
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The name that describes the channel group. |
| channel | string | The name that describes the channel. |
| origin | string | The name that describes the origin endpoint. |
channelGroupName
Type:
string
The name that describes the channel group.
The name is the primary identifier for the channel group.
channelName
Type:
string
The name that describes the channel.
The name is the primary identifier for the channel.
originEndpointName
Type:
string
The name that describes the origin endpoint.

.NET
Go
Java
Python
TypeScript (