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,98 @@
import { IEnvironmentAware } from "../environment-aware";
import * as constructs from "constructs";
/**
* Indicates that this resource can be referenced as a AwsLogSource.
*
* @stability experimental
*/
export interface IAwsLogSourceRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a AwsLogSource resource.
*/
readonly awsLogSourceRef: AwsLogSourceReference;
}
/**
* A reference to a AwsLogSource resource.
*
* @struct
* @stability external
*/
export interface AwsLogSourceReference {
/**
* The SourceName of the AwsLogSource resource.
*/
readonly sourceName: string;
/**
* The SourceVersion of the AwsLogSource resource.
*/
readonly sourceVersion: string;
}
/**
* Indicates that this resource can be referenced as a DataLake.
*
* @stability experimental
*/
export interface IDataLakeRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a DataLake resource.
*/
readonly dataLakeRef: DataLakeReference;
}
/**
* A reference to a DataLake resource.
*
* @struct
* @stability external
*/
export interface DataLakeReference {
/**
* The Arn of the DataLake resource.
*/
readonly dataLakeArn: string;
}
/**
* Indicates that this resource can be referenced as a Subscriber.
*
* @stability experimental
*/
export interface ISubscriberRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Subscriber resource.
*/
readonly subscriberRef: SubscriberReference;
}
/**
* A reference to a Subscriber resource.
*
* @struct
* @stability external
*/
export interface SubscriberReference {
/**
* The SubscriberArn of the Subscriber resource.
*/
readonly subscriberArn: string;
}
/**
* Indicates that this resource can be referenced as a SubscriberNotification.
*
* @stability experimental
*/
export interface ISubscriberNotificationRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a SubscriberNotification resource.
*/
readonly subscriberNotificationRef: SubscriberNotificationReference;
}
/**
* A reference to a SubscriberNotification resource.
*
* @struct
* @stability external
*/
export interface SubscriberNotificationReference {
/**
* The SubscriberArn of the SubscriberNotification resource.
*/
readonly subscriberArn: string;
}