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

1
cdk/node_modules/aws-cdk-lib/aws-uxc/lib/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from './uxc.generated';

1
cdk/node_modules/aws-cdk-lib/aws-uxc/lib/index.js generated vendored Normal file
View 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.CfnAccountCustomization=void 0,Object.defineProperty(exports,_noFold="CfnAccountCustomization",{enumerable:!0,configurable:!0,get:()=>{var value=require("./uxc.generated").CfnAccountCustomization;return Object.defineProperty(exports,_noFold="CfnAccountCustomization",{enumerable:!0,configurable:!0,value}),value}});

View File

@@ -0,0 +1,119 @@
import * as cdk from "../../core/lib";
import * as constructs from "constructs";
import * as cfn_parse from "../../core/lib/helpers-internal";
import { AccountCustomizationReference, IAccountCustomizationRef } from "../../interfaces/generated/aws-uxc-interfaces.generated";
/**
* Resource schema for managing AWS account-level UX customization settings, including account color, visible services, and visible regions.
*
* @cloudformationResource AWS::UXC::AccountCustomization
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-uxc-accountcustomization.html
*/
export declare class CfnAccountCustomization extends cdk.CfnResource implements cdk.IInspectable, IAccountCustomizationRef {
/**
* The CloudFormation resource type name for this resource class.
*/
static readonly CFN_RESOURCE_TYPE_NAME: string;
/**
* Build a CfnAccountCustomization from CloudFormation properties
*
* A factory method that creates a new instance of this class from an object
* containing the CloudFormation properties of this resource.
* Used in the @aws-cdk/cloudformation-include module.
*
* @internal
*/
static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnAccountCustomization;
/**
* Checks whether the given object is a CfnAccountCustomization
*/
static isCfnAccountCustomization(x: any): x is CfnAccountCustomization;
/**
* The color theme assigned to the account for visual identification in the AWS Console.
*/
private _accountColor?;
/**
* A list of AWS region identifiers visible to the account in the AWS Console.
*/
private _visibleRegions?;
/**
* A list of AWS service identifiers visible to the account in the AWS Console.
*/
private _visibleServices?;
protected readonly cfnPropertyNames: Record<string, string>;
/**
* Create a new `AWS::UXC::AccountCustomization`.
*
* @param scope Scope in which this resource is defined
* @param id Construct identifier for this resource (unique in its scope)
* @param props Resource properties
*/
constructor(scope: constructs.Construct, id: string, props?: CfnAccountCustomizationProps);
get accountCustomizationRef(): AccountCustomizationReference;
/**
* The color theme assigned to the account for visual identification in the AWS Console.
*/
get accountColor(): string | undefined;
/**
* The color theme assigned to the account for visual identification in the AWS Console.
*/
set accountColor(value: string | undefined);
/**
* A list of AWS region identifiers visible to the account in the AWS Console.
*/
get visibleRegions(): Array<string> | undefined;
/**
* A list of AWS region identifiers visible to the account in the AWS Console.
*/
set visibleRegions(value: Array<string> | undefined);
/**
* A list of AWS service identifiers visible to the account in the AWS Console.
*/
get visibleServices(): Array<string> | undefined;
/**
* A list of AWS service identifiers visible to the account in the AWS Console.
*/
set visibleServices(value: Array<string> | undefined);
/**
* The AWS account ID that this customization belongs to. This is automatically determined from the caller's identity.
*
* @cloudformationAttribute AccountId
*/
get attrAccountId(): string;
protected get cfnProperties(): Record<string, any>;
/**
* Examines the CloudFormation resource and discloses attributes
*
* @param inspector tree inspector to collect and process attributes
*/
inspect(inspector: cdk.TreeInspector): void;
protected renderProperties(props: Record<string, any>): Record<string, any>;
}
/**
* Properties for defining a `CfnAccountCustomization`
*
* @struct
* @stability external
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-uxc-accountcustomization.html
*/
export interface CfnAccountCustomizationProps {
/**
* The color theme assigned to the account for visual identification in the AWS Console.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-uxc-accountcustomization.html#cfn-uxc-accountcustomization-accountcolor
*/
readonly accountColor?: string;
/**
* A list of AWS region identifiers visible to the account in the AWS Console.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-uxc-accountcustomization.html#cfn-uxc-accountcustomization-visibleregions
*/
readonly visibleRegions?: Array<string>;
/**
* A list of AWS service identifiers visible to the account in the AWS Console.
*
* @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-uxc-accountcustomization.html#cfn-uxc-accountcustomization-visibleservices
*/
readonly visibleServices?: Array<string>;
}
export type { IAccountCustomizationRef, AccountCustomizationReference };

File diff suppressed because one or more lines are too long