aws-cdk-lib.aws_ecs.CfnTaskDefinition.MountPointProperty

interface MountPointProperty

LanguageType name
.NETAmazon.CDK.AWS.ECS.CfnTaskDefinition.MountPointProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnTaskDefinition_MountPointProperty
Javasoftware.amazon.awscdk.services.ecs.CfnTaskDefinition.MountPointProperty
Pythonaws_cdk.aws_ecs.CfnTaskDefinition.MountPointProperty
TypeScript aws-cdk-lib » aws_ecs » CfnTaskDefinition » 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 { aws_ecs as ecs } from 'aws-cdk-lib';
const mountPointProperty: ecs.CfnTaskDefinition.MountPointProperty = {
  containerPath: 'containerPath',
  readOnly: false,
  sourceVolume: 'sourceVolume',
};

Properties

NameTypeDescription
containerPath?stringThe path on the container to mount the host volume at.
readOnly?boolean | IResolvableIf this value is true , the container has read-only access to the volume.
sourceVolume?stringThe 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 .