agent-claw: automated task changes
This commit is contained in:
185
cdk/node_modules/aws-cdk-lib/aws-efs/lib/access-point.d.ts
generated
vendored
Normal file
185
cdk/node_modules/aws-cdk-lib/aws-efs/lib/access-point.d.ts
generated
vendored
Normal file
@@ -0,0 +1,185 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import type { IFileSystem } from './efs-file-system';
|
||||
import type { IResource } from '../../core';
|
||||
import { Resource } from '../../core';
|
||||
import type { AccessPointReference, IAccessPointRef, IFileSystemRef } from '../../interfaces/generated/aws-efs-interfaces.generated';
|
||||
/**
|
||||
* Represents an EFS AccessPoint
|
||||
*/
|
||||
export interface IAccessPoint extends IAccessPointRef, IResource {
|
||||
/**
|
||||
* The ID of the AccessPoint
|
||||
*
|
||||
* @attribute
|
||||
*/
|
||||
readonly accessPointId: string;
|
||||
/**
|
||||
* The ARN of the AccessPoint
|
||||
*
|
||||
* @attribute
|
||||
*/
|
||||
readonly accessPointArn: string;
|
||||
/**
|
||||
* The EFS file system
|
||||
*/
|
||||
readonly fileSystem: IFileSystem;
|
||||
}
|
||||
/**
|
||||
* Permissions as POSIX ACL
|
||||
*/
|
||||
export interface Acl {
|
||||
/**
|
||||
* Specifies the POSIX user ID to apply to the RootDirectory. Accepts values from 0 to 2^32 (4294967295).
|
||||
*/
|
||||
readonly ownerUid: string;
|
||||
/**
|
||||
* Specifies the POSIX group ID to apply to the RootDirectory. Accepts values from 0 to 2^32 (4294967295).
|
||||
*/
|
||||
readonly ownerGid: string;
|
||||
/**
|
||||
* Specifies the POSIX permissions to apply to the RootDirectory, in the format of an octal number representing
|
||||
* the file's mode bits.
|
||||
*/
|
||||
readonly permissions: string;
|
||||
}
|
||||
/**
|
||||
* Represents the PosixUser
|
||||
*/
|
||||
export interface PosixUser {
|
||||
/**
|
||||
* The POSIX user ID used for all file system operations using this access point.
|
||||
*/
|
||||
readonly uid: string;
|
||||
/**
|
||||
* The POSIX group ID used for all file system operations using this access point.
|
||||
*/
|
||||
readonly gid: string;
|
||||
/**
|
||||
* Secondary POSIX group IDs used for all file system operations using this access point.
|
||||
*
|
||||
* @default - None
|
||||
*/
|
||||
readonly secondaryGids?: string[];
|
||||
}
|
||||
/**
|
||||
* Options to create an AccessPoint
|
||||
*/
|
||||
export interface AccessPointOptions {
|
||||
/**
|
||||
* Specifies the POSIX IDs and permissions to apply when creating the access point's root directory. If the
|
||||
* root directory specified by `path` does not exist, EFS creates the root directory and applies the
|
||||
* permissions specified here. If the specified `path` does not exist, you must specify `createAcl`.
|
||||
*
|
||||
* @default - None. The directory specified by `path` must exist.
|
||||
*/
|
||||
readonly createAcl?: Acl;
|
||||
/**
|
||||
* Specifies the path on the EFS file system to expose as the root directory to NFS clients using the access point
|
||||
* to access the EFS file system
|
||||
*
|
||||
* @default '/'
|
||||
*/
|
||||
readonly path?: string;
|
||||
/**
|
||||
* The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point
|
||||
* that is used for all file system operations performed by NFS clients using the access point.
|
||||
*
|
||||
* Specify this to enforce a user identity using an access point.
|
||||
*
|
||||
* @see - [Enforcing a User Identity Using an Access Point](https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html)
|
||||
*
|
||||
* @default - user identity not enforced
|
||||
*/
|
||||
readonly posixUser?: PosixUser;
|
||||
/**
|
||||
* The opaque string specified in the request to ensure idempotent creation.
|
||||
*
|
||||
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-accesspoint.html#cfn-efs-accesspoint-clienttoken
|
||||
*
|
||||
* @default - No client token
|
||||
*/
|
||||
readonly clientToken?: string;
|
||||
}
|
||||
/**
|
||||
* Properties for the AccessPoint
|
||||
*/
|
||||
export interface AccessPointProps extends AccessPointOptions {
|
||||
/**
|
||||
* The efs filesystem
|
||||
*/
|
||||
readonly fileSystem: IFileSystemRef;
|
||||
}
|
||||
/**
|
||||
* Attributes that can be specified when importing an AccessPoint
|
||||
*/
|
||||
export interface AccessPointAttributes {
|
||||
/**
|
||||
* The ID of the AccessPoint
|
||||
* One of this, or `accessPointArn` is required
|
||||
*
|
||||
* @default - determined based on accessPointArn
|
||||
*/
|
||||
readonly accessPointId?: string;
|
||||
/**
|
||||
* The ARN of the AccessPoint
|
||||
* One of this, or `accessPointId` is required
|
||||
*
|
||||
* @default - determined based on accessPointId
|
||||
*/
|
||||
readonly accessPointArn?: string;
|
||||
/**
|
||||
* The EFS file system
|
||||
*
|
||||
* @default - no EFS file system
|
||||
*/
|
||||
readonly fileSystem?: IFileSystemRef;
|
||||
}
|
||||
declare abstract class AccessPointBase extends Resource implements IAccessPoint {
|
||||
/**
|
||||
* The ARN of the Access Point
|
||||
* @attribute
|
||||
*/
|
||||
abstract readonly accessPointArn: string;
|
||||
/**
|
||||
* The ID of the Access Point
|
||||
* @attribute
|
||||
*/
|
||||
abstract readonly accessPointId: string;
|
||||
/**
|
||||
* The file system of the access point
|
||||
*/
|
||||
abstract readonly fileSystem: IFileSystem;
|
||||
get accessPointRef(): AccessPointReference;
|
||||
}
|
||||
/**
|
||||
* Represents the AccessPoint
|
||||
*/
|
||||
export declare class AccessPoint extends AccessPointBase {
|
||||
/** Uniquely identifies this class. */
|
||||
static readonly PROPERTY_INJECTION_ID: string;
|
||||
/**
|
||||
* Import an existing Access Point by attributes
|
||||
*/
|
||||
static fromAccessPointAttributes(scope: Construct, id: string, attrs: AccessPointAttributes): IAccessPoint;
|
||||
/**
|
||||
* Import an existing Access Point by id
|
||||
*/
|
||||
static fromAccessPointId(scope: Construct, id: string, accessPointId: string): IAccessPoint;
|
||||
/**
|
||||
* The ARN of the Access Point
|
||||
* @attribute
|
||||
*/
|
||||
readonly accessPointArn: string;
|
||||
/**
|
||||
* The ID of the Access Point
|
||||
* @attribute
|
||||
*/
|
||||
readonly accessPointId: string;
|
||||
private readonly _fileSystem;
|
||||
/**
|
||||
* The file system of the access point
|
||||
*/
|
||||
get fileSystem(): IFileSystem;
|
||||
constructor(scope: Construct, id: string, props: AccessPointProps);
|
||||
}
|
||||
export {};
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-efs/lib/access-point.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-efs/lib/access-point.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
60
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs-canned-metrics.generated.d.ts
generated
vendored
Normal file
60
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs-canned-metrics.generated.d.ts
generated
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
export interface MetricWithDims<D> {
|
||||
readonly namespace: string;
|
||||
readonly metricName: string;
|
||||
readonly statistic: string;
|
||||
readonly dimensionsMap: D;
|
||||
}
|
||||
export declare class EFSMetrics {
|
||||
static burstCreditBalanceAverage(this: void, dimensions: {
|
||||
FileSystemId: string;
|
||||
}): MetricWithDims<{
|
||||
FileSystemId: string;
|
||||
}>;
|
||||
static clientConnectionsSum(this: void, dimensions: {
|
||||
FileSystemId: string;
|
||||
}): MetricWithDims<{
|
||||
FileSystemId: string;
|
||||
}>;
|
||||
static dataReadIoBytesAverage(this: void, dimensions: {
|
||||
FileSystemId: string;
|
||||
}): MetricWithDims<{
|
||||
FileSystemId: string;
|
||||
}>;
|
||||
static dataWriteIoBytesAverage(this: void, dimensions: {
|
||||
FileSystemId: string;
|
||||
}): MetricWithDims<{
|
||||
FileSystemId: string;
|
||||
}>;
|
||||
static metadataIoBytesAverage(this: void, dimensions: {
|
||||
FileSystemId: string;
|
||||
}): MetricWithDims<{
|
||||
FileSystemId: string;
|
||||
}>;
|
||||
static meteredIoBytesAverage(this: void, dimensions: {
|
||||
FileSystemId: string;
|
||||
}): MetricWithDims<{
|
||||
FileSystemId: string;
|
||||
}>;
|
||||
static percentIoLimitAverage(this: void, dimensions: {
|
||||
FileSystemId: string;
|
||||
}): MetricWithDims<{
|
||||
FileSystemId: string;
|
||||
}>;
|
||||
static permittedThroughputAverage(this: void, dimensions: {
|
||||
FileSystemId: string;
|
||||
}): MetricWithDims<{
|
||||
FileSystemId: string;
|
||||
}>;
|
||||
static totalIoBytesSum(this: void, dimensions: {
|
||||
FileSystemId: string;
|
||||
}): MetricWithDims<{
|
||||
FileSystemId: string;
|
||||
}>;
|
||||
static storageBytesAverage(this: void, dimensions: {
|
||||
FileSystemId: string;
|
||||
StorageClass: string;
|
||||
}): MetricWithDims<{
|
||||
FileSystemId: string;
|
||||
StorageClass: string;
|
||||
}>;
|
||||
}
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs-canned-metrics.generated.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs-canned-metrics.generated.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.EFSMetrics=void 0;class EFSMetrics{static burstCreditBalanceAverage(dimensions){return{namespace:"AWS/EFS",metricName:"BurstCreditBalance",dimensionsMap:dimensions,statistic:"Average"}}static clientConnectionsSum(dimensions){return{namespace:"AWS/EFS",metricName:"ClientConnections",dimensionsMap:dimensions,statistic:"Sum"}}static dataReadIoBytesAverage(dimensions){return{namespace:"AWS/EFS",metricName:"DataReadIOBytes",dimensionsMap:dimensions,statistic:"Average"}}static dataWriteIoBytesAverage(dimensions){return{namespace:"AWS/EFS",metricName:"DataWriteIOBytes",dimensionsMap:dimensions,statistic:"Average"}}static metadataIoBytesAverage(dimensions){return{namespace:"AWS/EFS",metricName:"MetadataIOBytes",dimensionsMap:dimensions,statistic:"Average"}}static meteredIoBytesAverage(dimensions){return{namespace:"AWS/EFS",metricName:"MeteredIOBytes",dimensionsMap:dimensions,statistic:"Average"}}static percentIoLimitAverage(dimensions){return{namespace:"AWS/EFS",metricName:"PercentIOLimit",dimensionsMap:dimensions,statistic:"Average"}}static permittedThroughputAverage(dimensions){return{namespace:"AWS/EFS",metricName:"PermittedThroughput",dimensionsMap:dimensions,statistic:"Average"}}static totalIoBytesSum(dimensions){return{namespace:"AWS/EFS",metricName:"TotalIOBytes",dimensionsMap:dimensions,statistic:"Sum"}}static storageBytesAverage(dimensions){return{namespace:"AWS/EFS",metricName:"StorageBytes",dimensionsMap:dimensions,statistic:"Average"}}}exports.EFSMetrics=EFSMetrics;
|
||||
574
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs-file-system.d.ts
generated
vendored
Normal file
574
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs-file-system.d.ts
generated
vendored
Normal file
@@ -0,0 +1,574 @@
|
||||
import type { Construct, IDependable } from 'constructs';
|
||||
import type { AccessPointOptions } from './access-point';
|
||||
import { AccessPoint } from './access-point';
|
||||
import { CfnFileSystem } from './efs.generated';
|
||||
import * as ec2 from '../../aws-ec2';
|
||||
import * as iam from '../../aws-iam';
|
||||
import type * as kms from '../../aws-kms';
|
||||
import type { RemovalPolicy, Size } from '../../core';
|
||||
import { Resource } from '../../core';
|
||||
import type { FileSystemReference, IFileSystemRef } from '../../interfaces/generated/aws-efs-interfaces.generated';
|
||||
/**
|
||||
* EFS Lifecycle Policy, if a file is not accessed for given days, it will move to EFS Infrequent Access
|
||||
* or Archive storage.
|
||||
*
|
||||
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-elasticfilesystem-filesystem-lifecyclepolicies
|
||||
*/
|
||||
export declare enum LifecyclePolicy {
|
||||
/**
|
||||
* After 1 day of not being accessed.
|
||||
*/
|
||||
AFTER_1_DAY = "AFTER_1_DAY",
|
||||
/**
|
||||
* After 7 days of not being accessed.
|
||||
*/
|
||||
AFTER_7_DAYS = "AFTER_7_DAYS",
|
||||
/**
|
||||
* After 14 days of not being accessed.
|
||||
*/
|
||||
AFTER_14_DAYS = "AFTER_14_DAYS",
|
||||
/**
|
||||
* After 30 days of not being accessed.
|
||||
*/
|
||||
AFTER_30_DAYS = "AFTER_30_DAYS",
|
||||
/**
|
||||
* After 60 days of not being accessed.
|
||||
*/
|
||||
AFTER_60_DAYS = "AFTER_60_DAYS",
|
||||
/**
|
||||
* After 90 days of not being accessed.
|
||||
*/
|
||||
AFTER_90_DAYS = "AFTER_90_DAYS",
|
||||
/**
|
||||
* After 180 days of not being accessed.
|
||||
*/
|
||||
AFTER_180_DAYS = "AFTER_180_DAYS",
|
||||
/**
|
||||
* After 270 days of not being accessed.
|
||||
*/
|
||||
AFTER_270_DAYS = "AFTER_270_DAYS",
|
||||
/**
|
||||
* After 365 days of not being accessed.
|
||||
*/
|
||||
AFTER_365_DAYS = "AFTER_365_DAYS"
|
||||
}
|
||||
/**
|
||||
* EFS Out Of Infrequent Access Policy, if a file is accessed given times, it will move back to primary
|
||||
* storage class.
|
||||
*
|
||||
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-lifecyclepolicy.html#cfn-efs-filesystem-lifecyclepolicy-transitiontoprimarystorageclass
|
||||
*/
|
||||
export declare enum OutOfInfrequentAccessPolicy {
|
||||
/**
|
||||
* After 1 access
|
||||
*/
|
||||
AFTER_1_ACCESS = "AFTER_1_ACCESS"
|
||||
}
|
||||
/**
|
||||
* EFS Performance mode.
|
||||
*
|
||||
* @see https://docs.aws.amazon.com/efs/latest/ug/performance.html#performancemodes
|
||||
*/
|
||||
export declare enum PerformanceMode {
|
||||
/**
|
||||
* General Purpose is ideal for latency-sensitive use cases, like web serving
|
||||
* environments, content management systems, home directories, and general file serving.
|
||||
* Recommended for the majority of Amazon EFS file systems.
|
||||
*/
|
||||
GENERAL_PURPOSE = "generalPurpose",
|
||||
/**
|
||||
* File systems in the Max I/O mode can scale to higher levels of aggregate
|
||||
* throughput and operations per second. This scaling is done with a tradeoff
|
||||
* of slightly higher latencies for file metadata operations.
|
||||
* Highly parallelized applications and workloads, such as big data analysis,
|
||||
* media processing, and genomics analysis, can benefit from this mode.
|
||||
*/
|
||||
MAX_IO = "maxIO"
|
||||
}
|
||||
/**
|
||||
* EFS Throughput mode.
|
||||
*
|
||||
* @see https://docs.aws.amazon.com/efs/latest/ug/performance.html#throughput-modes
|
||||
*/
|
||||
export declare enum ThroughputMode {
|
||||
/**
|
||||
* This mode scales as the size of the file system in the standard storage class grows.
|
||||
*/
|
||||
BURSTING = "bursting",
|
||||
/**
|
||||
* This mode can instantly provision the throughput of the file system (in MiB/s) independent of the amount of data stored.
|
||||
*/
|
||||
PROVISIONED = "provisioned",
|
||||
/**
|
||||
* This mode scales the throughput automatically regardless of file system size.
|
||||
*/
|
||||
ELASTIC = "elastic"
|
||||
}
|
||||
/**
|
||||
* The status of the file system's replication overwrite protection.
|
||||
*
|
||||
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-filesystemprotection.html
|
||||
*/
|
||||
export declare enum ReplicationOverwriteProtection {
|
||||
/**
|
||||
* Enable the filesystem's replication overwrite protection.
|
||||
*/
|
||||
ENABLED = "ENABLED",
|
||||
/**
|
||||
* Disable the filesystem's replication overwrite protection.
|
||||
*/
|
||||
DISABLED = "DISABLED"
|
||||
}
|
||||
/**
|
||||
* Represents an Amazon EFS file system
|
||||
*/
|
||||
export interface IFileSystem extends IFileSystemRef, ec2.IConnectable, iam.IResourceWithPolicy {
|
||||
/**
|
||||
* The ID of the file system, assigned by Amazon EFS.
|
||||
*
|
||||
* @attribute
|
||||
*/
|
||||
readonly fileSystemId: string;
|
||||
/**
|
||||
* The ARN of the file system.
|
||||
*
|
||||
* @attribute
|
||||
*/
|
||||
readonly fileSystemArn: string;
|
||||
/**
|
||||
* Dependable that can be depended upon to ensure the mount targets of the filesystem are ready
|
||||
*/
|
||||
readonly mountTargetsAvailable: IDependable;
|
||||
/**
|
||||
* Grant the actions defined in actions to the given grantee
|
||||
* on this File System resource.
|
||||
*/
|
||||
grant(grantee: iam.IGrantable, ...actions: string[]): iam.Grant;
|
||||
/**
|
||||
* Grant read permissions for this file system to an IAM principal.
|
||||
* @param grantee The principal to grant read to
|
||||
*/
|
||||
grantRead(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* Grant read and write permissions for this file system to an IAM principal.
|
||||
* @param grantee The principal to grant read and write to
|
||||
*/
|
||||
grantReadWrite(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* As root user, grant read and write permissions for this file system to an IAM principal.
|
||||
* @param grantee The principal to grant root access to
|
||||
*/
|
||||
grantRootAccess(grantee: iam.IGrantable): iam.Grant;
|
||||
}
|
||||
/**
|
||||
* Properties of EFS FileSystem.
|
||||
*/
|
||||
export interface FileSystemProps {
|
||||
/**
|
||||
* VPC to launch the file system in.
|
||||
*/
|
||||
readonly vpc: ec2.IVpc;
|
||||
/**
|
||||
* Security Group to assign to this file system.
|
||||
*
|
||||
* @default - creates new security group which allows all outbound traffic
|
||||
*/
|
||||
readonly securityGroup?: ec2.ISecurityGroup;
|
||||
/**
|
||||
* Which subnets to place the mount target in the VPC.
|
||||
*
|
||||
* @default - the Vpc default strategy if not specified
|
||||
*/
|
||||
readonly vpcSubnets?: ec2.SubnetSelection;
|
||||
/**
|
||||
* Defines if the data at rest in the file system is encrypted or not.
|
||||
*
|
||||
* @default - If your application has the '@aws-cdk/aws-efs:defaultEncryptionAtRest' feature flag set, the default is true, otherwise, the default is false.
|
||||
* @link https://docs.aws.amazon.com/cdk/latest/guide/featureflags.html
|
||||
*/
|
||||
readonly encrypted?: boolean;
|
||||
/**
|
||||
* The file system's name.
|
||||
*
|
||||
* @default - CDK generated name
|
||||
*/
|
||||
readonly fileSystemName?: string;
|
||||
/**
|
||||
* The KMS key used for encryption. This is required to encrypt the data at rest if @encrypted is set to true.
|
||||
*
|
||||
* @default - if 'encrypted' is true, the default key for EFS (/aws/elasticfilesystem) is used
|
||||
*/
|
||||
readonly kmsKey?: kms.IKeyRef;
|
||||
/**
|
||||
* A policy used by EFS lifecycle management to transition files to the Infrequent Access (IA) storage class.
|
||||
*
|
||||
* @default - None. EFS will not transition files to the IA storage class.
|
||||
*/
|
||||
readonly lifecyclePolicy?: LifecyclePolicy;
|
||||
/**
|
||||
* A policy used by EFS lifecycle management to transition files from Infrequent Access (IA) storage class to
|
||||
* primary storage class.
|
||||
*
|
||||
* @default - None. EFS will not transition files from IA storage to primary storage.
|
||||
*/
|
||||
readonly outOfInfrequentAccessPolicy?: OutOfInfrequentAccessPolicy;
|
||||
/**
|
||||
* The number of days after files were last accessed in primary storage (the Standard storage class) at which to move them to Archive storage.
|
||||
* Metadata operations such as listing the contents of a directory don't count as file access events.
|
||||
*
|
||||
* @default - None. EFS will not transition files to Archive storage class.
|
||||
*/
|
||||
readonly transitionToArchivePolicy?: LifecyclePolicy;
|
||||
/**
|
||||
* The performance mode that the file system will operate under.
|
||||
* An Amazon EFS file system's performance mode can't be changed after the file system has been created.
|
||||
* Updating this property will replace the file system.
|
||||
*
|
||||
* @default PerformanceMode.GENERAL_PURPOSE
|
||||
*/
|
||||
readonly performanceMode?: PerformanceMode;
|
||||
/**
|
||||
* Enum to mention the throughput mode of the file system.
|
||||
*
|
||||
* @default ThroughputMode.BURSTING
|
||||
*/
|
||||
readonly throughputMode?: ThroughputMode;
|
||||
/**
|
||||
* Provisioned throughput for the file system.
|
||||
* This is a required property if the throughput mode is set to PROVISIONED.
|
||||
* Must be at least 1MiB/s.
|
||||
*
|
||||
* @default - none, errors out
|
||||
*/
|
||||
readonly provisionedThroughputPerSecond?: Size;
|
||||
/**
|
||||
* The removal policy to apply to the file system.
|
||||
*
|
||||
* @default RemovalPolicy.RETAIN
|
||||
*/
|
||||
readonly removalPolicy?: RemovalPolicy;
|
||||
/**
|
||||
* Whether to enable automatic backups for the file system.
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
readonly enableAutomaticBackups?: boolean;
|
||||
/**
|
||||
* File system policy is an IAM resource policy used to control NFS access to an EFS file system.
|
||||
*
|
||||
* @default none
|
||||
*/
|
||||
readonly fileSystemPolicy?: iam.PolicyDocument;
|
||||
/**
|
||||
* Allow access from anonymous client that doesn't use IAM authentication.
|
||||
*
|
||||
* @default false when using `grantRead`, `grantWrite`, `grantRootAccess`
|
||||
* or set `@aws-cdk/aws-efs:denyAnonymousAccess` feature flag, otherwise true
|
||||
*/
|
||||
readonly allowAnonymousAccess?: boolean;
|
||||
/**
|
||||
* Whether this is a One Zone file system.
|
||||
* If enabled, `performanceMode` must be set to `GENERAL_PURPOSE` and `vpcSubnets` cannot be set.
|
||||
*
|
||||
* @default false
|
||||
* @link https://docs.aws.amazon.com/efs/latest/ug/availability-durability.html#file-system-type
|
||||
*/
|
||||
readonly oneZone?: boolean;
|
||||
/**
|
||||
* Whether to enable the filesystem's replication overwrite protection or not.
|
||||
* Set false if you want to create a read-only filesystem for use as a replication destination.
|
||||
*
|
||||
* @see https://docs.aws.amazon.com/efs/latest/ug/replication-use-cases.html#replicate-existing-destination
|
||||
*
|
||||
* @default ReplicationOverwriteProtection.ENABLED
|
||||
*/
|
||||
readonly replicationOverwriteProtection?: ReplicationOverwriteProtection;
|
||||
/**
|
||||
* Replication configuration for the file system.
|
||||
*
|
||||
* @default - no replication
|
||||
*/
|
||||
readonly replicationConfiguration?: ReplicationConfiguration;
|
||||
}
|
||||
/**
|
||||
* Properties that describe an existing EFS file system.
|
||||
*/
|
||||
export interface FileSystemAttributes {
|
||||
/**
|
||||
* The security group of the file system
|
||||
*/
|
||||
readonly securityGroup: ec2.ISecurityGroup;
|
||||
/**
|
||||
* The File System's ID.
|
||||
*
|
||||
* @default - determined based on fileSystemArn
|
||||
*/
|
||||
readonly fileSystemId?: string;
|
||||
/**
|
||||
* The File System's Arn.
|
||||
*
|
||||
* @default - determined based on fileSystemId
|
||||
*/
|
||||
readonly fileSystemArn?: string;
|
||||
}
|
||||
/**
|
||||
* Properties for the ReplicationConfiguration.
|
||||
*/
|
||||
export interface ReplicationConfigurationProps {
|
||||
/**
|
||||
* The existing destination file system for the replication.
|
||||
*
|
||||
* @default - None
|
||||
*/
|
||||
readonly destinationFileSystem?: IFileSystemRef;
|
||||
/**
|
||||
* AWS KMS key used to protect the encrypted file system.
|
||||
*
|
||||
* @default - use service-managed KMS key for Amazon EFS
|
||||
*/
|
||||
readonly kmsKey?: kms.IKey;
|
||||
/**
|
||||
* The AWS Region in which the destination file system is located.
|
||||
*
|
||||
* @default - the region of the stack
|
||||
*/
|
||||
readonly region?: string;
|
||||
/**
|
||||
* The availability zone name of the destination file system.
|
||||
* One zone file system is used as the destination file system when this property is set.
|
||||
*
|
||||
* @default - no availability zone is set
|
||||
*/
|
||||
readonly availabilityZone?: string;
|
||||
}
|
||||
/**
|
||||
* Properties for configuring ReplicationConfiguration to replicate
|
||||
* to a new One Zone file system.
|
||||
*/
|
||||
export interface OneZoneFileSystemProps {
|
||||
/**
|
||||
* AWS KMS key used to protect the encrypted file system.
|
||||
*
|
||||
* @default - use service-managed KMS key for Amazon EFS
|
||||
*/
|
||||
readonly kmsKey?: kms.IKey;
|
||||
/**
|
||||
* The AWS Region in which the destination file system is located.
|
||||
*/
|
||||
readonly region: string;
|
||||
/**
|
||||
* The availability zone name of the destination file system.
|
||||
* One zone file system is used as the destination file system when this property is set.
|
||||
*/
|
||||
readonly availabilityZone: string;
|
||||
}
|
||||
/**
|
||||
* Properties for configuring ReplicationConfiguration to replicate
|
||||
* to a new Regional file system.
|
||||
*/
|
||||
export interface RegionalFileSystemProps {
|
||||
/**
|
||||
* AWS KMS key used to protect the encrypted file system.
|
||||
*
|
||||
* @default - use service-managed KMS key for Amazon EFS
|
||||
*/
|
||||
readonly kmsKey?: kms.IKey;
|
||||
/**
|
||||
* The AWS Region in which the destination file system is located.
|
||||
*
|
||||
* @default - the region of the stack
|
||||
*/
|
||||
readonly region?: string;
|
||||
}
|
||||
/**
|
||||
* Properties for configuring ReplicationConfiguration to replicate
|
||||
* to an existing file system.
|
||||
*/
|
||||
export interface ExistingFileSystemProps {
|
||||
/**
|
||||
* The existing destination file system for the replication.
|
||||
*/
|
||||
readonly destinationFileSystem: IFileSystemRef;
|
||||
}
|
||||
/**
|
||||
* EFS Replication Configuration
|
||||
*/
|
||||
export declare abstract class ReplicationConfiguration {
|
||||
/**
|
||||
* Specify the existing destination file system for the replication.
|
||||
*
|
||||
* @param destinationFileSystem The existing destination file system for the replication
|
||||
*/
|
||||
static existingFileSystem(destinationFileSystem: IFileSystemRef): ReplicationConfiguration;
|
||||
/**
|
||||
* Create a new regional destination file system for the replication.
|
||||
*
|
||||
* @param region The AWS Region in which the destination file system is located. Default is the region of the stack.
|
||||
* @param kmsKey AWS KMS key used to protect the encrypted file system. Default is service-managed KMS key for Amazon EFS.
|
||||
*/
|
||||
static regionalFileSystem(region?: string, kmsKey?: kms.IKey): ReplicationConfiguration;
|
||||
/**
|
||||
* Create a new one zone destination file system for the replication.
|
||||
*
|
||||
* @param region The AWS Region in which the specified availability zone belongs to.
|
||||
* @param availabilityZone The availability zone name of the destination file system.
|
||||
* @param kmsKey AWS KMS key used to protect the encrypted file system. Default is service-managed KMS key for Amazon EFS.
|
||||
*/
|
||||
static oneZoneFileSystem(region: string, availabilityZone: string, kmsKey?: kms.IKey): ReplicationConfiguration;
|
||||
private readonly _destinationFileSystem?;
|
||||
/**
|
||||
* The existing destination file system for the replication.
|
||||
*/
|
||||
get destinationFileSystem(): IFileSystem | undefined;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
get _destinationFileSystemRef(): IFileSystemRef | undefined;
|
||||
/**
|
||||
* AWS KMS key used to protect the encrypted file system.
|
||||
*/
|
||||
readonly kmsKey?: kms.IKey;
|
||||
/**
|
||||
* The AWS Region in which the destination file system is located.
|
||||
*/
|
||||
readonly region?: string;
|
||||
/**
|
||||
* The availability zone name of the destination file system.
|
||||
* One zone file system is used as the destination file system when this property is set.
|
||||
*/
|
||||
readonly availabilityZone?: string;
|
||||
constructor(options: ReplicationConfigurationProps);
|
||||
}
|
||||
declare abstract class FileSystemBase extends Resource implements IFileSystem {
|
||||
/**
|
||||
* The security groups/rules used to allow network connections to the file system.
|
||||
*/
|
||||
abstract readonly connections: ec2.Connections;
|
||||
/**
|
||||
* @attribute
|
||||
*/
|
||||
abstract readonly fileSystemId: string;
|
||||
/**
|
||||
* @attribute
|
||||
*/
|
||||
abstract readonly fileSystemArn: string;
|
||||
/**
|
||||
* Dependable that can be depended upon to ensure the mount targets of the filesystem are ready
|
||||
*/
|
||||
abstract readonly mountTargetsAvailable: IDependable;
|
||||
get fileSystemRef(): FileSystemReference;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
protected _resource?: CfnFileSystem;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
protected _fileSystemPolicy?: iam.PolicyDocument;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
protected _grantedClient: boolean;
|
||||
/**
|
||||
* Grant the actions defined in actions to the given grantee
|
||||
* on this File System resource.
|
||||
*
|
||||
* [disable-awslint:no-grants]
|
||||
*
|
||||
* @param grantee Principal to grant right to
|
||||
* @param actions The actions to grant
|
||||
*/
|
||||
grant(grantee: iam.IGrantable, ...actions: string[]): iam.Grant;
|
||||
/**
|
||||
* Grant the client actions defined in actions to the given grantee on this File System resource.
|
||||
* If this method is used and the allowAnonymousAccess props are not specified,
|
||||
* anonymous access to this file system is prohibited.
|
||||
*
|
||||
* @param grantee The principal to grant right to
|
||||
* @param actions The client actions to grant
|
||||
* @param conditions The conditions to grant
|
||||
*/
|
||||
private _grantClient;
|
||||
/**
|
||||
* Grant read permissions for this file system to an IAM principal.
|
||||
*
|
||||
* [disable-awslint:no-grants]
|
||||
*
|
||||
* @param grantee The principal to grant read to
|
||||
*/
|
||||
grantRead(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* Grant read and write permissions for this file system to an IAM principal.
|
||||
*
|
||||
* [disable-awslint:no-grants]
|
||||
*
|
||||
* @param grantee The principal to grant read and write to
|
||||
*/
|
||||
grantReadWrite(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* As root user, grant read and write permissions for this file system to an IAM principal.
|
||||
*
|
||||
* [disable-awslint:no-grants]
|
||||
*
|
||||
* @param grantee The principal to grant root access to
|
||||
*/
|
||||
grantRootAccess(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* Adds a statement to the resource policy associated with this file system.
|
||||
* A resource policy will be automatically created upon the first call to `addToResourcePolicy`.
|
||||
*
|
||||
* Note that this does not work with imported file systems.
|
||||
*
|
||||
* @param statement The policy statement to add
|
||||
*/
|
||||
addToResourcePolicy(statement: iam.PolicyStatement): iam.AddToResourcePolicyResult;
|
||||
}
|
||||
/**
|
||||
* The Elastic File System implementation of IFileSystem.
|
||||
* It creates a new, empty file system in Amazon Elastic File System (Amazon EFS).
|
||||
* It also creates mount target (AWS::EFS::MountTarget) implicitly to mount the
|
||||
* EFS file system on an Amazon Elastic Compute Cloud (Amazon EC2) instance or another resource.
|
||||
*
|
||||
* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html
|
||||
*
|
||||
* @resource AWS::EFS::FileSystem
|
||||
*/
|
||||
export declare class FileSystem extends FileSystemBase {
|
||||
/**
|
||||
* Uniquely identifies this class.
|
||||
*/
|
||||
static readonly PROPERTY_INJECTION_ID: string;
|
||||
/**
|
||||
* The default port File System listens on.
|
||||
*/
|
||||
static readonly DEFAULT_PORT: number;
|
||||
/**
|
||||
* Import an existing File System from the given properties.
|
||||
*/
|
||||
static fromFileSystemAttributes(scope: Construct, id: string, attrs: FileSystemAttributes): IFileSystem;
|
||||
/**
|
||||
* The security groups/rules used to allow network connections to the file system.
|
||||
*/
|
||||
readonly connections: ec2.Connections;
|
||||
/**
|
||||
* @attribute
|
||||
*/
|
||||
readonly fileSystemId: string;
|
||||
/**
|
||||
* @attribute
|
||||
*/
|
||||
readonly fileSystemArn: string;
|
||||
readonly mountTargetsAvailable: IDependable;
|
||||
private readonly _mountTargetsAvailable;
|
||||
private readonly props;
|
||||
/**
|
||||
* Constructor for creating a new EFS FileSystem.
|
||||
*/
|
||||
constructor(scope: Construct, id: string, props: FileSystemProps);
|
||||
private oneZoneValidation;
|
||||
/**
|
||||
* create access point from this filesystem
|
||||
*/
|
||||
addAccessPoint(id: string, accessPointOptions?: AccessPointOptions): AccessPoint;
|
||||
}
|
||||
export {};
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs-file-system.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs-file-system.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1037
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs.generated.d.ts
generated
vendored
Normal file
1037
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs.generated.d.ts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs.generated.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-efs/lib/efs.generated.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3
cdk/node_modules/aws-cdk-lib/aws-efs/lib/index.d.ts
generated
vendored
Normal file
3
cdk/node_modules/aws-cdk-lib/aws-efs/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export * from './access-point';
|
||||
export * from './efs-file-system';
|
||||
export * from './efs.generated';
|
||||
1
cdk/node_modules/aws-cdk-lib/aws-efs/lib/index.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/aws-efs/lib/index.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";var __createBinding=exports&&exports.__createBinding||(Object.create?(function(o,m,k,k2){k2===void 0&&(k2=k);var desc=Object.getOwnPropertyDescriptor(m,k);(!desc||("get"in desc?!m.__esModule:desc.writable||desc.configurable))&&(desc={enumerable:!0,get:function(){return m[k]}}),Object.defineProperty(o,k2,desc)}):(function(o,m,k,k2){k2===void 0&&(k2=k),o[k2]=m[k]})),__exportStar=exports&&exports.__exportStar||function(m,exports2){for(var p in m)p!=="default"&&!Object.prototype.hasOwnProperty.call(exports2,p)&&__createBinding(exports2,m,p)};Object.defineProperty(exports,"__esModule",{value:!0});var _noFold;exports.AccessPoint=void 0,Object.defineProperty(exports,_noFold="AccessPoint",{enumerable:!0,configurable:!0,get:()=>{var value=require("./access-point").AccessPoint;return Object.defineProperty(exports,_noFold="AccessPoint",{enumerable:!0,configurable:!0,value}),value}}),exports.LifecyclePolicy=void 0,Object.defineProperty(exports,_noFold="LifecyclePolicy",{enumerable:!0,configurable:!0,get:()=>{var value=require("./efs-file-system").LifecyclePolicy;return Object.defineProperty(exports,_noFold="LifecyclePolicy",{enumerable:!0,configurable:!0,value}),value}}),exports.OutOfInfrequentAccessPolicy=void 0,Object.defineProperty(exports,_noFold="OutOfInfrequentAccessPolicy",{enumerable:!0,configurable:!0,get:()=>{var value=require("./efs-file-system").OutOfInfrequentAccessPolicy;return Object.defineProperty(exports,_noFold="OutOfInfrequentAccessPolicy",{enumerable:!0,configurable:!0,value}),value}}),exports.PerformanceMode=void 0,Object.defineProperty(exports,_noFold="PerformanceMode",{enumerable:!0,configurable:!0,get:()=>{var value=require("./efs-file-system").PerformanceMode;return Object.defineProperty(exports,_noFold="PerformanceMode",{enumerable:!0,configurable:!0,value}),value}}),exports.ThroughputMode=void 0,Object.defineProperty(exports,_noFold="ThroughputMode",{enumerable:!0,configurable:!0,get:()=>{var value=require("./efs-file-system").ThroughputMode;return Object.defineProperty(exports,_noFold="ThroughputMode",{enumerable:!0,configurable:!0,value}),value}}),exports.ReplicationOverwriteProtection=void 0,Object.defineProperty(exports,_noFold="ReplicationOverwriteProtection",{enumerable:!0,configurable:!0,get:()=>{var value=require("./efs-file-system").ReplicationOverwriteProtection;return Object.defineProperty(exports,_noFold="ReplicationOverwriteProtection",{enumerable:!0,configurable:!0,value}),value}}),exports.ReplicationConfiguration=void 0,Object.defineProperty(exports,_noFold="ReplicationConfiguration",{enumerable:!0,configurable:!0,get:()=>{var value=require("./efs-file-system").ReplicationConfiguration;return Object.defineProperty(exports,_noFold="ReplicationConfiguration",{enumerable:!0,configurable:!0,value}),value}}),exports.FileSystem=void 0,Object.defineProperty(exports,_noFold="FileSystem",{enumerable:!0,configurable:!0,get:()=>{var value=require("./efs-file-system").FileSystem;return Object.defineProperty(exports,_noFold="FileSystem",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnAccessPoint=void 0,Object.defineProperty(exports,_noFold="CfnAccessPoint",{enumerable:!0,configurable:!0,get:()=>{var value=require("./efs.generated").CfnAccessPoint;return Object.defineProperty(exports,_noFold="CfnAccessPoint",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnFileSystem=void 0,Object.defineProperty(exports,_noFold="CfnFileSystem",{enumerable:!0,configurable:!0,get:()=>{var value=require("./efs.generated").CfnFileSystem;return Object.defineProperty(exports,_noFold="CfnFileSystem",{enumerable:!0,configurable:!0,value}),value}}),exports.CfnMountTarget=void 0,Object.defineProperty(exports,_noFold="CfnMountTarget",{enumerable:!0,configurable:!0,get:()=>{var value=require("./efs.generated").CfnMountTarget;return Object.defineProperty(exports,_noFold="CfnMountTarget",{enumerable:!0,configurable:!0,value}),value}});
|
||||
Reference in New Issue
Block a user