Interface AssociateCloudMapServiceOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AssociateCloudMapServiceOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:50.280Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAssociateCloudMapServiceOptionsstatic final classAn implementation forAssociateCloudMapServiceOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ContainerDefinitionThe container to point to for a SRV record.default NumberThe 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
-