interface S3FilesVolumeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECS.CfnTaskDefinitionPropsMixin.S3FilesVolumeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecs#CfnTaskDefinitionPropsMixin_S3FilesVolumeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecs.CfnTaskDefinitionPropsMixin.S3FilesVolumeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ecs.CfnTaskDefinitionPropsMixin.S3FilesVolumeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecs » CfnTaskDefinitionPropsMixin » S3FilesVolumeConfigurationProperty |
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/cfn-property-mixins';
const s3FilesVolumeConfigurationProperty: ecs.CfnTaskDefinitionPropsMixin.S3FilesVolumeConfigurationProperty = {
accessPointArn: 'accessPointArn',
fileSystemArn: 'fileSystemArn',
rootDirectory: 'rootDirectory',
transitEncryptionPort: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | |
| file | string | |
| root | string | |
| transit | number |
accessPointArn?
Type:
string
(optional)
fileSystemArn?
Type:
string
(optional)
rootDirectory?
Type:
string
(optional)
transitEncryptionPort?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript