Show / Hide Table of Contents

Interface CfnTaskDefinition.IMountPointProperty

The details for a volume mount point that's used in a container definition.

Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public interface IMountPointProperty
Syntax (vb)
Public Interface IMountPointProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-mountpoint.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ECS;

var mountPointProperty = new MountPointProperty {
    ContainerPath = "containerPath",
    ReadOnly = false,
    SourceVolume = "sourceVolume"
};

Synopsis

Properties

ContainerPath

The path on the container to mount the host volume at.

ReadOnly

If this value is true , the container has read-only access to the volume.

SourceVolume

The name of the volume to mount.

Properties

ContainerPath

The path on the container to mount the host volume at.

virtual string ContainerPath { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-mountpoint.html#cfn-ecs-taskdefinition-mountpoint-containerpath

ReadOnly

If this value is true , the container has read-only access to the volume.

virtual object ReadOnly { get; }
Property Value

System.Object

Remarks

If this value is false , then the container can write to the volume. The default value is false .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-mountpoint.html#cfn-ecs-taskdefinition-mountpoint-readonly

SourceVolume

The name of the volume to mount.

virtual string SourceVolume { get; }
Property Value

System.String

Remarks

Must be a volume name referenced in the name parameter of task definition volume .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-mountpoint.html#cfn-ecs-taskdefinition-mountpoint-sourcevolume

Back to top Generated by DocFX