Interface CfnDaemonTaskDefinition.IMountPointProperty
The details for a volume mount point that's used in a container definition.
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDaemonTaskDefinition.IMountPointProperty
Syntax (vb)
Public Interface CfnDaemonTaskDefinition.IMountPointProperty
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 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 |
| SourceVolume | The name of the volume to mount. |
Properties
ContainerPath
The path on the container to mount the host volume at.
string? ContainerPath { get; }
Property Value
Remarks
ReadOnly
If this value is true, the container has read-only access to the volume.
object? ReadOnly { get; }
Property Value
Remarks
If this value is false, then the container can write to the volume. The default value is false.
Type union: either bool or IResolvable
SourceVolume
The name of the volume to mount.
string? SourceVolume { get; }
Property Value
Remarks
Must be a volume name referenced in the name parameter of task definition volume.