interface ServiceConnectTestTrafficRulesProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ECS.CfnService.ServiceConnectTestTrafficRulesProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnService_ServiceConnectTestTrafficRulesProperty |
![]() | software.amazon.awscdk.services.ecs.CfnService.ServiceConnectTestTrafficRulesProperty |
![]() | aws_cdk.aws_ecs.CfnService.ServiceConnectTestTrafficRulesProperty |
![]() | aws-cdk-lib » aws_ecs » CfnService » ServiceConnectTestTrafficRulesProperty |
The test traffic routing configuration for Amazon ECS blue/green deployments.
This configuration allows you to define rules for routing specific traffic to the new service revision during the deployment process, allowing for safe testing before full production traffic shift.
For more information, see Service Connect for Amazon ECS blue/green deployments in the Amazon Elastic Container Service Developer Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const serviceConnectTestTrafficRulesProperty: ecs.CfnService.ServiceConnectTestTrafficRulesProperty = {
header: {
name: 'name',
// the properties below are optional
value: {
exact: 'exact',
},
},
};
Properties
Name | Type | Description |
---|---|---|
header | IResolvable | Service | The HTTP header-based routing rules that determine which requests should be routed to the new service version during blue/green deployment testing. |
header
Type:
IResolvable
|
Service
The HTTP header-based routing rules that determine which requests should be routed to the new service version during blue/green deployment testing.
These rules provide fine-grained control over test traffic routing based on request headers.