Show / Hide Table of Contents

Class TaskDefinitionVolumeDockerVolumeConfigurationArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TaskDefinitionVolumeDockerVolumeConfigurationArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ecs.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class TaskDefinitionVolumeDockerVolumeConfigurationArgs : ResourceArgs

Constructors

View Source

TaskDefinitionVolumeDockerVolumeConfigurationArgs()

Declaration
public TaskDefinitionVolumeDockerVolumeConfigurationArgs()

Properties

View Source

Autoprovision

If this value is true, the Docker volume is created if it does not already exist. Note: This field is only used if the scope is shared.

Declaration
public Input<bool> Autoprovision { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Driver

The Docker volume driver to use. The driver value must match the driver name provided by Docker because it is used for task placement.

Declaration
public Input<string> Driver { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DriverOpts

A map of Docker driver specific options.

Declaration
public InputMap<string> DriverOpts { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Labels

A map of custom metadata to add to your Docker volume.

Declaration
public InputMap<string> Labels { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Scope

The scope for the Docker volume, which determines its lifecycle, either task or shared. Docker volumes that are scoped to a task are automatically provisioned when the task starts and destroyed when the task stops. Docker volumes that are scoped as shared persist after the task stops.

Declaration
public Input<string> Scope { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.