OriginEndpointReference
- class aws_cdk.aws_mediapackage.OriginEndpointReference(*, origin_endpoint_arn, origin_endpoint_id)
Bases:
object
A 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 import aws_mediapackage as mediapackage origin_endpoint_reference = 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.