Interface CfnService.ServiceConnectClientAliasProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnService.ServiceConnectClientAliasProperty.Jsii$Proxy
- Enclosing class:
- CfnService
Each name and port mapping must be unique within the namespace.
Tasks that run in a namespace can use short names to connect to services in the namespace. Tasks can connect to services across all of the clusters in the namespace. Tasks connect through a managed proxy container that collects logs and metrics for increased visibility. Only the tasks that Amazon ECS services create are supported with Service Connect. For more information, see Service Connect 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 software.amazon.awscdk.services.ecs.*;
 ServiceConnectClientAliasProperty serviceConnectClientAliasProperty = ServiceConnectClientAliasProperty.builder()
         .port(123)
         // the properties below are optional
         .dnsName("dnsName")
         .testTrafficRules(ServiceConnectTestTrafficRulesProperty.builder()
                 .header(ServiceConnectTestTrafficRulesHeaderProperty.builder()
                         .name("name")
                         // the properties below are optional
                         .value(ServiceConnectTestTrafficRulesHeaderValueProperty.builder()
                                 .exact("exact")
                                 .build())
                         .build())
                 .build())
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.ServiceConnectClientAliasPropertystatic final classAn implementation forCfnService.ServiceConnectClientAliasProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default StringThednsNameis the name that you use in the applications of client tasks to connect to this service.getPort()The listening port number for the Service Connect proxy.default ObjectThe configuration for test traffic routing rules used during blue/green deployments with Amazon ECS Service Connect.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getPortThe listening port number for the Service Connect proxy.This port is available inside of all of the tasks within the same namespace. To avoid changing your applications in client Amazon ECS services, set this to the same port that the client application uses by default. For more information, see Service Connect in the Amazon Elastic Container Service Developer Guide . - See Also:
 
- 
getDnsNameThednsNameis the name that you use in the applications of client tasks to connect to this service.The name must be a valid DNS name but doesn't need to be fully-qualified. The name can include up to 127 characters. The name can include lowercase letters, numbers, underscores (_), hyphens (-), and periods (.). The name can't start with a hyphen. If this parameter isn't specified, the default value of discoveryName.namespaceis used. If thediscoveryNameisn't specified, the port mapping name from the task definition is used inportName.namespace.To avoid changing your applications in client Amazon ECS services, set this to the same name that the client application uses by default. For example, a few common names are database,db, or the lowercase name of a database, such asmysqlorredis. For more information, see Service Connect in the Amazon Elastic Container Service Developer Guide .- See Also:
 
- 
getTestTrafficRulesThe configuration for test traffic routing rules used during blue/green deployments with Amazon ECS Service Connect.This allows you to route a portion of traffic to the new service revision of your service for testing before shifting all production traffic. Returns union: either IResolvableorCfnService.ServiceConnectTestTrafficRulesProperty- See Also:
 
- 
builder
 
-