agent-claw: automated task changes
This commit is contained in:
25
cdk/node_modules/aws-cdk-lib/aws-logs/lib/field-index-policy.d.ts
generated
vendored
Normal file
25
cdk/node_modules/aws-cdk-lib/aws-logs/lib/field-index-policy.d.ts
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { Construct } from 'constructs';
|
||||
/**
|
||||
* Creates a field index policy for CloudWatch Logs log groups.
|
||||
*/
|
||||
export declare class FieldIndexPolicy {
|
||||
private readonly fieldIndexPolicyProps;
|
||||
constructor(props: FieldIndexPolicyProps);
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
_bind(_scope: Construct): {
|
||||
Fields: string[];
|
||||
};
|
||||
}
|
||||
/**
|
||||
* Properties for creating field index policies
|
||||
*/
|
||||
export interface FieldIndexPolicyProps {
|
||||
/**
|
||||
* List of fields to index in log events.
|
||||
*
|
||||
* @default no fields
|
||||
*/
|
||||
readonly fields: string[];
|
||||
}
|
||||
Reference in New Issue
Block a user