interface S3StorageOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Transfer.CfnServerPropsMixin.S3StorageOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstransfer#CfnServerPropsMixin_S3StorageOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.transfer.CfnServerPropsMixin.S3StorageOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_transfer.CfnServerPropsMixin.S3StorageOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_transfer » 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 { aws_transfer as transfer } from '@aws-cdk/cfn-property-mixins';
const s3StorageOptionsProperty: transfer.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