Interface ServiceRegistry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ServiceRegistry.Builder,ServiceRegistry>,SdkBuilder<ServiceRegistry.Builder,ServiceRegistry>,SdkPojo
- Enclosing class:
- ServiceRegistry
public static interface ServiceRegistry.Builder extends SdkPojo, CopyableBuilder<ServiceRegistry.Builder,ServiceRegistry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceRegistry.BuildercontainerName(String containerName)The container name value to be used for your service discovery service.ServiceRegistry.BuildercontainerPort(Integer containerPort)The port value to be used for your service discovery service.ServiceRegistry.Builderport(Integer port)The port value used if your service discovery service specified an SRV record.ServiceRegistry.BuilderregistryArn(String registryArn)The Amazon Resource Name (ARN) of the service registry.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
registryArn
ServiceRegistry.Builder registryArn(String registryArn)
The Amazon Resource Name (ARN) of the service registry. The currently supported service registry is Cloud Map. For more information, see CreateService.
- Parameters:
registryArn- The Amazon Resource Name (ARN) of the service registry. The currently supported service registry is Cloud Map. For more information, see CreateService.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
port
ServiceRegistry.Builder port(Integer port)
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.- Parameters:
port- The port value used if your service discovery service specified an SRV record. This field might be used if both theawsvpcnetwork mode and SRV records are used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerName
ServiceRegistry.Builder containerName(String containerName)
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.- Parameters:
containerName- 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 thebridgeorhostnetwork 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerPort
ServiceRegistry.Builder containerPort(Integer containerPort)
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.- Parameters:
containerPort- 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 thebridgeorhostnetwork 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-