interface BaseMountPoint
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ECS.BaseMountPoint |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#BaseMountPoint |
Java | software.amazon.awscdk.services.ecs.BaseMountPoint |
Python | aws_cdk.aws_ecs.BaseMountPoint |
TypeScript (source) | aws-cdk-lib » aws_ecs » BaseMountPoint |
The base details of where a volume will be mounted within a container.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const baseMountPoint: ecs.BaseMountPoint = {
containerPath: 'containerPath',
readOnly: false,
};
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. |
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.