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,106 @@
import { IEnvironmentAware } from "../environment-aware";
import * as constructs from "constructs";
/**
* Indicates that this resource can be referenced as a Config.
*
* @stability experimental
*/
export interface IConfigRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Config resource.
*/
readonly configRef: ConfigReference;
}
/**
* A reference to a Config resource.
*
* @struct
* @stability external
*/
export interface ConfigReference {
/**
* The Arn of the Config resource.
*/
readonly configArn: string;
}
/**
* Indicates that this resource can be referenced as a DataflowEndpointGroup.
*
* @stability experimental
*/
export interface IDataflowEndpointGroupRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a DataflowEndpointGroup resource.
*/
readonly dataflowEndpointGroupRef: DataflowEndpointGroupReference;
}
/**
* A reference to a DataflowEndpointGroup resource.
*
* @struct
* @stability external
*/
export interface DataflowEndpointGroupReference {
/**
* The Id of the DataflowEndpointGroup resource.
*/
readonly dataflowEndpointGroupId: string;
/**
* The ARN of the DataflowEndpointGroup resource.
*/
readonly dataflowEndpointGroupArn: string;
}
/**
* Indicates that this resource can be referenced as a MissionProfile.
*
* @stability experimental
*/
export interface IMissionProfileRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a MissionProfile resource.
*/
readonly missionProfileRef: MissionProfileReference;
}
/**
* A reference to a MissionProfile resource.
*
* @struct
* @stability external
*/
export interface MissionProfileReference {
/**
* The Id of the MissionProfile resource.
*/
readonly missionProfileId: string;
/**
* The Arn of the MissionProfile resource.
*/
readonly missionProfileArn: string;
}
/**
* Indicates that this resource can be referenced as a DataflowEndpointGroupV2.
*
* @stability experimental
*/
export interface IDataflowEndpointGroupV2Ref extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a DataflowEndpointGroupV2 resource.
*/
readonly dataflowEndpointGroupV2Ref: DataflowEndpointGroupV2Reference;
}
/**
* A reference to a DataflowEndpointGroupV2 resource.
*
* @struct
* @stability external
*/
export interface DataflowEndpointGroupV2Reference {
/**
* The Id of the DataflowEndpointGroupV2 resource.
*/
readonly dataflowEndpointGroupV2Id: string;
/**
* The ARN of the DataflowEndpointGroupV2 resource.
*/
readonly dataflowEndpointGroupV2Arn: string;
}