Show / Hide Table of Contents

Class TaskDefinitionVolumeArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TaskDefinitionVolumeArgs
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 TaskDefinitionVolumeArgs : ResourceArgs

Constructors

View Source

TaskDefinitionVolumeArgs()

Declaration
public TaskDefinitionVolumeArgs()

Properties

View Source

DockerVolumeConfiguration

Used to configure a docker volume

Declaration
public Input<TaskDefinitionVolumeDockerVolumeConfigurationArgs> DockerVolumeConfiguration { get; set; }
Property Value
Type Description
Input<TaskDefinitionVolumeDockerVolumeConfigurationArgs>
View Source

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.