GetContainerRecipeResult

data class GetContainerRecipeResult(val arn: String, val components: List<GetContainerRecipeComponent>, val containerType: String, val dateCreated: String, val description: String, val dockerfileTemplateData: String, val encrypted: Boolean, val id: String, val instanceConfigurations: List<GetContainerRecipeInstanceConfiguration>, val kmsKeyId: String, val name: String, val owner: String, val parentImage: String, val platform: String, val tags: Map<String, String>? = null, val targetRepositories: List<GetContainerRecipeTargetRepository>, val version: String, val workingDirectory: String)

A collection of values returned by getContainerRecipe.

Constructors

Link copied to clipboard
constructor(arn: String, components: List<GetContainerRecipeComponent>, containerType: String, dateCreated: String, description: String, dockerfileTemplateData: String, encrypted: Boolean, id: String, instanceConfigurations: List<GetContainerRecipeInstanceConfiguration>, kmsKeyId: String, name: String, owner: String, parentImage: String, platform: String, tags: Map<String, String>? = null, targetRepositories: List<GetContainerRecipeTargetRepository>, version: String, workingDirectory: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val arn: String
Link copied to clipboard

List of objects with components for the container recipe.

Link copied to clipboard

Type of the container.

Link copied to clipboard

Date the container recipe was created.

Link copied to clipboard

Description of the container recipe.

Link copied to clipboard

Dockerfile template used to build the image.

Link copied to clipboard

Whether to encrypt the volume. Defaults to unset, which is the value inherited from the parent image.

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard

List of objects with instance configurations for building and testing container images.

Link copied to clipboard

KMS key used to encrypt the container image.

Link copied to clipboard

Name of the container recipe.

Link copied to clipboard

Owner of the container recipe.

Link copied to clipboard

Base image for the container recipe.

Link copied to clipboard

Platform of the container recipe.

Link copied to clipboard
val tags: Map<String, String>? = null

Key-value map of resource tags for the container recipe.

Link copied to clipboard

Destination repository for the container image.

Link copied to clipboard

Version of the container recipe.

Link copied to clipboard

Working directory used during build and test workflows.