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.21.0 to 0.22.0

159

lib/efs.generated.d.ts

@@ -20,3 +20,3 @@ import cdk = require('@aws-cdk/cdk');

*/
kmsKeyId?: string | cdk.Token;
kmsKeyId?: string;
/**

@@ -26,3 +26,3 @@ * ``AWS::EFS::FileSystem.PerformanceMode``

*/
performanceMode?: string | cdk.Token;
performanceMode?: string;
/**

@@ -37,3 +37,3 @@ * ``AWS::EFS::FileSystem.ProvisionedThroughputInMibps``

*/
throughputMode?: string | cdk.Token;
throughputMode?: string;
}

@@ -52,7 +52,7 @@ /**

*
* @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``
* @param scope scope in which this resource is defined
* @param id scoped id of the resource
* @param props resource properties
*/
constructor(parent: cdk.Construct, name: string, properties?: CfnFileSystemProps);
constructor(scope: cdk.Construct, id: string, props?: CfnFileSystemProps);
readonly propertyOverrides: CfnFileSystemProps;

@@ -72,3 +72,3 @@ protected renderProperties(properties: any): {

*/
key: string | cdk.Token;
key: string;
/**

@@ -78,82 +78,5 @@ * ``CfnFileSystem.ElasticFileSystemTagProperty.Value``

*/
value: string | cdk.Token;
value: string;
}
}
export declare namespace cloudformation {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html
*/
interface FileSystemResourceProps {
/**
* ``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<FileSystemResource.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;
}
/**
* @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
*/
class FileSystemResource 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 ``FileSystemResource`` is a part of
* @param name the name of the resource in the ``cdk.Construct`` tree
* @param properties the properties of this ``FileSystemResource``
*/
constructor(parent: cdk.Construct, name: string, properties?: FileSystemResourceProps);
readonly propertyOverrides: FileSystemResourceProps;
protected renderProperties(properties: any): {
[key: string]: any;
};
}
namespace FileSystemResource {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-filesystemtags.html
*/
interface ElasticFileSystemTagProperty {
/**
* ``FileSystemResource.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;
/**
* ``FileSystemResource.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;
}
}
}
/**

@@ -167,3 +90,3 @@ * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html

*/
fileSystemId: string | cdk.Token;
fileSystemId: string;
/**

@@ -178,3 +101,3 @@ * ``AWS::EFS::MountTarget.SecurityGroups``

*/
subnetId: string | cdk.Token;
subnetId: string;
/**

@@ -184,3 +107,3 @@ * ``AWS::EFS::MountTarget.IpAddress``

*/
ipAddress?: string | cdk.Token;
ipAddress?: string;
}

@@ -199,7 +122,7 @@ /**

*
* @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``
* @param scope scope in which this resource is defined
* @param id scoped id of the resource
* @param props resource properties
*/
constructor(parent: cdk.Construct, name: string, properties: CfnMountTargetProps);
constructor(scope: cdk.Construct, id: string, props: CfnMountTargetProps);
readonly propertyOverrides: CfnMountTargetProps;

@@ -210,51 +133,1 @@ protected renderProperties(properties: any): {

}
export declare namespace cloudformation {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html
*/
interface MountTargetResourceProps {
/**
* ``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;
}
/**
* @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
*/
class MountTargetResource 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 ``MountTargetResource`` is a part of
* @param name the name of the resource in the ``cdk.Construct`` tree
* @param properties the properties of this ``MountTargetResource``
*/
constructor(parent: cdk.Construct, name: string, properties: MountTargetResourceProps);
readonly propertyOverrides: MountTargetResourceProps;
protected renderProperties(properties: any): {
[key: string]: any;
};
}
}

18

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

@@ -37,3 +37,5 @@ "main": "lib/index.js",

"pkglint": "pkglint -f",
"package": "cdk-package"
"package": "cdk-package",
"awslint": "cdk-awslint",
"cfn2ts": "cfn2ts"
},

@@ -56,13 +58,13 @@ "cdk-build": {

"devDependencies": {
"@aws-cdk/assert": "^0.21.0",
"cdk-build-tools": "^0.21.0",
"cfn2ts": "^0.21.0",
"pkglint": "^0.21.0"
"@aws-cdk/assert": "^0.22.0",
"cdk-build-tools": "^0.22.0",
"cfn2ts": "^0.22.0",
"pkglint": "^0.22.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.21.0"
"@aws-cdk/cdk": "^0.22.0"
},
"homepage": "https://github.com/awslabs/aws-cdk",
"peerDependencies": {
"@aws-cdk/cdk": "^0.21.0"
"@aws-cdk/cdk": "^0.22.0"
},

@@ -69,0 +71,0 @@ "engines": {

@@ -25,5 +25,20 @@ {

"strictNullChecks": true,
"target": "ES2018"
"target": "ES2018",
"composite": true
},
"include": [
"**/*.ts"
],
"exclude": [
"node_modules"
],
"references": [
{
"path": "../cdk"
},
{
"path": "../assert"
}
],
"_generated_by_jsii_": "Generated by jsii - safe to delete, and ideally should be in .gitignore"
}

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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