aws-cdk-lib.aws_m2.CfnEnvironment.StorageConfigurationProperty

interface StorageConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.M2.CfnEnvironment.StorageConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsm2#CfnEnvironment_StorageConfigurationProperty
Javasoftware.amazon.awscdk.services.m2.CfnEnvironment.StorageConfigurationProperty
Pythonaws_cdk.aws_m2.CfnEnvironment.StorageConfigurationProperty
TypeScript aws-cdk-lib » 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 { aws_m2 as m2 } from 'aws-cdk-lib';
const storageConfigurationProperty: m2.CfnEnvironment.StorageConfigurationProperty = {
  efs: {
    fileSystemId: 'fileSystemId',
    mountPoint: 'mountPoint',
  },
  fsx: {
    fileSystemId: 'fileSystemId',
    mountPoint: 'mountPoint',
  },
};

Properties

NameTypeDescription
efs?IResolvable | EfsStorageConfigurationPropertyDefines the storage configuration for an Amazon EFS file system.
fsx?IResolvable | FsxStorageConfigurationPropertyDefines the storage configuration for an Amazon FSx file system.

efs?

Type: IResolvable | EfsStorageConfigurationProperty (optional)

Defines the storage configuration for an Amazon EFS file system.


fsx?

Type: IResolvable | FsxStorageConfigurationProperty (optional)

Defines the storage configuration for an Amazon FSx file system.