OriginEndpointReference
- class aws_cdk.interfaces.aws_mediapackage.OriginEndpointReference(*, origin_endpoint_arn, origin_endpoint_id)
Bases:
objectA reference to a OriginEndpoint resource.
- Parameters:
origin_endpoint_arn (
str) – The ARN of the OriginEndpoint resource.origin_endpoint_id (
str) – The Id of the OriginEndpoint resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_mediapackage as interfaces_aws_mediapackage origin_endpoint_reference = interfaces_aws_mediapackage.OriginEndpointReference( origin_endpoint_arn="originEndpointArn", origin_endpoint_id="originEndpointId" )
Attributes
- origin_endpoint_arn
The ARN of the OriginEndpoint resource.
- origin_endpoint_id
The Id of the OriginEndpoint resource.