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,110 @@
import { IEnvironmentAware } from "../environment-aware";
import * as constructs from "constructs";
/**
* Indicates that this resource can be referenced as a AgentSpace.
*
* @stability experimental
*/
export interface IAgentSpaceRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a AgentSpace resource.
*/
readonly agentSpaceRef: AgentSpaceReference;
}
/**
* A reference to a AgentSpace resource.
*
* @struct
* @stability external
*/
export interface AgentSpaceReference {
/**
* The AgentSpaceId of the AgentSpace resource.
*/
readonly agentSpaceId: string;
/**
* The ARN of the AgentSpace resource.
*/
readonly agentSpaceArn: string;
}
/**
* Indicates that this resource can be referenced as a Association.
*
* @stability experimental
*/
export interface IAssociationRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Association resource.
*/
readonly associationRef: AssociationReference;
}
/**
* A reference to a Association resource.
*
* @struct
* @stability external
*/
export interface AssociationReference {
/**
* The AgentSpaceId of the Association resource.
*/
readonly agentSpaceId: string;
/**
* The AssociationId of the Association resource.
*/
readonly associationId: string;
}
/**
* Indicates that this resource can be referenced as a Service.
*
* @stability experimental
*/
export interface IServiceRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Service resource.
*/
readonly serviceRef: ServiceReference;
}
/**
* A reference to a Service resource.
*
* @struct
* @stability external
*/
export interface ServiceReference {
/**
* The ServiceId of the Service resource.
*/
readonly serviceId: string;
/**
* The ARN of the Service resource.
*/
readonly serviceArn: string;
}
/**
* Indicates that this resource can be referenced as a PrivateConnection.
*
* @stability experimental
*/
export interface IPrivateConnectionRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a PrivateConnection resource.
*/
readonly privateConnectionRef: PrivateConnectionReference;
}
/**
* A reference to a PrivateConnection resource.
*
* @struct
* @stability external
*/
export interface PrivateConnectionReference {
/**
* The Name of the PrivateConnection resource.
*/
readonly privateConnectionName: string;
/**
* The ARN of the PrivateConnection resource.
*/
readonly privateConnectionArn: string;
}