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,121 @@
import { IEnvironmentAware } from "../environment-aware";
import * as constructs from "constructs";
/**
* Indicates that this resource can be referenced as a Channel.
*
* @stability experimental
*/
export interface IChannelRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Channel resource.
*/
readonly channelRef: ChannelReference;
}
/**
* A reference to a Channel resource.
*
* @struct
* @stability external
*/
export interface ChannelReference {
/**
* The ChannelArn of the Channel resource.
*/
readonly channelArn: string;
}
/**
* Indicates that this resource can be referenced as a EventDataStore.
*
* @stability experimental
*/
export interface IEventDataStoreRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a EventDataStore resource.
*/
readonly eventDataStoreRef: EventDataStoreReference;
}
/**
* A reference to a EventDataStore resource.
*
* @struct
* @stability external
*/
export interface EventDataStoreReference {
/**
* The EventDataStoreArn of the EventDataStore resource.
*/
readonly eventDataStoreArn: string;
}
/**
* Indicates that this resource can be referenced as a ResourcePolicy.
*
* @stability experimental
*/
export interface IResourcePolicyRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a ResourcePolicy resource.
*/
readonly resourcePolicyRef: ResourcePolicyReference;
}
/**
* A reference to a ResourcePolicy resource.
*
* @struct
* @stability external
*/
export interface ResourcePolicyReference {
/**
* The ResourceArn of the ResourcePolicy resource.
*/
readonly resourceArn: string;
}
/**
* Indicates that this resource can be referenced as a Trail.
*
* @stability experimental
*/
export interface ITrailRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Trail resource.
*/
readonly trailRef: TrailReference;
}
/**
* A reference to a Trail resource.
*
* @struct
* @stability external
*/
export interface TrailReference {
/**
* The TrailName of the Trail resource.
*/
readonly trailName: string;
/**
* The ARN of the Trail resource.
*/
readonly trailArn: string;
}
/**
* Indicates that this resource can be referenced as a Dashboard.
*
* @stability experimental
*/
export interface IDashboardRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Dashboard resource.
*/
readonly dashboardRef: DashboardReference;
}
/**
* A reference to a Dashboard resource.
*
* @struct
* @stability external
*/
export interface DashboardReference {
/**
* The DashboardArn of the Dashboard resource.
*/
readonly dashboardArn: string;
}