agent-claw: automated task changes
This commit is contained in:
30
cdk/node_modules/aws-cdk-lib/aws-apigateway/lib/apigateway-grants.generated.d.ts
generated
vendored
Normal file
30
cdk/node_modules/aws-cdk-lib/aws-apigateway/lib/apigateway-grants.generated.d.ts
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
import * as apigateway from "./apigateway.generated";
|
||||
import * as iam from "../../aws-iam";
|
||||
import * as cdk from "../../core/lib";
|
||||
/**
|
||||
* Collection of grant methods for a IApiKeyRef
|
||||
*/
|
||||
export declare class ApiKeyGrants {
|
||||
/**
|
||||
* Creates grants for ApiKeyGrants
|
||||
*/
|
||||
static fromApiKey(resource: apigateway.IApiKeyRef): ApiKeyGrants;
|
||||
protected readonly resource: apigateway.IApiKeyRef;
|
||||
private constructor();
|
||||
/**
|
||||
* Grant the given identity custom permissions
|
||||
*/
|
||||
actions(grantee: iam.IGrantable, actions: Array<string>, options?: cdk.PermissionsOptions): iam.Grant;
|
||||
/**
|
||||
* Permits the IAM principal all read operations through this key
|
||||
*/
|
||||
read(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* Permits the IAM principal all write operations through this key
|
||||
*/
|
||||
write(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* Permits the IAM principal all read and write operations through this key
|
||||
*/
|
||||
readWrite(grantee: iam.IGrantable): iam.Grant;
|
||||
}
|
||||
Reference in New Issue
Block a user