interface S3FilesVolumeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnTaskDefinition.S3FilesVolumeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnTaskDefinition_S3FilesVolumeConfigurationProperty |
Java | software.amazon.awscdk.services.ecs.CfnTaskDefinition.S3FilesVolumeConfigurationProperty |
Python | aws_cdk.aws_ecs.CfnTaskDefinition.S3FilesVolumeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnTaskDefinition » 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-lib';
const s3FilesVolumeConfigurationProperty: ecs.CfnTaskDefinition.S3FilesVolumeConfigurationProperty = {
fileSystemArn: 'fileSystemArn',
// the properties below are optional
accessPointArn: 'accessPointArn',
rootDirectory: 'rootDirectory',
transitEncryptionPort: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string | |
| access | string | |
| root | string | |
| transit | number |
fileSystemArn
Type:
string
accessPointArn?
Type:
string
(optional)
rootDirectory?
Type:
string
(optional)
transitEncryptionPort?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript