GradientEdge CDK Utils
    Preparing search index...

    Provides operations on AWS Elastic File System.

    • A new instance of this class is injected into CommonConstruct constructor.
    • If a custom construct extends CommonConstruct, an instance is available within the context.
    import { CommonConstruct } from '@gradientedge/cdk-utils'

    class CustomConstruct extends CommonConstruct {
    constructor(parent: cdk.Construct, id: string, props: common.CommonStackProps) {
    super(parent, id, props)
    this.props = props
    this.efsManager.createFileSystem('MyFileSystem', this, fileSystemProps, vpc)
    }
    }
    Index

    Constructors

    Methods

    Constructors

    Methods

    • Parameters

      • id: string

        scoped id of the resource

      • scope: CommonConstruct

        scope in which this resource is defined

      • props: EfsFileSystemProps

        the file system props

      • vpc: IVpc

        the vpc to use for the file system

      • OptionalaccessPointOptions: EfsAccessPointOptions[]

        optional access point configuration options for the file system

      • OptionalsecurityGroup: ISecurityGroup

        optional security groups to configure for the file system

      • OptionalvpcSubnets: SubnetSelection

        optional subnets to configure for the file system

      Returns FileSystem