Class TaskDefinitionVolumeArgs
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 TaskDefinitionVolumeArgs : ResourceArgs
Constructors
View SourceTaskDefinitionVolumeArgs()
Declaration
public TaskDefinitionVolumeArgs()
Properties
View SourceDockerVolumeConfiguration
Used to configure a docker volume
Declaration
public Input<TaskDefinitionVolumeDockerVolumeConfigurationArgs> DockerVolumeConfiguration { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<TaskDefinitionVolumeDockerVolumeConfigurationArgs> |
EfsVolumeConfiguration
Used to configure a EFS volume. Can be used only with an EC2 type task.
Declaration
public Input<TaskDefinitionVolumeEfsVolumeConfigurationArgs> EfsVolumeConfiguration { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<TaskDefinitionVolumeEfsVolumeConfigurationArgs> |
HostPath
The path on the host container instance that is presented to the container. If not set, ECS will create a nonpersistent data volume that starts empty and is deleted after the task has finished.
Declaration
public Input<string> HostPath { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
The name of the volume. This name is referenced in the sourceVolume
parameter of container definition in the mountPoints section.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |