agent-claw: automated task changes
This commit is contained in:
33
cdk/node_modules/aws-cdk-lib/aws-opensearchservice/lib/opensearchservice-grants.generated.d.ts
generated
vendored
Normal file
33
cdk/node_modules/aws-cdk-lib/aws-opensearchservice/lib/opensearchservice-grants.generated.d.ts
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
import * as opensearchservice from "./opensearchservice.generated";
|
||||
import * as iam from "../../aws-iam";
|
||||
import * as cdk from "../../core/lib";
|
||||
/**
|
||||
* Collection of grant methods for a IDomainRef
|
||||
*/
|
||||
export declare class DomainGrants {
|
||||
/**
|
||||
* Creates grants for DomainGrants
|
||||
*/
|
||||
static fromDomain(resource: opensearchservice.IDomainRef): DomainGrants;
|
||||
protected readonly resource: opensearchservice.IDomainRef;
|
||||
private constructor();
|
||||
/**
|
||||
* Grant the given identity custom permissions
|
||||
*/
|
||||
actions(grantee: iam.IGrantable, actions: Array<string>, options?: cdk.PermissionsOptions): iam.Grant;
|
||||
/**
|
||||
* Grant read permissions for this domain and its contents to an IAM
|
||||
* principal (Role/Group/User).
|
||||
*/
|
||||
read(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* Grant write permissions for this domain and its contents to an IAM
|
||||
* principal (Role/Group/User).
|
||||
*/
|
||||
write(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* Grant read/write permissions for this domain and its contents to an IAM
|
||||
* principal (Role/Group/User).
|
||||
*/
|
||||
readWrite(grantee: iam.IGrantable): iam.Grant;
|
||||
}
|
||||
Reference in New Issue
Block a user