interface S3StorageOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins.CfnServerPropsMixin.S3StorageOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/mixins#CfnServerPropsMixin_S3StorageOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.transfer.mixins.CfnServerPropsMixin.S3StorageOptionsProperty |
Python | aws_cdk.mixins_preview.aws_transfer.mixins.CfnServerPropsMixin.S3StorageOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_transfer » mixins » CfnServerPropsMixin » S3StorageOptionsProperty |
The Amazon S3 storage options that are configured for your server.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as transfer_mixins } from '@aws-cdk/mixins-preview/aws-transfer';
const s3StorageOptionsProperty: transfer_mixins.CfnServerPropsMixin.S3StorageOptionsProperty = {
directoryListingOptimization: 'directoryListingOptimization',
};
Properties
| Name | Type | Description |
|---|---|---|
| directory | string | Specifies whether or not performance for your Amazon S3 directories is optimized. |
directoryListingOptimization?
Type:
string
(optional)
Specifies whether or not performance for your Amazon S3 directories is optimized.
- If using the console, this is enabled by default.
- If using the API or CLI, this is disabled by default.
By default, home directory mappings have a TYPE of DIRECTORY . If you enable this option, you would then need to explicitly set the HomeDirectoryMapEntry Type to FILE if you want a mapping to have a file target.

.NET
Go
Java
Python
TypeScript