OriginBase
- class aws_cdk.aws_cloudfront.OriginBase(domain_name, *, origin_path=None, connection_attempts=None, connection_timeout=None, custom_headers=None, origin_shield_region=None)
Bases:
object
Represents a distribution origin, that describes the Amazon S3 bucket, HTTP server (for example, a web server), Amazon MediaStore, or other server from which CloudFront gets your files.
- Parameters:
domain_name (
str
)origin_path (
Optional
[str
]) – An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin. Must begin, but not end, with ‘/’ (e.g., ‘/production/images’). Default: ‘/’connection_attempts (
Union
[int
,float
,None
]) – The number of times that CloudFront attempts to connect to the origin; valid values are 1, 2, or 3 attempts. Default: 3connection_timeout (
Optional
[Duration
]) – The number of seconds that CloudFront waits when trying to establish a connection to the origin. Valid values are 1-10 seconds, inclusive. Default: Duration.seconds(10)custom_headers (
Optional
[Mapping
[str
,str
]]) – A list of HTTP header names and values that CloudFront adds to requests it sends to the origin. Default: {}origin_shield_region (
Optional
[str
]) – When you enable Origin Shield in the AWS Region that has the lowest latency to your origin, you can get better network performance. Default: - origin shield not enabled
Methods
- bind(_scope, *, origin_id)
Binds the origin to the associated Distribution.
Can be used to grant permissions, create dependent resources, etc.
- Parameters:
_scope (
Construct
)origin_id (
str
) – The identifier of this Origin, as assigned by the Distribution this Origin has been used added to.
- Return type: