interface SingleHeaderConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnContinuousDeploymentPolicyPropsMixin.SingleHeaderConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnContinuousDeploymentPolicyPropsMixin_SingleHeaderConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnContinuousDeploymentPolicyPropsMixin.SingleHeaderConfigProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnContinuousDeploymentPolicyPropsMixin.SingleHeaderConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnContinuousDeploymentPolicyPropsMixin » SingleHeaderConfigProperty |
Determines which HTTP requests are sent to the staging distribution.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const singleHeaderConfigProperty: cloudfront_mixins.CfnContinuousDeploymentPolicyPropsMixin.SingleHeaderConfigProperty = {
header: 'header',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| header? | string | The request header name that you want CloudFront to send to your staging distribution. |
| value? | string | The request header value. |
header?
Type:
string
(optional)
The request header name that you want CloudFront to send to your staging distribution.
The header must contain the prefix aws-cf-cd- .
value?
Type:
string
(optional)
The request header value.

.NET
Go
Java
Python
TypeScript