/** * Checks whether an IAM action is excluded from AWS resource-information context keys. * * AWS does not populate `aws:ResourceAccount`, `aws:ResourceOrgID`, or * `aws:ResourceOrgPaths` for every action. This predicate captures the documented * excluded actions currently used by Cloud Copilot request-context generation. * * @param action - IAM action to inspect, such as `s3:GetObject`. * @returns True when AWS resource-information context keys are not available. */ export declare function isAwsResourceInfoExcludedAction(action: string): boolean; /** * Checks whether AWS resource-information context keys are available for an IAM action. * * @param action - IAM action to inspect, such as `s3:GetObject`. * @returns True when `aws:ResourceAccount`, `aws:ResourceOrgID`, and `aws:ResourceOrgPaths` may be populated. */ export declare function actionSupportsAwsResourceInfoContextKeys(action: string): boolean; //# sourceMappingURL=resourceInfoContextKeys.d.ts.map