Interface CfnService.ServiceRegistryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.ServiceRegistryProperty.Jsii$Proxy
- Enclosing class:
CfnService
Each service may be associated with one service registry. Multiple service registries for each service are not supported.
When you add, update, or remove the service registries configuration, Amazon ECS starts a new deployment. New tasks are registered and deregistered to the updated service registry configuration.
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.*;
ServiceRegistryProperty serviceRegistryProperty = ServiceRegistryProperty.builder()
.containerName("containerName")
.containerPort(123)
.port(123)
.registryArn("registryArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.ServiceRegistryPropertystatic final classAn implementation forCfnService.ServiceRegistryProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe container name value to be used for your service discovery service.default NumberThe port value to be used for your service discovery service.default NumbergetPort()The port value used if your service discovery service specified an SRV record.default StringThe Amazon Resource Name (ARN) of the service registry.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerName
The container name value to be used for your service discovery service.It's already specified in the task definition. If the task definition that your service task specifies uses the
bridgeorhostnetwork mode, you must specify acontainerNameandcontainerPortcombination from the task definition. If the task definition that your service task specifies uses theawsvpcnetwork mode and a type SRV DNS record is used, you must specify either acontainerNameandcontainerPortcombination or aportvalue. However, you can't specify both.- See Also:
-
getContainerPort
The port value to be used for your service discovery service.It's already specified in the task definition. If the task definition your service task specifies uses the
bridgeorhostnetwork mode, you must specify acontainerNameandcontainerPortcombination from the task definition. If the task definition your service task specifies uses theawsvpcnetwork mode and a type SRV DNS record is used, you must specify either acontainerNameandcontainerPortcombination or aportvalue. However, you can't specify both.- See Also:
-
getPort
The port value used if your service discovery service specified an SRV record.This field might be used if both the
awsvpcnetwork mode and SRV records are used.- See Also:
-
getRegistryArn
The Amazon Resource Name (ARN) of the service registry.The currently supported service registry is AWS Cloud Map . For more information, see CreateService .
- See Also:
-
builder
-