interface MountPoint
This page is available in another version. Click here for the v2 documentation.
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ECS.MountPoint |
![]() | software.amazon.awscdk.services.ecs.MountPoint |
![]() | aws_cdk.aws_ecs.MountPoint |
![]() | @aws-cdk/aws-ecs » MountPoint |
The details of data volume mount points for a container.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ecs from '@aws-cdk/aws-ecs';
const mountPoint: ecs.MountPoint = {
containerPath: 'containerPath',
readOnly: false,
sourceVolume: 'sourceVolume',
};
Properties
Name | Type | Description |
---|---|---|
container | string | The path on the container to mount the host volume at. |
read | boolean | Specifies whether to give the container read-only access to the volume. |
source | string | The name of the volume to mount. |
containerPath
Type:
string
The path on the container to mount the host volume at.
readOnly
Type:
boolean
Specifies whether to give the container read-only access to the volume.
If this value is true, the container has read-only access to the volume. If this value is false, then the container can write to the volume.
sourceVolume
Type:
string
The name of the volume to mount.
Must be a volume name referenced in the name parameter of task definition volume.