Interface CfnService.ServiceRegistryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.ServiceRegistryProperty.Jsii$Proxy
- Enclosing class:
CfnService
ServiceRegistry
property specifies details of the service registry.
For more information, see Service Discovery 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.*; ServiceRegistryProperty serviceRegistryProperty = ServiceRegistryProperty.builder() .containerName("containerName") .containerPort(123) .port(123) .registryArn("registryArn") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnService.ServiceRegistryProperty
static final class
An implementation forCfnService.ServiceRegistryProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The container name value to be used for your service discovery service.default Number
The port value to be used for your service discovery service.default Number
getPort()
The port value used if your service discovery service specified an SRV record.default String
The 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
bridge
orhost
network mode, you must specify acontainerName
andcontainerPort
combination from the task definition. If the task definition that your service task specifies uses theawsvpc
network mode and a type SRV DNS record is used, you must specify either acontainerName
andcontainerPort
combination or aport
value. However, you can't specify both. -
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
bridge
orhost
network mode, you must specify acontainerName
andcontainerPort
combination from the task definition. If the task definition your service task specifies uses theawsvpc
network mode and a type SRV DNS record is used, you must specify either acontainerName
andcontainerPort
combination or aport
value. However, you can't specify both. -
getPort
The port value used if your service discovery service specified an SRV record.This field might be used if both the
awsvpc
network mode and SRV records are used. -
getRegistryArn
The Amazon Resource Name (ARN) of the service registry.The currently supported service registry is AWS Cloud Map . For more information, see CreateService .
-
builder
-