agent-claw: automated task changes

This commit is contained in:
daniel
2026-05-06 18:55:16 -05:00
parent 38905bb1e9
commit 732b00fb66
8494 changed files with 2018127 additions and 4 deletions

13
cdk/node_modules/aws-cdk-lib/aws-ssm/lib/util.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import type { IConstruct } from 'constructs';
export declare const AUTOGEN_MARKER = "$$autogen$$";
export interface ArnForParameterNameOptions {
readonly physicalName?: string;
readonly simpleName?: boolean;
}
/**
* Renders an ARN for an SSM parameter given a parameter name.
* @param scope definition scope
* @param parameterName the parameter name to include in the ARN
* @param physicalName optional physical name specified by the user (to auto-detect separator)
*/
export declare function arnForParameterName(scope: IConstruct, parameterName: string, options?: ArnForParameterNameOptions): string;