Interface AssociateCloudMapServiceOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AssociateCloudMapServiceOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:47.006Z")
@Stability(Stable)
public interface AssociateCloudMapServiceOptions
extends software.amazon.jsii.JsiiSerializable
The options for using a cloudmap service.
Example:
Service cloudMapService; FargateService ecsService; ecsService.associateCloudMapService(AssociateCloudMapServiceOptions.builder() .service(cloudMapService) .build());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAssociateCloudMapServiceOptions
static final class
An implementation forAssociateCloudMapServiceOptions
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default ContainerDefinition
The container to point to for a SRV record.default Number
The port to point to for a SRV record.The cloudmap service to register with.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getService
The cloudmap service to register with. -
getContainer
The container to point to for a SRV record.Default: - the task definition's default container
-
getContainerPort
The port to point to for a SRV record.Default: - the default port of the task definition's default container
-
builder
-