agent-claw: automated task changes
This commit is contained in:
14
cdk/node_modules/aws-cdk-lib/aws-ecs/lib/mixins/cluster-settings.d.ts
generated
vendored
Normal file
14
cdk/node_modules/aws-cdk-lib/aws-ecs/lib/mixins/cluster-settings.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import type { IConstruct } from 'constructs';
|
||||
import { Mixin } from '../../../core/lib/mixins';
|
||||
import { CfnCluster } from '../ecs.generated';
|
||||
/**
|
||||
* Applies one or more cluster settings to an ECS cluster.
|
||||
*
|
||||
* If a setting with the same name already exists, its value is replaced.
|
||||
*/
|
||||
export declare class ClusterSettings extends Mixin {
|
||||
private readonly settings;
|
||||
constructor(settings: CfnCluster.ClusterSettingsProperty[]);
|
||||
supports(construct: IConstruct): construct is CfnCluster;
|
||||
applyTo(cluster: IConstruct): void;
|
||||
}
|
||||
Reference in New Issue
Block a user