Package software.amazon.awscdk.services.ecs
Amazon ECS Construct Library
---
AWS CDK v1 has reached End-of-Support on 2023-06-01. This package is no longer being updated, and users should migrate to AWS CDK v2.
For more information on how to migrate, see the Migrating to AWS CDK v2 guide.
This package contains constructs for working with Amazon Elastic Container Service (Amazon ECS).
Amazon Elastic Container Service (Amazon ECS) is a fully managed container orchestration service.
For further information on Amazon ECS, see the Amazon ECS documentation
The following example creates an Amazon ECS cluster, adds capacity to it, and runs a service on it:
Vpc vpc;
// Create an ECS cluster
Cluster cluster = Cluster.Builder.create(this, "Cluster")
.vpc(vpc)
.build();
// Add capacity to it
cluster.addCapacity("DefaultAutoScalingGroupCapacity", AddCapacityOptions.builder()
.instanceType(new InstanceType("t2.xlarge"))
.desiredCapacity(3)
.build());
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("DefaultContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.memoryLimitMiB(512)
.build());
// Instantiate an Amazon ECS Service
Ec2Service ecsService = Ec2Service.Builder.create(this, "Service")
.cluster(cluster)
.taskDefinition(taskDefinition)
.build();
For a set of constructs defining common ECS architectural patterns, see the @aws-cdk/aws-ecs-patterns package.
Launch Types: AWS Fargate vs Amazon EC2
There are two sets of constructs in this library; one to run tasks on Amazon EC2 and one to run tasks on AWS Fargate.
- Use the
Ec2TaskDefinitionandEc2Serviceconstructs to run tasks on Amazon EC2 instances running in your account. - Use the
FargateTaskDefinitionandFargateServiceconstructs to run tasks on instances that are managed for you by AWS. - Use the
ExternalTaskDefinitionandExternalServiceconstructs to run AWS ECS Anywhere tasks on self-managed infrastructure.
Here are the main differences:
- Amazon EC2: instances are under your control. Complete control of task to host allocation. Required to specify at least a memory reservation or limit for every container. Can use Host, Bridge and AwsVpc networking modes. Can attach Classic Load Balancer. Can share volumes between container and host.
- AWS Fargate: tasks run on AWS-managed instances, AWS manages task to host allocation for you. Requires specification of memory and cpu sizes at the taskdefinition level. Only supports AwsVpc networking modes and Application/Network Load Balancers. Only the AWS log driver is supported. Many host features are not supported such as adding kernel capabilities and mounting host devices/volumes inside the container.
- AWS ECSAnywhere: tasks are run and managed by AWS ECS Anywhere on infrastructure owned by the customer. Only Bridge networking mode is supported. Does not support autoscaling, load balancing, cloudmap or attachment of volumes.
For more information on Amazon EC2 vs AWS Fargate, networking and ECS Anywhere see the AWS Documentation: AWS Fargate, Task Networking, ECS Anywhere
Clusters
A Cluster defines the infrastructure to run your
tasks on. You can run many tasks on a single cluster.
The following code creates a cluster that can run AWS Fargate tasks:
Vpc vpc;
Cluster cluster = Cluster.Builder.create(this, "Cluster")
.vpc(vpc)
.build();
The following code imports an existing cluster using the ARN which can be used to import an Amazon ECS service either EC2 or Fargate.
String clusterArn = "arn:aws:ecs:us-east-1:012345678910:cluster/clusterName"; ICluster cluster = Cluster.fromClusterArn(this, "Cluster", clusterArn);
To use tasks with Amazon EC2 launch-type, you have to add capacity to the cluster in order for tasks to be scheduled on your instances. Typically, you add an AutoScalingGroup with instances running the latest Amazon ECS-optimized AMI to the cluster. There is a method to build and add such an AutoScalingGroup automatically, or you can supply a customized AutoScalingGroup that you construct yourself. It's possible to add multiple AutoScalingGroups with various instance types.
The following example creates an Amazon ECS cluster and adds capacity to it:
Vpc vpc;
Cluster cluster = Cluster.Builder.create(this, "Cluster")
.vpc(vpc)
.build();
// Either add default capacity
cluster.addCapacity("DefaultAutoScalingGroupCapacity", AddCapacityOptions.builder()
.instanceType(new InstanceType("t2.xlarge"))
.desiredCapacity(3)
.build());
// Or add customized capacity. Be sure to start the Amazon ECS-optimized AMI.
AutoScalingGroup autoScalingGroup = AutoScalingGroup.Builder.create(this, "ASG")
.vpc(vpc)
.instanceType(new InstanceType("t2.xlarge"))
.machineImage(EcsOptimizedImage.amazonLinux())
// Or use Amazon ECS-Optimized Amazon Linux 2 AMI
// machineImage: EcsOptimizedImage.amazonLinux2(),
.desiredCapacity(3)
.build();
AsgCapacityProvider capacityProvider = AsgCapacityProvider.Builder.create(this, "AsgCapacityProvider")
.autoScalingGroup(autoScalingGroup)
.build();
cluster.addAsgCapacityProvider(capacityProvider);
If you omit the property vpc, the construct will create a new VPC with two AZs.
By default, all machine images will auto-update to the latest version on each deployment, causing a replacement of the instances in your AutoScalingGroup if the AMI has been updated since the last deployment.
If task draining is enabled, ECS will transparently reschedule tasks on to the new
instances before terminating your old instances. If you have disabled task draining,
the tasks will be terminated along with the instance. To prevent that, you
can pick a non-updating AMI by passing cacheInContext: true, but be sure
to periodically update to the latest AMI manually by using the CDK CLI
context management commands:
Vpc vpc;
AutoScalingGroup autoScalingGroup = AutoScalingGroup.Builder.create(this, "ASG")
.machineImage(EcsOptimizedImage.amazonLinux(EcsOptimizedImageOptions.builder().cachedInContext(true).build()))
.vpc(vpc)
.instanceType(new InstanceType("t2.micro"))
.build();
Bottlerocket
Bottlerocket is a Linux-based open source operating system that is purpose-built by AWS for running containers. You can launch Amazon ECS container instances with the Bottlerocket AMI.
The following example will create a capacity with self-managed Amazon EC2 capacity of 2 c5.large Linux instances running with Bottlerocket AMI.
The following example adds Bottlerocket capacity to the cluster:
Cluster cluster;
cluster.addCapacity("bottlerocket-asg", AddCapacityOptions.builder()
.minCapacity(2)
.instanceType(new InstanceType("c5.large"))
.machineImage(new BottleRocketImage())
.build());
ARM64 (Graviton) Instances
To launch instances with ARM64 hardware, you can use the Amazon ECS-optimized Amazon Linux 2 (arm64) AMI. Based on Amazon Linux 2, this AMI is recommended for use when launching your EC2 instances that are powered by Arm-based AWS Graviton Processors.
Cluster cluster;
cluster.addCapacity("graviton-cluster", AddCapacityOptions.builder()
.minCapacity(2)
.instanceType(new InstanceType("c6g.large"))
.machineImage(EcsOptimizedImage.amazonLinux2(AmiHardwareType.ARM))
.build());
Bottlerocket is also supported:
Cluster cluster;
cluster.addCapacity("graviton-cluster", AddCapacityOptions.builder()
.minCapacity(2)
.instanceType(new InstanceType("c6g.large"))
.machineImageType(MachineImageType.BOTTLEROCKET)
.build());
Spot Instances
To add spot instances into the cluster, you must specify the spotPrice in the ecs.AddCapacityOptions and optionally enable the spotInstanceDraining property.
Cluster cluster;
// Add an AutoScalingGroup with spot instances to the existing cluster
cluster.addCapacity("AsgSpot", AddCapacityOptions.builder()
.maxCapacity(2)
.minCapacity(2)
.desiredCapacity(2)
.instanceType(new InstanceType("c5.xlarge"))
.spotPrice("0.0735")
// Enable the Automated Spot Draining support for Amazon ECS
.spotInstanceDraining(true)
.build());
SNS Topic Encryption
When the ecs.AddCapacityOptions that you provide has a non-zero taskDrainTime (the default) then an SNS topic and Lambda are created to ensure that the
cluster's instances have been properly drained of tasks before terminating. The SNS Topic is sent the instance-terminating lifecycle event from the AutoScalingGroup,
and the Lambda acts on that event. If you wish to engage server-side encryption for this SNS Topic
then you may do so by providing a KMS key for the topicEncryptionKey property of ecs.AddCapacityOptions.
// Given
Cluster cluster;
Key key;
// Then, use that key to encrypt the lifecycle-event SNS Topic.
cluster.addCapacity("ASGEncryptedSNS", AddCapacityOptions.builder()
.instanceType(new InstanceType("t2.xlarge"))
.desiredCapacity(3)
.topicEncryptionKey(key)
.build());
Task definitions
A task definition describes what a single copy of a task should look like. A task definition has one or more containers; typically, it has one main container (the default container is the first one that's added to the task definition, and it is marked essential) and optionally some supporting containers which are used to support the main container, doings things like upload logs or metrics to monitoring services.
To run a task or service with Amazon EC2 launch type, use the Ec2TaskDefinition. For AWS Fargate tasks/services, use the
FargateTaskDefinition. For AWS ECS Anywhere use the ExternalTaskDefinition. These classes
provide simplified APIs that only contain properties relevant for each specific launch type.
For a FargateTaskDefinition, specify the task size (memoryLimitMiB and cpu):
FargateTaskDefinition fargateTaskDefinition = FargateTaskDefinition.Builder.create(this, "TaskDef")
.memoryLimitMiB(512)
.cpu(256)
.build();
On Fargate Platform Version 1.4.0 or later, you may specify up to 200GiB of ephemeral storage:
FargateTaskDefinition fargateTaskDefinition = FargateTaskDefinition.Builder.create(this, "TaskDef")
.memoryLimitMiB(512)
.cpu(256)
.ephemeralStorageGiB(100)
.build();
To add containers to a task definition, call addContainer():
FargateTaskDefinition fargateTaskDefinition = FargateTaskDefinition.Builder.create(this, "TaskDef")
.memoryLimitMiB(512)
.cpu(256)
.build();
ContainerDefinition container = fargateTaskDefinition.addContainer("WebContainer", ContainerDefinitionOptions.builder()
// Use an image from DockerHub
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.build());
For a Ec2TaskDefinition:
Ec2TaskDefinition ec2TaskDefinition = Ec2TaskDefinition.Builder.create(this, "TaskDef")
.networkMode(NetworkMode.BRIDGE)
.build();
ContainerDefinition container = ec2TaskDefinition.addContainer("WebContainer", ContainerDefinitionOptions.builder()
// Use an image from DockerHub
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.memoryLimitMiB(1024)
.build());
For an ExternalTaskDefinition:
ExternalTaskDefinition externalTaskDefinition = new ExternalTaskDefinition(this, "TaskDef");
ContainerDefinition container = externalTaskDefinition.addContainer("WebContainer", ContainerDefinitionOptions.builder()
// Use an image from DockerHub
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.memoryLimitMiB(1024)
.build());
You can specify container properties when you add them to the task definition, or with various methods, e.g.:
To add a port mapping when adding a container to the task definition, specify the portMappings option:
TaskDefinition taskDefinition;
taskDefinition.addContainer("WebContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.memoryLimitMiB(1024)
.portMappings(List.of(PortMapping.builder().containerPort(3000).build()))
.build());
To add port mappings directly to a container definition, call addPortMappings():
ContainerDefinition container;
container.addPortMappings(PortMapping.builder()
.containerPort(3000)
.build());
To add data volumes to a task definition, call addVolume():
FargateTaskDefinition fargateTaskDefinition = FargateTaskDefinition.Builder.create(this, "TaskDef")
.memoryLimitMiB(512)
.cpu(256)
.build();
Map<String, Object> volume = Map.of(
// Use an Elastic FileSystem
"name", "mydatavolume",
"efsVolumeConfiguration", Map.of(
"fileSystemId", "EFS"));
void container = fargateTaskDefinition.addVolume(volume);
Note: ECS Anywhere doesn't support volume attachments in the task definition.
To use a TaskDefinition that can be used with either Amazon EC2 or
AWS Fargate launch types, use the TaskDefinition construct.
When creating a task definition you have to specify what kind of tasks you intend to run: Amazon EC2, AWS Fargate, or both. The following example uses both:
TaskDefinition taskDefinition = TaskDefinition.Builder.create(this, "TaskDef")
.memoryMiB("512")
.cpu("256")
.networkMode(NetworkMode.AWS_VPC)
.compatibility(Compatibility.EC2_AND_FARGATE)
.build();
Images
Images supply the software that runs inside the container. Images can be obtained from either DockerHub or from ECR repositories, built directly from a local Dockerfile, or use an existing tarball.
ecs.ContainerImage.fromRegistry(imageName): use a public image.ecs.ContainerImage.fromRegistry(imageName, { credentials: mySecret }): use a private image that requires credentials.ecs.ContainerImage.fromEcrRepository(repo, tagOrDigest): use the given ECR repository as the image to start. If no tag or digest is provided, "latest" is assumed.ecs.ContainerImage.fromAsset('./image'): build and upload an image directly from aDockerfilein your source directory.ecs.ContainerImage.fromDockerImageAsset(asset): uses an existing@aws-cdk/aws-ecr-assets.DockerImageAssetas a container image.ecs.ContainerImage.fromTarball(file): use an existing tarball.new ecs.TagParameterContainerImage(repository): use the given ECR repository as the image but a CloudFormation parameter as the tag.
Environment variables
To pass environment variables to the container, you can use the environment, environmentFiles, and secrets props.
Secret secret;
Secret dbSecret;
StringParameter parameter;
TaskDefinition taskDefinition;
Bucket s3Bucket;
ContainerDefinition newContainer = taskDefinition.addContainer("container", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.memoryLimitMiB(1024)
.environment(Map.of( // clear text, not for sensitive data
"STAGE", "prod"))
.environmentFiles(List.of(EnvironmentFile.fromAsset("./demo-env-file.env"), EnvironmentFile.fromBucket(s3Bucket, "assets/demo-env-file.env")))
.secrets(Map.of( // Retrieved from AWS Secrets Manager or AWS Systems Manager Parameter Store at container start-up.
"SECRET", Secret.fromSecretsManager(secret),
"DB_PASSWORD", Secret.fromSecretsManager(dbSecret, "password"), // Reference a specific JSON field, (requires platform version 1.4.0 or later for Fargate tasks)
"API_KEY", Secret.fromSecretsManagerVersion(secret, SecretVersionInfo.builder().versionId("12345").build(), "apiKey"), // Reference a specific version of the secret by its version id or version stage (requires platform version 1.4.0 or later for Fargate tasks)
"PARAMETER", Secret.fromSsmParameter(parameter)))
.build());
newContainer.addEnvironment("QUEUE_NAME", "MyQueue");
The task execution role is automatically granted read permissions on the secrets/parameters. Support for environment files is restricted to the EC2 launch type for files hosted on S3. Further details provided in the AWS documentation about specifying environment variables.
System controls
To set system controls (kernel parameters) on the container, use the systemControls prop:
TaskDefinition taskDefinition;
taskDefinition.addContainer("container", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.memoryLimitMiB(1024)
.systemControls(List.of(SystemControl.builder()
.namespace("net")
.value("ipv4.tcp_tw_recycle")
.build()))
.build());
Using Windows containers on Fargate
AWS Fargate supports Amazon ECS Windows containers. For more details, please see this blog post
// Create a Task Definition for the Windows container to start
FargateTaskDefinition taskDefinition = FargateTaskDefinition.Builder.create(this, "TaskDef")
.runtimePlatform(RuntimePlatform.builder()
.operatingSystemFamily(OperatingSystemFamily.WINDOWS_SERVER_2019_CORE)
.cpuArchitecture(CpuArchitecture.X86_64)
.build())
.cpu(1024)
.memoryLimitMiB(2048)
.build();
taskDefinition.addContainer("windowsservercore", ContainerDefinitionOptions.builder()
.logging(LogDriver.awsLogs(AwsLogDriverProps.builder().streamPrefix("win-iis-on-fargate").build()))
.portMappings(List.of(PortMapping.builder().containerPort(80).build()))
.image(ContainerImage.fromRegistry("mcr.microsoft.com/windows/servercore/iis:windowsservercore-ltsc2019"))
.build());
Using Graviton2 with Fargate
AWS Graviton2 supports AWS Fargate. For more details, please see this blog post
// Create a Task Definition for running container on Graviton Runtime.
FargateTaskDefinition taskDefinition = FargateTaskDefinition.Builder.create(this, "TaskDef")
.runtimePlatform(RuntimePlatform.builder()
.operatingSystemFamily(OperatingSystemFamily.LINUX)
.cpuArchitecture(CpuArchitecture.ARM64)
.build())
.cpu(1024)
.memoryLimitMiB(2048)
.build();
taskDefinition.addContainer("webarm64", ContainerDefinitionOptions.builder()
.logging(LogDriver.awsLogs(AwsLogDriverProps.builder().streamPrefix("graviton2-on-fargate").build()))
.portMappings(List.of(PortMapping.builder().containerPort(80).build()))
.image(ContainerImage.fromRegistry("public.ecr.aws/nginx/nginx:latest-arm64v8"))
.build());
Service
A Service instantiates a TaskDefinition on a Cluster a given number of
times, optionally associating them with a load balancer.
If a task fails,
Amazon ECS automatically restarts the task.
Cluster cluster;
TaskDefinition taskDefinition;
FargateService service = FargateService.Builder.create(this, "Service")
.cluster(cluster)
.taskDefinition(taskDefinition)
.desiredCount(5)
.build();
ECS Anywhere service definition looks like:
Cluster cluster;
TaskDefinition taskDefinition;
ExternalService service = ExternalService.Builder.create(this, "Service")
.cluster(cluster)
.taskDefinition(taskDefinition)
.desiredCount(5)
.build();
Services by default will create a security group if not provided.
If you'd like to specify which security groups to use you can override the securityGroups property.
Deployment circuit breaker and rollback
Amazon ECS deployment circuit breaker
automatically rolls back unhealthy service deployments without the need for manual intervention. Use circuitBreaker to enable
deployment circuit breaker and optionally enable rollback for automatic rollback. See Using the deployment circuit breaker
for more details.
Cluster cluster;
TaskDefinition taskDefinition;
FargateService service = FargateService.Builder.create(this, "Service")
.cluster(cluster)
.taskDefinition(taskDefinition)
.circuitBreaker(DeploymentCircuitBreaker.builder().rollback(true).build())
.build();
Note: ECS Anywhere doesn't support deployment circuit breakers and rollback.
Include an application/network load balancer
Services are load balancing targets and can be added to a target group, which will be attached to an application/network load balancers:
Vpc vpc;
Cluster cluster;
TaskDefinition taskDefinition;
FargateService service = FargateService.Builder.create(this, "Service").cluster(cluster).taskDefinition(taskDefinition).build();
ApplicationLoadBalancer lb = ApplicationLoadBalancer.Builder.create(this, "LB").vpc(vpc).internetFacing(true).build();
ApplicationListener listener = lb.addListener("Listener", BaseApplicationListenerProps.builder().port(80).build());
ApplicationTargetGroup targetGroup1 = listener.addTargets("ECS1", AddApplicationTargetsProps.builder()
.port(80)
.targets(List.of(service))
.build());
ApplicationTargetGroup targetGroup2 = listener.addTargets("ECS2", AddApplicationTargetsProps.builder()
.port(80)
.targets(List.of(service.loadBalancerTarget(LoadBalancerTargetOptions.builder()
.containerName("MyContainer")
.containerPort(8080)
.build())))
.build());
Note: ECS Anywhere doesn't support application/network load balancers.
Note that in the example above, the default service only allows you to register the first essential container or the first mapped port on the container as a target and add it to a new target group. To have more control over which container and port to register as targets, you can use service.loadBalancerTarget() to return a load balancing target for a specific container and port.
Alternatively, you can also create all load balancer targets to be registered in this service, add them to target groups, and attach target groups to listeners accordingly.
Cluster cluster;
TaskDefinition taskDefinition;
Vpc vpc;
FargateService service = FargateService.Builder.create(this, "Service").cluster(cluster).taskDefinition(taskDefinition).build();
ApplicationLoadBalancer lb = ApplicationLoadBalancer.Builder.create(this, "LB").vpc(vpc).internetFacing(true).build();
ApplicationListener listener = lb.addListener("Listener", BaseApplicationListenerProps.builder().port(80).build());
service.registerLoadBalancerTargets(EcsTarget.builder()
.containerName("web")
.containerPort(80)
.newTargetGroupId("ECS")
.listener(ListenerConfig.applicationListener(listener, AddApplicationTargetsProps.builder()
.protocol(ApplicationProtocol.HTTPS)
.build()))
.build());
Using a Load Balancer from a different Stack
If you want to put your Load Balancer and the Service it is load balancing to in
different stacks, you may not be able to use the convenience methods
loadBalancer.addListener() and listener.addTargets().
The reason is that these methods will create resources in the same Stack as the
object they're called on, which may lead to cyclic references between stacks.
Instead, you will have to create an ApplicationListener in the service stack,
or an empty TargetGroup in the load balancer stack that you attach your
service to.
See the ecs/cross-stack-load-balancer example for the alternatives.
Include a classic load balancer
Services can also be directly attached to a classic load balancer as targets:
Cluster cluster; TaskDefinition taskDefinition; Vpc vpc; Ec2Service service = Ec2Service.Builder.create(this, "Service").cluster(cluster).taskDefinition(taskDefinition).build(); LoadBalancer lb = LoadBalancer.Builder.create(this, "LB").vpc(vpc).build(); lb.addListener(LoadBalancerListener.builder().externalPort(80).build()); lb.addTarget(service);
Similarly, if you want to have more control over load balancer targeting:
Cluster cluster;
TaskDefinition taskDefinition;
Vpc vpc;
Ec2Service service = Ec2Service.Builder.create(this, "Service").cluster(cluster).taskDefinition(taskDefinition).build();
LoadBalancer lb = LoadBalancer.Builder.create(this, "LB").vpc(vpc).build();
lb.addListener(LoadBalancerListener.builder().externalPort(80).build());
lb.addTarget(service.loadBalancerTarget(LoadBalancerTargetOptions.builder()
.containerName("MyContainer")
.containerPort(80)
.build()));
There are two higher-level constructs available which include a load balancer for you that can be found in the aws-ecs-patterns module:
LoadBalancedFargateServiceLoadBalancedEc2Service
Task Auto-Scaling
You can configure the task count of a service to match demand. Task auto-scaling is
configured by calling autoScaleTaskCount():
ApplicationTargetGroup target;
BaseService service;
ScalableTaskCount scaling = service.autoScaleTaskCount(EnableScalingProps.builder().maxCapacity(10).build());
scaling.scaleOnCpuUtilization("CpuScaling", CpuUtilizationScalingProps.builder()
.targetUtilizationPercent(50)
.build());
scaling.scaleOnRequestCount("RequestScaling", RequestCountScalingProps.builder()
.requestsPerTarget(10000)
.targetGroup(target)
.build());
Task auto-scaling is powered by Application Auto-Scaling. See that section for details.
Integration with CloudWatch Events
To start an Amazon ECS task on an Amazon EC2-backed Cluster, instantiate an
@aws-cdk/aws-events-targets.EcsTask instead of an Ec2Service:
Cluster cluster;
// Create a Task Definition for the container to start
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromAsset(resolve(__dirname, "..", "eventhandler-image")))
.memoryLimitMiB(256)
.logging(AwsLogDriver.Builder.create().streamPrefix("EventDemo").mode(AwsLogDriverMode.NON_BLOCKING).build())
.build());
// An Rule that describes the event trigger (in this case a scheduled run)
Rule rule = Rule.Builder.create(this, "Rule")
.schedule(Schedule.expression("rate(1 min)"))
.build();
// Pass an environment variable to the container 'TheContainer' in the task
rule.addTarget(EcsTask.Builder.create()
.cluster(cluster)
.taskDefinition(taskDefinition)
.taskCount(1)
.containerOverrides(List.of(ContainerOverride.builder()
.containerName("TheContainer")
.environment(List.of(TaskEnvironmentVariable.builder()
.name("I_WAS_TRIGGERED")
.value("From CloudWatch Events")
.build()))
.build()))
.build());
Log Drivers
Currently Supported Log Drivers:
- awslogs
- fluentd
- gelf
- journald
- json-file
- splunk
- syslog
- awsfirelens
- Generic
awslogs Log Driver
// Create a Task Definition for the container to start
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("example-image"))
.memoryLimitMiB(256)
.logging(LogDrivers.awsLogs(AwsLogDriverProps.builder().streamPrefix("EventDemo").build()))
.build());
fluentd Log Driver
// Create a Task Definition for the container to start
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("example-image"))
.memoryLimitMiB(256)
.logging(LogDrivers.fluentd())
.build());
gelf Log Driver
// Create a Task Definition for the container to start
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("example-image"))
.memoryLimitMiB(256)
.logging(LogDrivers.gelf(GelfLogDriverProps.builder().address("my-gelf-address").build()))
.build());
journald Log Driver
// Create a Task Definition for the container to start
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("example-image"))
.memoryLimitMiB(256)
.logging(LogDrivers.journald())
.build());
json-file Log Driver
// Create a Task Definition for the container to start
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("example-image"))
.memoryLimitMiB(256)
.logging(LogDrivers.jsonFile())
.build());
splunk Log Driver
// Create a Task Definition for the container to start
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("example-image"))
.memoryLimitMiB(256)
.logging(LogDrivers.splunk(SplunkLogDriverProps.builder()
.token(SecretValue.secretsManager("my-splunk-token"))
.url("my-splunk-url")
.build()))
.build());
syslog Log Driver
// Create a Task Definition for the container to start
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("example-image"))
.memoryLimitMiB(256)
.logging(LogDrivers.syslog())
.build());
firelens Log Driver
// Create a Task Definition for the container to start
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("example-image"))
.memoryLimitMiB(256)
.logging(LogDrivers.firelens(FireLensLogDriverProps.builder()
.options(Map.of(
"Name", "firehose",
"region", "us-west-2",
"delivery_stream", "my-stream"))
.build()))
.build());
To pass secrets to the log configuration, use the secretOptions property of the log configuration. The task execution role is automatically granted read permissions on the secrets/parameters.
Secret secret;
StringParameter parameter;
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("example-image"))
.memoryLimitMiB(256)
.logging(LogDrivers.firelens(FireLensLogDriverProps.builder()
.options(Map.of())
.secretOptions(Map.of( // Retrieved from AWS Secrets Manager or AWS Systems Manager Parameter Store
"apikey", Secret.fromSecretsManager(secret),
"host", Secret.fromSsmParameter(parameter)))
.build()))
.build());
Generic Log Driver
A generic log driver object exists to provide a lower level abstraction of the log driver configuration.
// Create a Task Definition for the container to start
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("TheContainer", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("example-image"))
.memoryLimitMiB(256)
.logging(GenericLogDriver.Builder.create()
.logDriver("fluentd")
.options(Map.of(
"tag", "example-tag"))
.build())
.build());
CloudMap Service Discovery
To register your ECS service with a CloudMap Service Registry, you may add the
cloudMapOptions property to your service:
TaskDefinition taskDefinition;
Cluster cluster;
Ec2Service service = Ec2Service.Builder.create(this, "Service")
.cluster(cluster)
.taskDefinition(taskDefinition)
.cloudMapOptions(CloudMapOptions.builder()
// Create A records - useful for AWSVPC network mode.
.dnsRecordType(DnsRecordType.A)
.build())
.build();
With bridge or host network modes, only SRV DNS record types are supported.
By default, SRV DNS record types will target the default container and default
port. However, you may target a different container and port on the same ECS task:
TaskDefinition taskDefinition;
Cluster cluster;
// Add a container to the task definition
ContainerDefinition specificContainer = taskDefinition.addContainer("Container", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("/aws/aws-example-app"))
.memoryLimitMiB(2048)
.build());
// Add a port mapping
specificContainer.addPortMappings(PortMapping.builder()
.containerPort(7600)
.protocol(Protocol.TCP)
.build());
Ec2Service.Builder.create(this, "Service")
.cluster(cluster)
.taskDefinition(taskDefinition)
.cloudMapOptions(CloudMapOptions.builder()
// Create SRV records - useful for bridge networking
.dnsRecordType(DnsRecordType.SRV)
// Targets port TCP port 7600 `specificContainer`
.container(specificContainer)
.containerPort(7600)
.build())
.build();
Associate With a Specific CloudMap Service
You may associate an ECS service with a specific CloudMap service. To do
this, use the service's associateCloudMapService method:
Service cloudMapService;
FargateService ecsService;
ecsService.associateCloudMapService(AssociateCloudMapServiceOptions.builder()
.service(cloudMapService)
.build());
Capacity Providers
There are two major families of Capacity Providers: AWS Fargate (including Fargate Spot) and EC2 Auto Scaling Group Capacity Providers. Both are supported.
Fargate Capacity Providers
To enable Fargate capacity providers, you can either set
enableFargateCapacityProviders to true when creating your cluster, or by
invoking the enableFargateCapacityProviders() method after creating your
cluster. This will add both FARGATE and FARGATE_SPOT as available capacity
providers on your cluster.
Vpc vpc;
Cluster cluster = Cluster.Builder.create(this, "FargateCPCluster")
.vpc(vpc)
.enableFargateCapacityProviders(true)
.build();
FargateTaskDefinition taskDefinition = new FargateTaskDefinition(this, "TaskDef");
taskDefinition.addContainer("web", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.build());
FargateService.Builder.create(this, "FargateService")
.cluster(cluster)
.taskDefinition(taskDefinition)
.capacityProviderStrategies(List.of(CapacityProviderStrategy.builder()
.capacityProvider("FARGATE_SPOT")
.weight(2)
.build(), CapacityProviderStrategy.builder()
.capacityProvider("FARGATE")
.weight(1)
.build()))
.build();
Auto Scaling Group Capacity Providers
To add an Auto Scaling Group Capacity Provider, first create an EC2 Auto Scaling
Group. Then, create an AsgCapacityProvider and pass the Auto Scaling Group to
it in the constructor. Then add the Capacity Provider to the cluster. Finally,
you can refer to the Provider by its name in your service's or task's Capacity
Provider strategy.
By default, an Auto Scaling Group Capacity Provider will manage the Auto Scaling
Group's size for you. It will also enable managed termination protection, in
order to prevent EC2 Auto Scaling from terminating EC2 instances that have tasks
running on them. If you want to disable this behavior, set both
enableManagedScaling to and enableManagedTerminationProtection to false.
Vpc vpc;
Cluster cluster = Cluster.Builder.create(this, "Cluster")
.vpc(vpc)
.build();
AutoScalingGroup autoScalingGroup = AutoScalingGroup.Builder.create(this, "ASG")
.vpc(vpc)
.instanceType(new InstanceType("t2.micro"))
.machineImage(EcsOptimizedImage.amazonLinux2())
.minCapacity(0)
.maxCapacity(100)
.build();
AsgCapacityProvider capacityProvider = AsgCapacityProvider.Builder.create(this, "AsgCapacityProvider")
.autoScalingGroup(autoScalingGroup)
.build();
cluster.addAsgCapacityProvider(capacityProvider);
Ec2TaskDefinition taskDefinition = new Ec2TaskDefinition(this, "TaskDef");
taskDefinition.addContainer("web", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.memoryReservationMiB(256)
.build());
Ec2Service.Builder.create(this, "EC2Service")
.cluster(cluster)
.taskDefinition(taskDefinition)
.capacityProviderStrategies(List.of(CapacityProviderStrategy.builder()
.capacityProvider(capacityProvider.getCapacityProviderName())
.weight(1)
.build()))
.build();
Elastic Inference Accelerators
Currently, this feature is only supported for services with EC2 launch types.
To add elastic inference accelerators to your EC2 instance, first add
inferenceAccelerators field to the Ec2TaskDefinition and set the deviceName
and deviceType properties.
Map<String, String>[] inferenceAccelerators = List.of(Map.of(
"deviceName", "device1",
"deviceType", "eia2.medium"));
Ec2TaskDefinition taskDefinition = Ec2TaskDefinition.Builder.create(this, "Ec2TaskDef")
.inferenceAccelerators(inferenceAccelerators)
.build();
To enable using the inference accelerators in the containers, add inferenceAcceleratorResources
field and set it to a list of device names used for the inference accelerators. Each value in the
list should match a DeviceName for an InferenceAccelerator specified in the task definition.
TaskDefinition taskDefinition;
String[] inferenceAcceleratorResources = List.of("device1");
taskDefinition.addContainer("cont", ContainerDefinitionOptions.builder()
.image(ContainerImage.fromRegistry("test"))
.memoryLimitMiB(1024)
.inferenceAcceleratorResources(inferenceAcceleratorResources)
.build());
ECS Exec command
Please note, ECS Exec leverages AWS Systems Manager (SSM). So as a prerequisite for the exec command to work, you need to have the SSM plugin for the AWS CLI installed locally. For more information, see Install Session Manager plugin for AWS CLI.
To enable the ECS Exec feature for your containers, set the boolean flag enableExecuteCommand to true in
your Ec2Service or FargateService.
Cluster cluster;
TaskDefinition taskDefinition;
Ec2Service service = Ec2Service.Builder.create(this, "Service")
.cluster(cluster)
.taskDefinition(taskDefinition)
.enableExecuteCommand(true)
.build();
Enabling logging
You can enable sending logs of your execute session commands to a CloudWatch log group or S3 bucket by configuring
the executeCommandConfiguration property for your cluster. The default configuration will send the
logs to the CloudWatch Logs using the awslogs log driver that is configured in your task definition. Please note,
when using your own logConfiguration the log group or S3 Bucket specified must already be created.
To encrypt data using your own KMS Customer Key (CMK), you must create a CMK and provide the key in the kmsKey field
of the executeCommandConfiguration. To use this key for encrypting CloudWatch log data or S3 bucket, make sure to associate the key
to these resources on creation.
Vpc vpc;
Key kmsKey = new Key(this, "KmsKey");
// Pass the KMS key in the `encryptionKey` field to associate the key to the log group
LogGroup logGroup = LogGroup.Builder.create(this, "LogGroup")
.encryptionKey(kmsKey)
.build();
// Pass the KMS key in the `encryptionKey` field to associate the key to the S3 bucket
Bucket execBucket = Bucket.Builder.create(this, "EcsExecBucket")
.encryptionKey(kmsKey)
.build();
Cluster cluster = Cluster.Builder.create(this, "Cluster")
.vpc(vpc)
.executeCommandConfiguration(ExecuteCommandConfiguration.builder()
.kmsKey(kmsKey)
.logConfiguration(ExecuteCommandLogConfiguration.builder()
.cloudWatchLogGroup(logGroup)
.cloudWatchEncryptionEnabled(true)
.s3Bucket(execBucket)
.s3EncryptionEnabled(true)
.s3KeyPrefix("exec-command-output")
.build())
.logging(ExecuteCommandLogging.OVERRIDE)
.build())
.build();
Deprecated: AWS CDK v1 has reached End-of-Support on 2023-06-01.
This package is no longer being updated, and users should migrate to AWS CDK v2.
For more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html-
ClassDescriptionThe properties for adding an AutoScalingGroup.A builder for
AddAutoScalingGroupCapacityOptionsAn implementation forAddAutoScalingGroupCapacityOptionsThe properties for adding instance capacity to an AutoScalingGroup.A builder forAddCapacityOptionsAn implementation forAddCapacityOptionsThe ECS-optimized AMI variant to use.The class for App Mesh proxy configurations.A fluent builder forAppMeshProxyConfiguration.The configuration to use when setting an App Mesh proxy configuration.A builder forAppMeshProxyConfigurationConfigPropsAn implementation forAppMeshProxyConfigurationConfigPropsInterface for setting the properties of proxy configuration.A builder forAppMeshProxyConfigurationPropsAn implementation forAppMeshProxyConfigurationPropsAn Auto Scaling Group Capacity Provider.A fluent builder forAsgCapacityProvider.The options for creating an Auto Scaling Group Capacity Provider.A builder forAsgCapacityProviderPropsAn implementation forAsgCapacityProviderPropsEnvironment file from a local directory.An image that will be built from a local directory with a Dockerfile.A fluent builder forAssetImage.The properties for building an AssetImage.A builder forAssetImagePropsAn implementation forAssetImagePropsThe options for using a cloudmap service.A builder forAssociateCloudMapServiceOptionsAn implementation forAssociateCloudMapServiceOptionsThe authorization configuration details for the Amazon EFS file system.A builder forAuthorizationConfigAn implementation forAuthorizationConfigA log driver that sends log information to CloudWatch Logs.A fluent builder forAwsLogDriver.awslogs provides two modes for delivering messages from the container to the log driver.Specifies the awslogs log driver configuration options.A builder forAwsLogDriverPropsAn implementation forAwsLogDriverPropsExample:A builder forBaseLogDriverPropsAn implementation forBaseLogDriverPropsThe base class for Ec2Service and FargateService services.The properties for the base Ec2Service or FargateService service.A builder forBaseServiceOptionsAn implementation forBaseServiceOptionsComplete base service properties that are required to be supplied by the implementation of the BaseService class.A builder forBaseServicePropsAn implementation forBaseServicePropsInstance resource used for bin packing.Amazon ECS variant.Construct an Bottlerocket image from the latest AMI published in SSM.A fluent builder forBottleRocketImage.Properties for BottleRocketImage.A builder forBottleRocketImagePropsAn implementation forBottleRocketImagePropsThe built-in container instance attributes.A Linux capability.A Capacity Provider strategy to use for the service.A builder forCapacityProviderStrategyAn implementation forCapacityProviderStrategyA CloudFormationAWS::ECS::CapacityProvider.The details of the Auto Scaling group for the capacity provider.A builder forCfnCapacityProvider.AutoScalingGroupProviderPropertyAn implementation forCfnCapacityProvider.AutoScalingGroupProviderPropertyA fluent builder forCfnCapacityProvider.The managed scaling settings for the Auto Scaling group capacity provider.A builder forCfnCapacityProvider.ManagedScalingPropertyAn implementation forCfnCapacityProvider.ManagedScalingPropertyProperties for defining aCfnCapacityProvider.A builder forCfnCapacityProviderPropsAn implementation forCfnCapacityProviderPropsA CloudFormationAWS::ECS::Cluster.A fluent builder forCfnCluster.TheCapacityProviderStrategyItemproperty specifies the details of the default capacity provider strategy for the cluster.A builder forCfnCluster.CapacityProviderStrategyItemPropertyAn implementation forCfnCluster.CapacityProviderStrategyItemPropertyThe execute command configuration for the cluster.A builder forCfnCluster.ClusterConfigurationPropertyAn implementation forCfnCluster.ClusterConfigurationPropertyThe settings to use when creating a cluster.A builder forCfnCluster.ClusterSettingsPropertyAn implementation forCfnCluster.ClusterSettingsPropertyThe details of the execute command configuration.A builder forCfnCluster.ExecuteCommandConfigurationPropertyAn implementation forCfnCluster.ExecuteCommandConfigurationPropertyThe log configuration for the results of the execute command actions.A builder forCfnCluster.ExecuteCommandLogConfigurationPropertyAn implementation forCfnCluster.ExecuteCommandLogConfigurationPropertyUse this parameter to set a default Service Connect namespace.A builder forCfnCluster.ServiceConnectDefaultsPropertyAn implementation forCfnCluster.ServiceConnectDefaultsPropertyA CloudFormationAWS::ECS::ClusterCapacityProviderAssociations.A fluent builder forCfnClusterCapacityProviderAssociations.TheCapacityProviderStrategyproperty specifies the details of the default capacity provider strategy for the cluster.An implementation forCfnClusterCapacityProviderAssociations.CapacityProviderStrategyPropertyProperties for defining aCfnClusterCapacityProviderAssociations.A builder forCfnClusterCapacityProviderAssociationsPropsAn implementation forCfnClusterCapacityProviderAssociationsPropsProperties for defining aCfnCluster.A builder forCfnClusterPropsAn implementation forCfnClusterPropsA CloudFormationAWS::ECS::PrimaryTaskSet.A fluent builder forCfnPrimaryTaskSet.Properties for defining aCfnPrimaryTaskSet.A builder forCfnPrimaryTaskSetPropsAn implementation forCfnPrimaryTaskSetPropsA CloudFormationAWS::ECS::Service.An object representing the networking details for a task or service.A builder forCfnService.AwsVpcConfigurationPropertyAn implementation forCfnService.AwsVpcConfigurationPropertyA fluent builder forCfnService.The details of a capacity provider strategy.A builder forCfnService.CapacityProviderStrategyItemPropertyAn implementation forCfnService.CapacityProviderStrategyItemPropertyOne of the methods which provide a way for you to quickly identify when a deployment has failed, and then to optionally roll back the failure to the last working deployment.A builder forCfnService.DeploymentAlarmsPropertyAn implementation forCfnService.DeploymentAlarmsPropertyA builder forCfnService.DeploymentCircuitBreakerPropertyAn implementation forCfnService.DeploymentCircuitBreakerPropertyTheDeploymentConfigurationproperty specifies optional deployment parameters that control how many tasks run during the deployment and the ordering of stopping and starting tasks.A builder forCfnService.DeploymentConfigurationPropertyAn implementation forCfnService.DeploymentConfigurationPropertyThe deployment controller to use for the service.A builder forCfnService.DeploymentControllerPropertyAn implementation forCfnService.DeploymentControllerPropertyTheLoadBalancerproperty specifies details on a load balancer that is used with a service.A builder forCfnService.LoadBalancerPropertyAn implementation forCfnService.LoadBalancerPropertyThe log configuration for the container.A builder forCfnService.LogConfigurationPropertyAn implementation forCfnService.LogConfigurationPropertyTheNetworkConfigurationproperty specifies an object representing the network configuration for a task or service.A builder forCfnService.NetworkConfigurationPropertyAn implementation forCfnService.NetworkConfigurationPropertyThePlacementConstraintproperty specifies an object representing a constraint on task placement in the task definition.A builder forCfnService.PlacementConstraintPropertyAn implementation forCfnService.PlacementConstraintPropertyThePlacementStrategyproperty specifies the task placement strategy for a task or service.A builder forCfnService.PlacementStrategyPropertyAn implementation forCfnService.PlacementStrategyPropertyAn object representing the secret to expose to your container.A builder forCfnService.SecretPropertyAn implementation forCfnService.SecretPropertyEach alias ("endpoint") is a fully-qualified name and port number that other tasks ("clients") can use to connect to this service.A builder forCfnService.ServiceConnectClientAliasPropertyAn implementation forCfnService.ServiceConnectClientAliasPropertyThe Service Connect configuration of your Amazon ECS service.A builder forCfnService.ServiceConnectConfigurationPropertyAn implementation forCfnService.ServiceConnectConfigurationPropertyThe Service Connect service object configuration.A builder forCfnService.ServiceConnectServicePropertyAn implementation forCfnService.ServiceConnectServicePropertyTheServiceRegistryproperty specifies details of the service registry.A builder forCfnService.ServiceRegistryPropertyAn implementation forCfnService.ServiceRegistryPropertyProperties for defining aCfnService.A builder forCfnServicePropsAn implementation forCfnServicePropsA CloudFormationAWS::ECS::TaskDefinition.The authorization configuration details for the Amazon EFS file system.A builder forCfnTaskDefinition.AuthorizationConfigPropertyAn implementation forCfnTaskDefinition.AuthorizationConfigPropertyA fluent builder forCfnTaskDefinition.TheContainerDefinitionproperty specifies a container definition.A builder forCfnTaskDefinition.ContainerDefinitionPropertyAn implementation forCfnTaskDefinition.ContainerDefinitionPropertyTheContainerDependencyproperty specifies the dependencies defined for container startup and shutdown.A builder forCfnTaskDefinition.ContainerDependencyPropertyAn implementation forCfnTaskDefinition.ContainerDependencyPropertyTheDeviceproperty specifies an object representing a container instance host device.A builder forCfnTaskDefinition.DevicePropertyAn implementation forCfnTaskDefinition.DevicePropertyTheDockerVolumeConfigurationproperty specifies a Docker volume configuration and is used when you use Docker volumes.A builder forCfnTaskDefinition.DockerVolumeConfigurationPropertyAn implementation forCfnTaskDefinition.DockerVolumeConfigurationPropertyThis parameter is specified when you're using an Amazon Elastic File System file system for task storage.A builder forCfnTaskDefinition.EFSVolumeConfigurationPropertyAn implementation forCfnTaskDefinition.EFSVolumeConfigurationPropertyA list of files containing the environment variables to pass to a container.A builder forCfnTaskDefinition.EnvironmentFilePropertyAn implementation forCfnTaskDefinition.EnvironmentFilePropertyThe amount of ephemeral storage to allocate for the task.A builder forCfnTaskDefinition.EphemeralStoragePropertyAn implementation forCfnTaskDefinition.EphemeralStoragePropertyThe FireLens configuration for the container.A builder forCfnTaskDefinition.FirelensConfigurationPropertyAn implementation forCfnTaskDefinition.FirelensConfigurationPropertyTheHealthCheckproperty specifies an object representing a container health check.A builder forCfnTaskDefinition.HealthCheckPropertyAn implementation forCfnTaskDefinition.HealthCheckPropertyTheHostEntryproperty specifies a hostname and an IP address that are added to the/etc/hostsfile of a container through theextraHostsparameter of itsContainerDefinitionresource.A builder forCfnTaskDefinition.HostEntryPropertyAn implementation forCfnTaskDefinition.HostEntryPropertyTheHostVolumePropertiesproperty specifies details on a container instance bind mount host volume.A builder forCfnTaskDefinition.HostVolumePropertiesPropertyAn implementation forCfnTaskDefinition.HostVolumePropertiesPropertyDetails on an Elastic Inference accelerator.A builder forCfnTaskDefinition.InferenceAcceleratorPropertyAn implementation forCfnTaskDefinition.InferenceAcceleratorPropertyTheKernelCapabilitiesproperty specifies the Linux capabilities for the container that are added to or dropped from the default configuration that is provided by Docker.A builder forCfnTaskDefinition.KernelCapabilitiesPropertyAn implementation forCfnTaskDefinition.KernelCapabilitiesPropertyA key-value pair object.A builder forCfnTaskDefinition.KeyValuePairPropertyAn implementation forCfnTaskDefinition.KeyValuePairPropertyThe Linux-specific options that are applied to the container, such as Linux KernelCapabilities .A builder forCfnTaskDefinition.LinuxParametersPropertyAn implementation forCfnTaskDefinition.LinuxParametersPropertyTheLogConfigurationproperty specifies log configuration options to send to a custom log driver for the container.A builder forCfnTaskDefinition.LogConfigurationPropertyAn implementation forCfnTaskDefinition.LogConfigurationPropertyThe details for a volume mount point that's used in a container definition.A builder forCfnTaskDefinition.MountPointPropertyAn implementation forCfnTaskDefinition.MountPointPropertyThePortMappingproperty specifies a port mapping.A builder forCfnTaskDefinition.PortMappingPropertyAn implementation forCfnTaskDefinition.PortMappingPropertyThe configuration details for the App Mesh proxy.A builder forCfnTaskDefinition.ProxyConfigurationPropertyAn implementation forCfnTaskDefinition.ProxyConfigurationPropertyThe repository credentials for private registry authentication.A builder forCfnTaskDefinition.RepositoryCredentialsPropertyAn implementation forCfnTaskDefinition.RepositoryCredentialsPropertyThe type and amount of a resource to assign to a container.A builder forCfnTaskDefinition.ResourceRequirementPropertyAn implementation forCfnTaskDefinition.ResourceRequirementPropertyInformation about the platform for the Amazon ECS service or task.A builder forCfnTaskDefinition.RuntimePlatformPropertyAn implementation forCfnTaskDefinition.RuntimePlatformPropertyAn object representing the secret to expose to your container.A builder forCfnTaskDefinition.SecretPropertyAn implementation forCfnTaskDefinition.SecretPropertyA list of namespaced kernel parameters to set in the container.A builder forCfnTaskDefinition.SystemControlPropertyAn implementation forCfnTaskDefinition.SystemControlPropertyThe constraint on task placement in the task definition.An implementation forCfnTaskDefinition.TaskDefinitionPlacementConstraintPropertyThe container path, mount options, and size of the tmpfs mount.A builder forCfnTaskDefinition.TmpfsPropertyAn implementation forCfnTaskDefinition.TmpfsPropertyTheulimitsettings to pass to the container.A builder forCfnTaskDefinition.UlimitPropertyAn implementation forCfnTaskDefinition.UlimitPropertyDetails on a data volume from another container in the same task definition.A builder forCfnTaskDefinition.VolumeFromPropertyAn implementation forCfnTaskDefinition.VolumeFromPropertyTheVolumeproperty specifies a data volume used in a task definition.A builder forCfnTaskDefinition.VolumePropertyAn implementation forCfnTaskDefinition.VolumePropertyProperties for defining aCfnTaskDefinition.A builder forCfnTaskDefinitionPropsAn implementation forCfnTaskDefinitionPropsA CloudFormationAWS::ECS::TaskSet.An object representing the networking details for a task or service.A builder forCfnTaskSet.AwsVpcConfigurationPropertyAn implementation forCfnTaskSet.AwsVpcConfigurationPropertyA fluent builder forCfnTaskSet.The load balancer configuration to use with a service or task set.A builder forCfnTaskSet.LoadBalancerPropertyAn implementation forCfnTaskSet.LoadBalancerPropertyThe network configuration for a task or service.A builder forCfnTaskSet.NetworkConfigurationPropertyAn implementation forCfnTaskSet.NetworkConfigurationPropertyA floating-point percentage of the desired number of tasks to place and keep running in the task set.A builder forCfnTaskSet.ScalePropertyAn implementation forCfnTaskSet.ScalePropertyThe details for the service registry.A builder forCfnTaskSet.ServiceRegistryPropertyAn implementation forCfnTaskSet.ServiceRegistryPropertyProperties for defining aCfnTaskSet.A builder forCfnTaskSetPropsAn implementation forCfnTaskSetPropsThe options for creating an AWS Cloud Map namespace.A builder forCloudMapNamespaceOptionsAn implementation forCloudMapNamespaceOptionsThe options to enabling AWS Cloud Map for an Amazon ECS service.A builder forCloudMapOptionsAn implementation forCloudMapOptionsA regional grouping of one or more container instances on which you can run tasks and services.A fluent builder forCluster.The properties to import from the ECS cluster.A builder forClusterAttributesAn implementation forClusterAttributesThe properties used to define an ECS cluster.A builder forClusterPropsAn implementation forClusterPropsThe common task definition attributes used across all types of task definitions.A builder forCommonTaskDefinitionAttributesAn implementation forCommonTaskDefinitionAttributesThe common properties for all task definitions.A builder forCommonTaskDefinitionPropsAn implementation forCommonTaskDefinitionPropsThe task launch type compatibility requirement.A container definition is used in a task definition to describe the containers that are launched as part of a task.A fluent builder forContainerDefinition.Example:A builder forContainerDefinitionOptionsAn implementation forContainerDefinitionOptionsThe properties in a container definition.A builder forContainerDefinitionPropsAn implementation forContainerDefinitionPropsThe details of a dependency on another container in the task definition.A builder forContainerDependencyAn implementation forContainerDependencyConstructs for types of container images.The configuration for creating a container image.A builder forContainerImageConfigAn implementation forContainerImageConfigThe CpuArchitecture for Fargate Runtime Platform.The properties for enabling scaling based on CPU utilization.A builder forCpuUtilizationScalingPropsAn implementation forCpuUtilizationScalingPropsThe deployment circuit breaker to use for the service.A builder forDeploymentCircuitBreakerAn implementation forDeploymentCircuitBreakerThe deployment controller to use for the service.A builder forDeploymentControllerAn implementation forDeploymentControllerThe deployment controller type to use for the service.A container instance host device.A builder forDeviceAn implementation forDevicePermissions for device access.The configuration for a Docker volume.A builder forDockerVolumeConfigurationAn implementation forDockerVolumeConfigurationThis creates a service using the EC2 launch type on an ECS cluster.A fluent builder forEc2Service.The properties to import from the service using the EC2 launch type.A builder forEc2ServiceAttributesAn implementation forEc2ServiceAttributesThe properties for defining a service using the EC2 launch type.A builder forEc2ServicePropsAn implementation forEc2ServicePropsThe details of a task definition run on an EC2 cluster.A fluent builder forEc2TaskDefinition.Attributes used to import an existing EC2 task definition.A builder forEc2TaskDefinitionAttributesAn implementation forEc2TaskDefinitionAttributesThe properties for a task definition run on an EC2 cluster.A builder forEc2TaskDefinitionPropsAn implementation forEc2TaskDefinitionPropsAn image from an Amazon ECR repository.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Construct a Linux or Windows machine image from the latest ECS Optimized AMI published in SSM.Additional configuration properties for EcsOptimizedImage factory functions.A builder forEcsOptimizedImageOptionsAn implementation forEcsOptimizedImageOptionsExample:A builder forEcsTargetAn implementation forEcsTargetThe configuration for an Elastic FileSystem volume.A builder forEfsVolumeConfigurationAn implementation forEfsVolumeConfigurationConstructs for types of environment files.Configuration for the environment file.A builder forEnvironmentFileConfigAn implementation forEnvironmentFileConfigType of environment file to be included in the container definition.The details of the execute command configuration.A builder forExecuteCommandConfigurationAn implementation forExecuteCommandConfigurationThe log configuration for the results of the execute command actions.A builder forExecuteCommandLogConfigurationAn implementation forExecuteCommandLogConfigurationThe log settings to use to for logging the execute command session.This creates a service using the External launch type on an ECS cluster.A fluent builder forExternalService.The properties to import from the service using the External launch type.A builder forExternalServiceAttributesAn implementation forExternalServiceAttributesThe properties for defining a service using the External launch type.A builder forExternalServicePropsAn implementation forExternalServicePropsThe details of a task definition run on an External cluster.A fluent builder forExternalTaskDefinition.Attributes used to import an existing External task definition.A builder forExternalTaskDefinitionAttributesAn implementation forExternalTaskDefinitionAttributesThe properties for a task definition run on an External cluster.A builder forExternalTaskDefinitionPropsAn implementation forExternalTaskDefinitionPropsThe platform version on which to run your service.This creates a service using the Fargate launch type on an ECS cluster.A fluent builder forFargateService.The properties to import from the service using the Fargate launch type.A builder forFargateServiceAttributesAn implementation forFargateServiceAttributesThe properties for defining a service using the Fargate launch type.A builder forFargateServicePropsAn implementation forFargateServicePropsThe details of a task definition run on a Fargate cluster.A fluent builder forFargateTaskDefinition.Attributes used to import an existing Fargate task definition.A builder forFargateTaskDefinitionAttributesAn implementation forFargateTaskDefinitionAttributesThe properties for a task definition.A builder forFargateTaskDefinitionPropsAn implementation forFargateTaskDefinitionPropsFirelens Configuration https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html#firelens-taskdef.A builder forFirelensConfigAn implementation forFirelensConfigFirelens configuration file type, s3 or file path.FireLens enables you to use task definition parameters to route logs to an AWS service or AWS Partner Network (APN) destination for log storage and analytics.A fluent builder forFireLensLogDriver.Specifies the firelens log driver configuration options.A builder forFireLensLogDriverPropsAn implementation forFireLensLogDriverPropsFirelens log router.A fluent builder forFirelensLogRouter.The options for creating a firelens log router.A builder forFirelensLogRouterDefinitionOptionsAn implementation forFirelensLogRouterDefinitionOptionsThe properties in a firelens log router.A builder forFirelensLogRouterPropsAn implementation forFirelensLogRouterPropsFirelens log router type, fluentbit or fluentd.The options for firelens log router https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html#firelens-taskdef-customconfig.A builder forFirelensOptionsAn implementation forFirelensOptionsA log driver that sends log information to journald Logs.A fluent builder forFluentdLogDriver.Specifies the fluentd log driver configuration options.A builder forFluentdLogDriverPropsAn implementation forFluentdLogDriverPropsThe type of compression the GELF driver uses to compress each log message.A log driver that sends log information to journald Logs.A fluent builder forGelfLogDriver.Specifies the journald log driver configuration options.A builder forGelfLogDriverPropsAn implementation forGelfLogDriverPropsA log driver that sends logs to the specified driver.A fluent builder forGenericLogDriver.The configuration to use when creating a log driver.A builder forGenericLogDriverPropsAn implementation forGenericLogDriverPropsThe health check command and associated configuration parameters for the container.A builder forHealthCheckAn implementation forHealthCheckThe details on a container instance bind mount host volume.A builder forHostAn implementation forHostThe interface for BaseService.Internal default implementation forIBaseService.A proxy class which represents a concrete javascript instance of this type.A regional grouping of one or more container instances on which you can run tasks and services.Internal default implementation forICluster.A proxy class which represents a concrete javascript instance of this type.The interface for a service using the EC2 launch type on an ECS cluster.Internal default implementation forIEc2Service.A proxy class which represents a concrete javascript instance of this type.The interface of a task definition run on an EC2 cluster.Internal default implementation forIEc2TaskDefinition.A proxy class which represents a concrete javascript instance of this type.Interface for ECS load balancer target.Internal default implementation forIEcsLoadBalancerTarget.A proxy class which represents a concrete javascript instance of this type.The interface for a service using the External launch type on an ECS cluster.Internal default implementation forIExternalService.A proxy class which represents a concrete javascript instance of this type.The interface of a task definition run on an External cluster.Internal default implementation forIExternalTaskDefinition.A proxy class which represents a concrete javascript instance of this type.The interface for a service using the Fargate launch type on an ECS cluster.Internal default implementation forIFargateService.A proxy class which represents a concrete javascript instance of this type.The interface of a task definition run on a Fargate cluster.Internal default implementation forIFargateTaskDefinition.A proxy class which represents a concrete javascript instance of this type.Elastic Inference Accelerator.A builder forInferenceAcceleratorAn implementation forInferenceAcceleratorThe IPC resource namespace to use for the containers in the task.The interface for a service.Internal default implementation forIService.A proxy class which represents a concrete javascript instance of this type.The interface for all task definitions.Internal default implementation forITaskDefinition.A proxy class which represents a concrete javascript instance of this type.An extension for Task Definitions.Internal default implementation forITaskDefinitionExtension.A proxy class which represents a concrete javascript instance of this type.A log driver that sends log information to journald Logs.A fluent builder forJournaldLogDriver.Specifies the journald log driver configuration options.A builder forJournaldLogDriverPropsAn implementation forJournaldLogDriverPropsA log driver that sends log information to json-file Logs.A fluent builder forJsonFileLogDriver.Specifies the json-file log driver configuration options.A builder forJsonFileLogDriverPropsAn implementation forJsonFileLogDriverPropsThe launch type of an ECS service.Linux-specific options that are applied to the container.A fluent builder forLinuxParameters.The properties for defining Linux-specific options that are applied to the container.A builder forLinuxParametersPropsAn implementation forLinuxParametersPropsBase class for configuring listener when registering targets.Properties for defining an ECS target.A builder forLoadBalancerTargetOptionsAn implementation forLoadBalancerTargetOptionsThe base class for log drivers.The configuration to use when creating a log driver.A builder forLogDriverConfigAn implementation forLogDriverConfigThe base class for log drivers.The machine image type.The properties for enabling scaling based on memory utilization.A builder forMemoryUtilizationScalingPropsAn implementation forMemoryUtilizationScalingPropsThe details of data volume mount points for a container.A builder forMountPointAn implementation forMountPointThe networking mode to use for the containers in the task.The operating system for Fargate Runtime Platform.The process namespace to use for the containers in the task.The placement constraints to use for tasks in the service.The placement strategies to use for tasks in the service.Port mappings allow containers to access ports on the host container instance to send or receive traffic.A builder forPortMappingAn implementation forPortMappingPropagate tags from either service or task definition.Network protocol.The base class for proxy configurations.The base class for proxy configurations.An image hosted in a public or private repository.A fluent builder forRepositoryImage.The properties for an image hosted in a public or private repository.A builder forRepositoryImagePropsAn implementation forRepositoryImagePropsThe properties for enabling scaling based on Application Load Balancer (ALB) request counts.A builder forRequestCountScalingPropsAn implementation forRequestCountScalingPropsThe interface for Runtime Platform.A builder forRuntimePlatformAn implementation forRuntimePlatformEnvironment file from S3.The scalable attribute representing task count.A fluent builder forScalableTaskCount.The properties of a scalable attribute representing task count.A builder forScalableTaskCountPropsAn implementation forScalableTaskCountPropsThe scope for the Docker volume that determines its lifecycle.The temporary disk space mounted to the container.A builder forScratchSpaceAn implementation forScratchSpaceA secret environment variable.Specify the secret's version id or version stage.A builder forSecretVersionInfoAn implementation forSecretVersionInfoA log driver that sends log information to splunk Logs.A fluent builder forSplunkLogDriver.Specifies the splunk log driver configuration options.A builder forSplunkLogDriverPropsAn implementation forSplunkLogDriverPropsLog Message Format.A log driver that sends log information to syslog Logs.A fluent builder forSyslogLogDriver.Specifies the syslog log driver configuration options.A builder forSyslogLogDriverPropsAn implementation forSyslogLogDriverPropsKernel parameters to set in the container.A builder forSystemControlAn implementation forSystemControlA special type ofContainerImagethat uses an ECR repository for the image, but a CloudFormation Parameter for the tag of the image in that repository.The base class for all task definitions.A fluent builder forTaskDefinition.A reference to an existing task definition.A builder forTaskDefinitionAttributesAn implementation forTaskDefinitionAttributesThe properties for task definitions.A builder forTaskDefinitionPropsAn implementation forTaskDefinitionPropsThe details of a tmpfs mount for a container.A builder forTmpfsAn implementation forTmpfsThe supported options for a tmpfs mount for a container.The properties for enabling target tracking scaling based on a custom CloudWatch metric.A builder forTrackCustomMetricPropsAn implementation forTrackCustomMetricPropsThe ulimit settings to pass to the container.A builder forUlimitAn implementation forUlimitType of resource to set a limit on.A data volume used in a task definition.A builder forVolumeAn implementation forVolumeThe details on a data volume from another container in the same task definition.A builder forVolumeFromAn implementation forVolumeFromECS-optimized Windows version list.
EcsOptimizedImage.amazonLinux(software.amazon.awscdk.services.ecs.EcsOptimizedImageOptions),EcsOptimizedImage.amazonLinux(software.amazon.awscdk.services.ecs.EcsOptimizedImageOptions)andEcsOptimizedImage.windows(software.amazon.awscdk.services.ecs.WindowsOptimizedVersion, software.amazon.awscdk.services.ecs.EcsOptimizedImageOptions)