interface StorageConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.M2.CfnEnvironment.StorageConfigurationProperty |
Java | software.amazon.awscdk.services.m2.CfnEnvironment.StorageConfigurationProperty |
Python | aws_cdk.aws_m2.CfnEnvironment.StorageConfigurationProperty |
TypeScript | @aws-cdk/aws-m2 » CfnEnvironment » StorageConfigurationProperty |
Defines the storage configuration for a runtime environment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as m2 from '@aws-cdk/aws-m2';
const storageConfigurationProperty: m2.CfnEnvironment.StorageConfigurationProperty = {
efs: {
fileSystemId: 'fileSystemId',
mountPoint: 'mountPoint',
},
fsx: {
fileSystemId: 'fileSystemId',
mountPoint: 'mountPoint',
},
};
Properties
Name | Type | Description |
---|---|---|
efs? | IResolvable | Efs | Defines the storage configuration for an Amazon EFS file system. |
fsx? | IResolvable | Fsx | Defines the storage configuration for an Amazon FSx file system. |
efs?
Type:
IResolvable
|
Efs
(optional)
Defines the storage configuration for an Amazon EFS file system.
fsx?
Type:
IResolvable
|
Fsx
(optional)
Defines the storage configuration for an Amazon FSx file system.