Class TaskDefinitionProps.Jsii$Proxy
- All Implemented Interfaces:
CommonTaskDefinitionProps
,TaskDefinitionProps
,software.amazon.jsii.JsiiSerializable
- Enclosing interface:
TaskDefinitionProps
TaskDefinitionProps
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.ecs.TaskDefinitionProps
TaskDefinitionProps.Builder, TaskDefinitionProps.Jsii$Proxy
-
Constructor Summary
ModifierConstructorDescriptionprotected
Jsii$Proxy
(TaskDefinitionProps.Builder builder) Constructor that initializes the object based on literal property values passed by theTaskDefinitionProps.Builder
.protected
Jsii$Proxy
(software.amazon.jsii.JsiiObjectRef objRef) Constructor that initializes the object based on values retrieved from the JsiiObject. -
Method Summary
Modifier and TypeMethodDescriptioncom.fasterxml.jackson.databind.JsonNode
final boolean
final Compatibility
The task launch type compatiblity requirement.final String
getCpu()
The number of cpu units used by the task.final Number
The amount (in GiB) of ephemeral storage to be allocated to the task.final IRole
The name of the IAM task execution role that grants the ECS agent permission to call AWS APIs on your behalf.final String
The name of a family that this task definition is registered to.final List<InferenceAccelerator>
The inference accelerators to use for the containers in the task.final IpcMode
The IPC resource namespace to use for the containers in the task.final String
The amount (in MiB) of memory used by the task.final NetworkMode
The networking mode to use for the containers in the task.final PidMode
The process namespace to use for the containers in the task.final List<PlacementConstraint>
The placement constraints to use for tasks in the service.final ProxyConfiguration
The configuration details for the App Mesh proxy.final RuntimePlatform
The operating system that your task definitions are running on.final IRole
The name of the IAM role that grants containers in the task permission to call AWS APIs on your behalf.The list of volume definitions for the task.final int
hashCode()
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
-
Constructor Details
-
Jsii$Proxy
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef) Constructor that initializes the object based on values retrieved from the JsiiObject.- Parameters:
objRef
- Reference to the JSII managed object.
-
Jsii$Proxy
Constructor that initializes the object based on literal property values passed by theTaskDefinitionProps.Builder
.
-
-
Method Details
-
getCompatibility
Description copied from interface:TaskDefinitionProps
The task launch type compatiblity requirement.- Specified by:
getCompatibility
in interfaceTaskDefinitionProps
-
getCpu
Description copied from interface:TaskDefinitionProps
The number of cpu units used by the task.If you are using the EC2 launch type, this field is optional and any value can be used. If you are using the Fargate launch type, this field is required and you must use one of the following values, which determines your range of valid values for the memory parameter:
256 (.25 vCPU) - Available memory values: 512 (0.5 GB), 1024 (1 GB), 2048 (2 GB)
512 (.5 vCPU) - Available memory values: 1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB)
1024 (1 vCPU) - Available memory values: 2048 (2 GB), 3072 (3 GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB)
2048 (2 vCPU) - Available memory values: Between 4096 (4 GB) and 16384 (16 GB) in increments of 1024 (1 GB)
4096 (4 vCPU) - Available memory values: Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)
Default: - CPU units are not specified.
- Specified by:
getCpu
in interfaceTaskDefinitionProps
-
getEphemeralStorageGiB
Description copied from interface:TaskDefinitionProps
The amount (in GiB) of ephemeral storage to be allocated to the task.Only supported in Fargate platform version 1.4.0 or later.
Default: - Undefined, in which case, the task will receive 20GiB ephemeral storage.
- Specified by:
getEphemeralStorageGiB
in interfaceTaskDefinitionProps
-
getInferenceAccelerators
Description copied from interface:TaskDefinitionProps
The inference accelerators to use for the containers in the task.Not supported in Fargate.
Default: - No inference accelerators.
- Specified by:
getInferenceAccelerators
in interfaceTaskDefinitionProps
-
getIpcMode
Description copied from interface:TaskDefinitionProps
The IPC resource namespace to use for the containers in the task.Not supported in Fargate and Windows containers.
Default: - IpcMode used by the task is not specified
- Specified by:
getIpcMode
in interfaceTaskDefinitionProps
-
getMemoryMiB
Description copied from interface:TaskDefinitionProps
The amount (in MiB) of memory used by the task.If using the EC2 launch type, this field is optional and any value can be used. If using the Fargate launch type, this field is required and you must use one of the following values, which determines your range of valid values for the cpu parameter:
512 (0.5 GB), 1024 (1 GB), 2048 (2 GB) - Available cpu values: 256 (.25 vCPU)
1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB) - Available cpu values: 512 (.5 vCPU)
2048 (2 GB), 3072 (3 GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB) - Available cpu values: 1024 (1 vCPU)
Between 4096 (4 GB) and 16384 (16 GB) in increments of 1024 (1 GB) - Available cpu values: 2048 (2 vCPU)
Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB) - Available cpu values: 4096 (4 vCPU)
Default: - Memory used by task is not specified.
- Specified by:
getMemoryMiB
in interfaceTaskDefinitionProps
-
getNetworkMode
Description copied from interface:TaskDefinitionProps
The networking mode to use for the containers in the task.On Fargate, the only supported networking mode is AwsVpc.
Default: - NetworkMode.Bridge for EC2 invalid input: '&' External tasks, AwsVpc for Fargate tasks.
- Specified by:
getNetworkMode
in interfaceTaskDefinitionProps
-
getPidMode
Description copied from interface:TaskDefinitionProps
The process namespace to use for the containers in the task.Not supported in Fargate and Windows containers.
Default: - PidMode used by the task is not specified
- Specified by:
getPidMode
in interfaceTaskDefinitionProps
-
getPlacementConstraints
Description copied from interface:TaskDefinitionProps
The placement constraints to use for tasks in the service.You can specify a maximum of 10 constraints per task (this limit includes constraints in the task definition and those specified at run time).
Not supported in Fargate.
Default: - No placement constraints.
- Specified by:
getPlacementConstraints
in interfaceTaskDefinitionProps
-
getRuntimePlatform
Description copied from interface:TaskDefinitionProps
The operating system that your task definitions are running on.A runtimePlatform is supported only for tasks using the Fargate launch type.
Default: - Undefined.
- Specified by:
getRuntimePlatform
in interfaceTaskDefinitionProps
-
getExecutionRole
Description copied from interface:CommonTaskDefinitionProps
The name of the IAM task execution role that grants the ECS agent permission to call AWS APIs on your behalf.The role will be used to retrieve container images from ECR and create CloudWatch log groups.
Default: - An execution role will be automatically created if you use ECR images in your task definition.
- Specified by:
getExecutionRole
in interfaceCommonTaskDefinitionProps
-
getFamily
Description copied from interface:CommonTaskDefinitionProps
The name of a family that this task definition is registered to.A family groups multiple versions of a task definition.
Default: - Automatically generated name.
- Specified by:
getFamily
in interfaceCommonTaskDefinitionProps
-
getProxyConfiguration
Description copied from interface:CommonTaskDefinitionProps
The configuration details for the App Mesh proxy.Default: - No proxy configuration.
- Specified by:
getProxyConfiguration
in interfaceCommonTaskDefinitionProps
-
getTaskRole
Description copied from interface:CommonTaskDefinitionProps
The name of the IAM role that grants containers in the task permission to call AWS APIs on your behalf.Default: - A task role is automatically created for you.
- Specified by:
getTaskRole
in interfaceCommonTaskDefinitionProps
-
getVolumes
Description copied from interface:CommonTaskDefinitionProps
The list of volume definitions for the task.For more information, see Task Definition Parameter Volumes.
Default: - No volumes are passed to the Docker daemon on a container instance.
- Specified by:
getVolumes
in interfaceCommonTaskDefinitionProps
-
$jsii$toJson
@Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()- Specified by:
$jsii$toJson
in interfacesoftware.amazon.jsii.JsiiSerializable
-
equals
-
hashCode
public final int hashCode()
-