Class TaskDefinitionVolumeDockerVolumeConfigurationArgs
Inherited Members
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 SourceTaskDefinitionVolumeDockerVolumeConfigurationArgs()
Declaration
public TaskDefinitionVolumeDockerVolumeConfigurationArgs()
Properties
View SourceAutoprovision
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> |
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> |
DriverOpts
A map of Docker driver specific options.
Declaration
public InputMap<string> DriverOpts { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |
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> |
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> |