GetContainerDefinitionResult

data class GetContainerDefinitionResult(val containerName: String, val cpu: Int, val disableNetworking: Boolean, val dockerLabels: Map<String, String>, val environment: Map<String, String>, val id: String, val image: String, val imageDigest: String, val memory: Int, val memoryReservation: Int, val taskDefinition: String)

A collection of values returned by getContainerDefinition.

Constructors

Link copied to clipboard
constructor(containerName: String, cpu: Int, disableNetworking: Boolean, dockerLabels: Map<String, String>, environment: Map<String, String>, id: String, image: String, imageDigest: String, memory: Int, memoryReservation: Int, taskDefinition: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
val cpu: Int

CPU limit for this container definition

Link copied to clipboard

Indicator if networking is disabled

Link copied to clipboard

Set docker labels

Link copied to clipboard

Environment in use

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard

Docker image in use, including the digest

Link copied to clipboard

Digest of the docker image in use

Link copied to clipboard
val memory: Int

Memory limit for this container definition

Link copied to clipboard

Soft limit (in MiB) of memory to reserve for the container. When system memory is under contention, Docker attempts to keep the container memory to this soft limit

Link copied to clipboard