Interface TaskDefinitionAttributes

All Superinterfaces:
CommonTaskDefinitionAttributes, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
TaskDefinitionAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:47.481Z") @Stability(Stable) public interface TaskDefinitionAttributes extends software.amazon.jsii.JsiiSerializable, CommonTaskDefinitionAttributes
A reference to an existing task definition.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ecs.*;
 import software.amazon.awscdk.services.iam.*;
 Role role;
 TaskDefinitionAttributes taskDefinitionAttributes = TaskDefinitionAttributes.builder()
         .taskDefinitionArn("taskDefinitionArn")
         // the properties below are optional
         .compatibility(Compatibility.EC2)
         .networkMode(NetworkMode.NONE)
         .taskRole(role)
         .build();