aws-cdk-lib.aws_ecs.VolumeFrom

interface VolumeFrom

LanguageType name
.NETAmazon.CDK.AWS.ECS.VolumeFrom
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsecs#VolumeFrom
Javasoftware.amazon.awscdk.services.ecs.VolumeFrom
Pythonaws_cdk.aws_ecs.VolumeFrom
TypeScript (source)aws-cdk-lib » aws_ecs » VolumeFrom

The details on a data volume from another container in the same task 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 volumeFrom: ecs.VolumeFrom = {
  readOnly: false,
  sourceContainer: 'sourceContainer',
};

Properties

NameTypeDescription
readOnlybooleanSpecifies whether the container has read-only access to the volume.
sourceContainerstringThe name of another container within the same task definition from which to mount volumes.

readOnly

Type: boolean

Specifies whether the container has 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.


sourceContainer

Type: string

The name of another container within the same task definition from which to mount volumes.