TaskDefinitionVolumeFromArgs

data class TaskDefinitionVolumeFromArgs(val readOnly: Output<Boolean>? = null, val sourceContainer: Output<String>? = null) : ConvertibleToJava<TaskDefinitionVolumeFromArgs>

Details on a data volume from another container in the same task definition.

Constructors

Link copied to clipboard
constructor(readOnly: Output<Boolean>? = null, sourceContainer: Output<String>? = null)

Properties

Link copied to clipboard
val readOnly: Output<Boolean>? = null

If this value is `true`, the container has read-only access to the volume. If this value is `false`, then the container can write to the volume. The default value is `false`.

Link copied to clipboard
val sourceContainer: Output<String>? = null

The name of another container within the same task definition to mount volumes from.

Functions

Link copied to clipboard
open override fun toJava(): TaskDefinitionVolumeFromArgs