Class: Aws::CloudFront::Types::ContinuousDeploymentSingleHeaderConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::ContinuousDeploymentSingleHeaderConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
This configuration determines which HTTP requests are sent to the staging distribution. If the HTTP request contains a header and value that matches what you specify here, the request is sent to the staging distribution. Otherwise the request is sent to the primary distribution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#header ⇒ String
The request header name that you want CloudFront to send to your staging distribution.
-
#value ⇒ String
The request header value.
Instance Attribute Details
#header ⇒ String
The request header name that you want CloudFront to send to your staging distribution. The header must contain the prefix ‘aws-cf-cd-`.
1508 1509 1510 1511 1512 1513 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 1508 class ContinuousDeploymentSingleHeaderConfig < Struct.new( :header, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The request header value.
1508 1509 1510 1511 1512 1513 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 1508 class ContinuousDeploymentSingleHeaderConfig < Struct.new( :header, :value) SENSITIVE = [] include Aws::Structure end |