Interface ExternalTaskDefinitionAttributes
- All Superinterfaces:
CommonTaskDefinitionAttributes
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ExternalTaskDefinitionAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-25T14:21:14.611Z")
@Stability(Stable)
public interface ExternalTaskDefinitionAttributes
extends software.amazon.jsii.JsiiSerializable, CommonTaskDefinitionAttributes
Attributes used to import an existing External 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; ExternalTaskDefinitionAttributes externalTaskDefinitionAttributes = ExternalTaskDefinitionAttributes.builder() .taskDefinitionArn("taskDefinitionArn") // the properties below are optional .executionRole(role) .networkMode(NetworkMode.NONE) .taskRole(role) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forExternalTaskDefinitionAttributes
static final class
An implementation forExternalTaskDefinitionAttributes
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.ecs.CommonTaskDefinitionAttributes
getExecutionRole, getNetworkMode, getTaskDefinitionArn, getTaskRole
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
builder
-