@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-25T18:29:10.589Z")
public interface DeploymentController
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.
|
default DeploymentControllerType getType()
Default: DeploymentControllerType.ECS
static DeploymentController.Builder builder()
DeploymentController.Builder
of DeploymentController