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

View File

@@ -0,0 +1,94 @@
import { IEnvironmentAware } from "../environment-aware";
import * as constructs from "constructs";
/**
* Indicates that this resource can be referenced as a Accelerator.
*
* @stability experimental
*/
export interface IAcceleratorRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Accelerator resource.
*/
readonly acceleratorRef: AcceleratorReference;
}
/**
* A reference to a Accelerator resource.
*
* @struct
* @stability external
*/
export interface AcceleratorReference {
/**
* The AcceleratorArn of the Accelerator resource.
*/
readonly acceleratorArn: string;
}
/**
* Indicates that this resource can be referenced as a EndpointGroup.
*
* @stability experimental
*/
export interface IEndpointGroupRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a EndpointGroup resource.
*/
readonly endpointGroupRef: EndpointGroupReference;
}
/**
* A reference to a EndpointGroup resource.
*
* @struct
* @stability external
*/
export interface EndpointGroupReference {
/**
* The EndpointGroupArn of the EndpointGroup resource.
*/
readonly endpointGroupArn: string;
}
/**
* Indicates that this resource can be referenced as a Listener.
*
* @stability experimental
*/
export interface IListenerRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Listener resource.
*/
readonly listenerRef: ListenerReference;
}
/**
* A reference to a Listener resource.
*
* @struct
* @stability external
*/
export interface ListenerReference {
/**
* The ListenerArn of the Listener resource.
*/
readonly listenerArn: string;
}
/**
* Indicates that this resource can be referenced as a CrossAccountAttachment.
*
* @stability experimental
*/
export interface ICrossAccountAttachmentRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a CrossAccountAttachment resource.
*/
readonly crossAccountAttachmentRef: CrossAccountAttachmentReference;
}
/**
* A reference to a CrossAccountAttachment resource.
*
* @struct
* @stability external
*/
export interface CrossAccountAttachmentReference {
/**
* The AttachmentArn of the CrossAccountAttachment resource.
*/
readonly attachmentArn: string;
}