Show / Hide Table of Contents

Interface IMountPoint

The details of data volume mount points for a container.

Inherited Members
IBaseMountPoint.ContainerPath
IBaseMountPoint.ReadOnly
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IMountPoint : IBaseMountPoint
Syntax (vb)
Public Interface IMountPoint Inherits IBaseMountPoint
Remarks

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 mountPoint = new MountPoint {
                ContainerPath = "containerPath",
                ReadOnly = false,
                SourceVolume = "sourceVolume"
            };

Synopsis

Properties

SourceVolume

The name of the volume to mount.

Properties

SourceVolume

The name of the volume to mount.

string SourceVolume { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX