@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.690Z") @Stability(value=Stable) public interface DeploymentController extends software.amazon.jsii.JsiiSerializable
Example:
Cluster cluster;
ApplicationLoadBalancedFargateService loadBalancedFargateService = ApplicationLoadBalancedFargateService.Builder.create(this, "Service")
.cluster(cluster)
.memoryLimitMiB(1024)
.desiredCount(1)
.cpu(512)
.taskImageOptions(ApplicationLoadBalancedTaskImageOptions.builder()
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.build())
.deploymentController(DeploymentController.builder()
.type(DeploymentControllerType.CODE_DEPLOY)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
DeploymentController.Builder
A builder for
DeploymentController |
static class |
DeploymentController.Jsii$Proxy
An implementation for
DeploymentController |
| Modifier and Type | Method and Description |
|---|---|
static DeploymentController.Builder |
builder() |
default DeploymentControllerType |
getType()
The deployment controller type to use.
|
@Stability(value=Stable) @Nullable default DeploymentControllerType getType()
Default: DeploymentControllerType.ECS
@Stability(value=Stable) static DeploymentController.Builder builder()
DeploymentController.Builder of DeploymentControllerCopyright © 2022. All rights reserved.