aws-cdk-lib.aws_ecs.CfnTaskDefinition.VolumeFromProperty

interface VolumeFromProperty

LanguageType name
.NETAmazon.CDK.AWS.ECS.CfnTaskDefinition.VolumeFromProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnTaskDefinition_VolumeFromProperty
Javasoftware.amazon.awscdk.services.ecs.CfnTaskDefinition.VolumeFromProperty
Pythonaws_cdk.aws_ecs.CfnTaskDefinition.VolumeFromProperty
TypeScript aws-cdk-lib » aws_ecs » CfnTaskDefinition » VolumeFromProperty

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 volumeFromProperty: ecs.CfnTaskDefinition.VolumeFromProperty = {
  readOnly: false,
  sourceContainer: 'sourceContainer',
};

Properties

NameTypeDescription
readOnly?boolean | IResolvableIf this value is true , the container has read-only access to the volume.
sourceContainer?stringThe name of another container within the same task definition to mount volumes from.

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 .


sourceContainer?

Type: string (optional)

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