agent-claw: automated task changes
This commit is contained in:
71
cdk/node_modules/aws-cdk-lib/custom-resources/lib/custom-resource-config/custom-resource-config.d.ts
generated
vendored
Normal file
71
cdk/node_modules/aws-cdk-lib/custom-resources/lib/custom-resource-config/custom-resource-config.d.ts
generated
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
import type { IConstruct } from 'constructs';
|
||||
import type * as lambda from '../../../aws-lambda';
|
||||
import * as logs from '../../../aws-logs';
|
||||
import type { IAspect, RemovalPolicy } from '../../../core/lib';
|
||||
export declare const CUSTOM_RESOURCE_PROVIDER = "aws:cdk:is-custom-resource-handler-customResourceProvider";
|
||||
export declare const CUSTOM_RESOURCE_SINGLETON = "aws:cdk:is-custom-resource-handler-singleton";
|
||||
export declare const CUSTOM_RESOURCE_SINGLETON_LOG_GROUP = "aws:cdk:is-custom-resource-handler-logGroup";
|
||||
export declare const CUSTOM_RESOURCE_SINGLETON_LOG_RETENTION = "aws:cdk:is-custom-resource-handler-logRetention";
|
||||
export declare const CUSTOM_RESOURCE_RUNTIME_FAMILY = "aws:cdk:is-custom-resource-handler-runtime-family";
|
||||
/**
|
||||
* Manages AWS-vended Custom Resources
|
||||
*
|
||||
* This feature is currently experimental.
|
||||
*/
|
||||
export declare class CustomResourceConfig {
|
||||
private readonly scope;
|
||||
/**
|
||||
* Returns the CustomResourceConfig for this scope.
|
||||
*/
|
||||
static of(scope: IConstruct): CustomResourceConfig;
|
||||
private constructor();
|
||||
/**
|
||||
* Set the log retention of AWS-vended custom resource lambdas.
|
||||
*
|
||||
* This feature is currently experimental.
|
||||
*/
|
||||
addLogRetentionLifetime(retention: logs.RetentionDays): void;
|
||||
/**
|
||||
* Set the removal policy of AWS-vended custom resource logGroup.
|
||||
*
|
||||
* This feature is currently experimental.
|
||||
*/
|
||||
addRemovalPolicy(removalPolicy: RemovalPolicy): void;
|
||||
/**
|
||||
* Set the runtime version on AWS-vended custom resources lambdas.
|
||||
*
|
||||
* This feature is currently experimental.
|
||||
*/
|
||||
addLambdaRuntime(lambdaRuntime: lambda.Runtime): void;
|
||||
}
|
||||
/**
|
||||
* Manages log retention for AWS-vended custom resources.
|
||||
*
|
||||
* This feature is currently experimental.
|
||||
*/
|
||||
export declare class CustomResourceLogRetention implements IAspect {
|
||||
private readonly logRetention;
|
||||
constructor(setLogRetention: logs.RetentionDays);
|
||||
visit(node: IConstruct): void;
|
||||
private createLogGroup;
|
||||
}
|
||||
/**
|
||||
* Manages removal policy for AWS-vended custom resources.
|
||||
*
|
||||
* This feature is currently experimental.
|
||||
*/
|
||||
export declare class CustomResourceRemovalPolicy implements IAspect {
|
||||
private readonly removalPolicy;
|
||||
constructor(removalPolicy: RemovalPolicy);
|
||||
visit(node: IConstruct): void;
|
||||
}
|
||||
/**
|
||||
* Manages lambda runtime for AWS-vended custom resources.
|
||||
*
|
||||
* This feature is currently experimental.
|
||||
*/
|
||||
export declare class CustomResourceLambdaRuntime implements IAspect {
|
||||
private readonly lambdaRuntime;
|
||||
constructor(lambdaRuntime: lambda.Runtime);
|
||||
visit(node: IConstruct): void;
|
||||
}
|
||||
1
cdk/node_modules/aws-cdk-lib/custom-resources/lib/custom-resource-config/custom-resource-config.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/custom-resources/lib/custom-resource-config/custom-resource-config.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
cdk/node_modules/aws-cdk-lib/custom-resources/lib/custom-resource-config/index.d.ts
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/custom-resources/lib/custom-resource-config/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from './custom-resource-config';
|
||||
1
cdk/node_modules/aws-cdk-lib/custom-resources/lib/custom-resource-config/index.js
generated
vendored
Normal file
1
cdk/node_modules/aws-cdk-lib/custom-resources/lib/custom-resource-config/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.CUSTOM_RESOURCE_PROVIDER=void 0,Object.defineProperty(exports,_noFold="CUSTOM_RESOURCE_PROVIDER",{enumerable:!0,configurable:!0,get:()=>{var value=require("./custom-resource-config").CUSTOM_RESOURCE_PROVIDER;return Object.defineProperty(exports,_noFold="CUSTOM_RESOURCE_PROVIDER",{enumerable:!0,configurable:!0,value}),value}}),exports.CUSTOM_RESOURCE_SINGLETON=void 0,Object.defineProperty(exports,_noFold="CUSTOM_RESOURCE_SINGLETON",{enumerable:!0,configurable:!0,get:()=>{var value=require("./custom-resource-config").CUSTOM_RESOURCE_SINGLETON;return Object.defineProperty(exports,_noFold="CUSTOM_RESOURCE_SINGLETON",{enumerable:!0,configurable:!0,value}),value}}),exports.CUSTOM_RESOURCE_SINGLETON_LOG_GROUP=void 0,Object.defineProperty(exports,_noFold="CUSTOM_RESOURCE_SINGLETON_LOG_GROUP",{enumerable:!0,configurable:!0,get:()=>{var value=require("./custom-resource-config").CUSTOM_RESOURCE_SINGLETON_LOG_GROUP;return Object.defineProperty(exports,_noFold="CUSTOM_RESOURCE_SINGLETON_LOG_GROUP",{enumerable:!0,configurable:!0,value}),value}}),exports.CUSTOM_RESOURCE_SINGLETON_LOG_RETENTION=void 0,Object.defineProperty(exports,_noFold="CUSTOM_RESOURCE_SINGLETON_LOG_RETENTION",{enumerable:!0,configurable:!0,get:()=>{var value=require("./custom-resource-config").CUSTOM_RESOURCE_SINGLETON_LOG_RETENTION;return Object.defineProperty(exports,_noFold="CUSTOM_RESOURCE_SINGLETON_LOG_RETENTION",{enumerable:!0,configurable:!0,value}),value}}),exports.CUSTOM_RESOURCE_RUNTIME_FAMILY=void 0,Object.defineProperty(exports,_noFold="CUSTOM_RESOURCE_RUNTIME_FAMILY",{enumerable:!0,configurable:!0,get:()=>{var value=require("./custom-resource-config").CUSTOM_RESOURCE_RUNTIME_FAMILY;return Object.defineProperty(exports,_noFold="CUSTOM_RESOURCE_RUNTIME_FAMILY",{enumerable:!0,configurable:!0,value}),value}}),exports.CustomResourceConfig=void 0,Object.defineProperty(exports,_noFold="CustomResourceConfig",{enumerable:!0,configurable:!0,get:()=>{var value=require("./custom-resource-config").CustomResourceConfig;return Object.defineProperty(exports,_noFold="CustomResourceConfig",{enumerable:!0,configurable:!0,value}),value}}),exports.CustomResourceLogRetention=void 0,Object.defineProperty(exports,_noFold="CustomResourceLogRetention",{enumerable:!0,configurable:!0,get:()=>{var value=require("./custom-resource-config").CustomResourceLogRetention;return Object.defineProperty(exports,_noFold="CustomResourceLogRetention",{enumerable:!0,configurable:!0,value}),value}}),exports.CustomResourceRemovalPolicy=void 0,Object.defineProperty(exports,_noFold="CustomResourceRemovalPolicy",{enumerable:!0,configurable:!0,get:()=>{var value=require("./custom-resource-config").CustomResourceRemovalPolicy;return Object.defineProperty(exports,_noFold="CustomResourceRemovalPolicy",{enumerable:!0,configurable:!0,value}),value}}),exports.CustomResourceLambdaRuntime=void 0,Object.defineProperty(exports,_noFold="CustomResourceLambdaRuntime",{enumerable:!0,configurable:!0,get:()=>{var value=require("./custom-resource-config").CustomResourceLambdaRuntime;return Object.defineProperty(exports,_noFold="CustomResourceLambdaRuntime",{enumerable:!0,configurable:!0,value}),value}});
|
||||
Reference in New Issue
Block a user