interface MountPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnTaskDefinitionPropsMixin.MountPointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnTaskDefinitionPropsMixin_MountPointProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnTaskDefinitionPropsMixin.MountPointProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnTaskDefinitionPropsMixin.MountPointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnTaskDefinitionPropsMixin » MountPointProperty |
The details for a volume mount point that's used in a container definition.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const mountPointProperty: ecs_mixins.CfnTaskDefinitionPropsMixin.MountPointProperty = {
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 | IResolvable | If this value is true , the container has read-only access to the volume. |
| source | string | The name of the volume to mount. |
containerPath?
Type:
string
(optional)
The path on the container to mount the host volume at.
readOnly?
Type:
boolean | IResolvable
(optional)
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. The default value is false .
sourceVolume?
Type:
string
(optional)
The name of the volume to mount.
Must be a volume name referenced in the name parameter of task definition volume .

.NET
Go
Java
Python
TypeScript