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,33 @@
import type { CfnRegistry } from '../../aws-glue';
import type { IEventSourceMapping, IFunction } from '../../aws-lambda/lib';
import type { ISchemaRegistry, KafkaSchemaRegistryConfig, SchemaRegistryProps } from '../../aws-lambda/lib/schema-registry';
/**
* Properties for glue schema registry configuration.
*/
export interface GlueSchemaRegistryProps extends SchemaRegistryProps {
/**
* The CfnRegistry reference of your glue schema registry. If used, schemaRegistryArn will be ignored.
*
* @default - none
*/
readonly schemaRegistry?: CfnRegistry;
/**
* The Arn of your glue schema registry.
*
* @default - none
*/
readonly schemaRegistryArn?: string;
}
/**
* Glue schema registry configuration for a Lambda event source.
*/
export declare class GlueSchemaRegistry implements ISchemaRegistry {
private readonly props;
constructor(props: GlueSchemaRegistryProps);
/**
* Returns a schema registry configuration.
*/
bind(_target: IEventSourceMapping, targetHandler: IFunction): KafkaSchemaRegistryConfig;
private getRegistryProps;
private getSchemaRegistryPolicies;
}