interface SingleHeaderConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnContinuousDeploymentPolicyPropsMixin.SingleHeaderConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnContinuousDeploymentPolicyPropsMixin_SingleHeaderConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnContinuousDeploymentPolicyPropsMixin.SingleHeaderConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnContinuousDeploymentPolicyPropsMixin.SingleHeaderConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » 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 { aws_cloudfront as cloudfront } from '@aws-cdk/cfn-property-mixins';
const singleHeaderConfigProperty: cloudfront.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