OriginBindOptions

class aws_cdk.aws_cloudfront.OriginBindOptions(*, origin_id)

Bases: object

Options passed to Origin.bind().

Parameters:

origin_id (str) – The identifier of this Origin, as assigned by the Distribution this Origin has been used added to.

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_cloudfront as cloudfront

origin_bind_options = cloudfront.OriginBindOptions(
    origin_id="originId"
)

Attributes

origin_id

The identifier of this Origin, as assigned by the Distribution this Origin has been used added to.