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
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+3
View File
@@ -0,0 +1,3 @@
export * from './rule';
export * from './managed-rules';
export * from './config.generated';
File diff suppressed because one or more lines are too long
+88
View File
@@ -0,0 +1,88 @@
import type { Construct } from 'constructs';
import type { RuleProps } from './rule';
import { ManagedRule } from './rule';
import * as iam from '../../aws-iam';
import type * as sns from '../../aws-sns';
import type { Duration } from '../../core';
/**
* Construction properties for a AccessKeysRotated
*/
export interface AccessKeysRotatedProps extends RuleProps {
/**
* The maximum number of days within which the access keys must be rotated.
*
* @default Duration.days(90)
*/
readonly maxAge?: Duration;
}
/**
* Checks whether the active access keys are rotated within the number of days
* specified in `maxAge`.
*
* @see https://docs.aws.amazon.com/config/latest/developerguide/access-keys-rotated.html
*
* @resource AWS::Config::ConfigRule
*/
export declare class AccessKeysRotated extends ManagedRule {
/** Uniquely identifies this class. */
static readonly PROPERTY_INJECTION_ID: string;
constructor(scope: Construct, id: string, props?: AccessKeysRotatedProps);
}
/**
* Construction properties for a CloudFormationStackDriftDetectionCheck
*/
export interface CloudFormationStackDriftDetectionCheckProps extends RuleProps {
/**
* Whether to check only the stack where this rule is deployed.
*
* @default false
*/
readonly ownStackOnly?: boolean;
/**
* The IAM role to use for this rule. It must have permissions to detect drift
* for AWS CloudFormation stacks. Ensure to attach `config.amazonaws.com` trusted
* permissions and `ReadOnlyAccess` policy permissions. For specific policy permissions,
* refer to https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html.
*
* @default - A role will be created
*/
readonly role?: iam.IRoleRef;
}
/**
* Checks whether your CloudFormation stacks' actual configuration differs, or
* has drifted, from its expected configuration.
*
* @see https://docs.aws.amazon.com/config/latest/developerguide/cloudformation-stack-drift-detection-check.html
*
* @resource AWS::Config::ConfigRule
*/
export declare class CloudFormationStackDriftDetectionCheck extends ManagedRule {
/** Uniquely identifies this class. */
static readonly PROPERTY_INJECTION_ID: string;
private readonly role;
constructor(scope: Construct, id: string, props?: CloudFormationStackDriftDetectionCheckProps);
}
/**
* Construction properties for a CloudFormationStackNotificationCheck.
*/
export interface CloudFormationStackNotificationCheckProps extends RuleProps {
/**
* A list of allowed topics. At most 5 topics.
*
* @default - No topics.
*/
readonly topics?: sns.ITopic[];
}
/**
* Checks whether your CloudFormation stacks are sending event notifications to
* a SNS topic. Optionally checks whether specified SNS topics are used.
*
* @see https://docs.aws.amazon.com/config/latest/developerguide/cloudformation-stack-notification-check.html
*
* @resource AWS::Config::ConfigRule
*/
export declare class CloudFormationStackNotificationCheck extends ManagedRule {
/** Uniquely identifies this class. */
static readonly PROPERTY_INJECTION_ID: string;
constructor(scope: Construct, id: string, props?: CloudFormationStackNotificationCheckProps);
}
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long