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,19 @@
import type { GrantDelegationOptions, INamedHostedZoneRef } from './hosted-zone-ref';
import type { IGrantable } from '../../aws-iam';
import type { Grant } from '../../aws-iam/lib/grant';
/**
* Collection of grant methods for a INamedHostedZoneRef
*/
export declare class HostedZoneGrants {
private readonly hostedZone;
/**
* Creates grants for INamedHostedZoneRef
*
*/
static fromHostedZone(hostedZone: INamedHostedZoneRef): HostedZoneGrants;
private constructor();
/**
* Grant permissions to add delegation records to this zone
*/
delegation(grantee: IGrantable, delegationOptions?: GrantDelegationOptions): Grant;
}