Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

@aws-cdk/aws-efs

Package Overview
Dependencies
Maintainers
4
Versions
288
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-cdk/aws-efs - npm Package Compare versions

Comparing version 0.20.0 to 0.21.0

123

lib/efs.generated.d.ts
import cdk = require('@aws-cdk/cdk');
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html
*/
export interface CfnFileSystemProps {
/**
* ``AWS::EFS::FileSystem.Encrypted``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted
*/
encrypted?: boolean | cdk.Token;
/**
* ``AWS::EFS::FileSystem.FileSystemTags``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystemtags
*/
fileSystemTags?: Array<CfnFileSystem.ElasticFileSystemTagProperty | cdk.Token> | cdk.Token;
/**
* ``AWS::EFS::FileSystem.KmsKeyId``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid
*/
kmsKeyId?: string | cdk.Token;
/**
* ``AWS::EFS::FileSystem.PerformanceMode``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode
*/
performanceMode?: string | cdk.Token;
/**
* ``AWS::EFS::FileSystem.ProvisionedThroughputInMibps``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-provisionedthroughputinmibps
*/
provisionedThroughputInMibps?: number | cdk.Token;
/**
* ``AWS::EFS::FileSystem.ThroughputMode``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-throughputmode
*/
throughputMode?: string | cdk.Token;
}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html
*/
export declare class CfnFileSystem extends cdk.Resource {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly resourceTypeName = "AWS::EFS::FileSystem";
readonly fileSystemId: string;
/**
* Creates a new ``AWS::EFS::FileSystem``.
*
* @param parent the ``cdk.Construct`` this ``CfnFileSystem`` is a part of
* @param name the name of the resource in the ``cdk.Construct`` tree
* @param properties the properties of this ``CfnFileSystem``
*/
constructor(parent: cdk.Construct, name: string, properties?: CfnFileSystemProps);
readonly propertyOverrides: CfnFileSystemProps;
protected renderProperties(properties: any): {
[key: string]: any;
};
}
export declare namespace CfnFileSystem {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-filesystemtags.html
*/
interface ElasticFileSystemTagProperty {
/**
* ``CfnFileSystem.ElasticFileSystemTagProperty.Key``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-filesystemtags.html#cfn-efs-filesystem-filesystemtags-key
*/
key: string | cdk.Token;
/**
* ``CfnFileSystem.ElasticFileSystemTagProperty.Value``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-filesystemtags.html#cfn-efs-filesystem-filesystemtags-value
*/
value: string | cdk.Token;
}
}
export declare namespace cloudformation {

@@ -39,2 +113,3 @@ /**

/**
* @deprecated "cloudformation.FileSystemResource" will be deprecated in a future release in favor of "CfnFileSystem" (see https://github.com/awslabs/aws-cdk/issues/878)
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html

@@ -79,2 +154,49 @@ */

}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html
*/
export interface CfnMountTargetProps {
/**
* ``AWS::EFS::MountTarget.FileSystemId``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid
*/
fileSystemId: string | cdk.Token;
/**
* ``AWS::EFS::MountTarget.SecurityGroups``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-securitygroups
*/
securityGroups: Array<string | cdk.Token> | cdk.Token;
/**
* ``AWS::EFS::MountTarget.SubnetId``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid
*/
subnetId: string | cdk.Token;
/**
* ``AWS::EFS::MountTarget.IpAddress``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress
*/
ipAddress?: string | cdk.Token;
}
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html
*/
export declare class CfnMountTarget extends cdk.Resource {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly resourceTypeName = "AWS::EFS::MountTarget";
readonly mountTargetId: string;
/**
* Creates a new ``AWS::EFS::MountTarget``.
*
* @param parent the ``cdk.Construct`` this ``CfnMountTarget`` is a part of
* @param name the name of the resource in the ``cdk.Construct`` tree
* @param properties the properties of this ``CfnMountTarget``
*/
constructor(parent: cdk.Construct, name: string, properties: CfnMountTargetProps);
readonly propertyOverrides: CfnMountTargetProps;
protected renderProperties(properties: any): {
[key: string]: any;
};
}
export declare namespace cloudformation {

@@ -107,2 +229,3 @@ /**

/**
* @deprecated "cloudformation.MountTargetResource" will be deprecated in a future release in favor of "CfnMountTarget" (see https://github.com/awslabs/aws-cdk/issues/878)
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html

@@ -109,0 +232,0 @@ */

17

package.json
{
"name": "@aws-cdk/aws-efs",
"version": "0.20.0",
"version": "0.21.0",
"description": "The CDK Construct Library for AWS::EFS",

@@ -55,14 +55,17 @@ "main": "lib/index.js",

"devDependencies": {
"@aws-cdk/assert": "^0.20.0",
"cdk-build-tools": "^0.20.0",
"cfn2ts": "^0.20.0",
"pkglint": "^0.20.0"
"@aws-cdk/assert": "^0.21.0",
"cdk-build-tools": "^0.21.0",
"cfn2ts": "^0.21.0",
"pkglint": "^0.21.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.20.0"
"@aws-cdk/cdk": "^0.21.0"
},
"homepage": "https://github.com/awslabs/aws-cdk",
"peerDependencies": {
"@aws-cdk/cdk": "^0.20.0"
"@aws-cdk/cdk": "^0.21.0"
},
"engines": {
"node": ">= 8.10.0"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc