interface VolumeFromProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnTaskDefinitionPropsMixin.VolumeFromProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnTaskDefinitionPropsMixin_VolumeFromProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnTaskDefinitionPropsMixin.VolumeFromProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnTaskDefinitionPropsMixin.VolumeFromProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnTaskDefinitionPropsMixin » 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 { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const volumeFromProperty: ecs_mixins.CfnTaskDefinitionPropsMixin.VolumeFromProperty = {
readOnly: false,
sourceContainer: 'sourceContainer',
};
Properties
| Name | Type | Description |
|---|---|---|
| read | boolean | IResolvable | If this value is true , the container has read-only access to the volume. |
| source | string | The 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.

.NET
Go
Java
Python
TypeScript