agent-claw: automated task changes
This commit is contained in:
31
cdk/node_modules/aws-cdk-lib/aws-elasticsearch/lib/elasticsearch-access-policy.d.ts
generated
vendored
Normal file
31
cdk/node_modules/aws-cdk-lib/aws-elasticsearch/lib/elasticsearch-access-policy.d.ts
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import * as iam from '../../aws-iam';
|
||||
import * as cr from '../../custom-resources';
|
||||
/**
|
||||
* Construction properties for ElasticsearchAccessPolicy
|
||||
*/
|
||||
export interface ElasticsearchAccessPolicyProps {
|
||||
/**
|
||||
* The Elasticsearch Domain name
|
||||
*/
|
||||
readonly domainName: string;
|
||||
/**
|
||||
* The Elasticsearch Domain ARN
|
||||
*/
|
||||
readonly domainArn: string;
|
||||
/**
|
||||
* The access policy statements for the Elasticsearch cluster
|
||||
*/
|
||||
readonly accessPolicies: iam.PolicyStatement[];
|
||||
}
|
||||
/**
|
||||
* Creates LogGroup resource policies.
|
||||
*/
|
||||
export declare class ElasticsearchAccessPolicy extends cr.AwsCustomResource {
|
||||
private accessPolicyStatements;
|
||||
constructor(scope: Construct, id: string, props: ElasticsearchAccessPolicyProps);
|
||||
/**
|
||||
* Add policy statements to the domain access policy
|
||||
*/
|
||||
addAccessPolicies(...accessPolicyStatements: iam.PolicyStatement[]): void;
|
||||
}
|
||||
Reference in New Issue
Block a user