agent-claw: automated task changes
This commit is contained in:
75
cdk/node_modules/aws-cdk-lib/interfaces/generated/aws-dax-interfaces.generated.d.ts
generated
vendored
Normal file
75
cdk/node_modules/aws-cdk-lib/interfaces/generated/aws-dax-interfaces.generated.d.ts
generated
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
import { IEnvironmentAware } from "../environment-aware";
|
||||
import * as constructs from "constructs";
|
||||
/**
|
||||
* Indicates that this resource can be referenced as a Cluster.
|
||||
*
|
||||
* @stability experimental
|
||||
*/
|
||||
export interface IClusterRef extends constructs.IConstruct, IEnvironmentAware {
|
||||
/**
|
||||
* A reference to a Cluster resource.
|
||||
*/
|
||||
readonly clusterRef: ClusterReference;
|
||||
}
|
||||
/**
|
||||
* A reference to a Cluster resource.
|
||||
*
|
||||
* @struct
|
||||
* @stability external
|
||||
*/
|
||||
export interface ClusterReference {
|
||||
/**
|
||||
* The ClusterName of the Cluster resource.
|
||||
*/
|
||||
readonly clusterName: string;
|
||||
/**
|
||||
* The ARN of the Cluster resource.
|
||||
*/
|
||||
readonly clusterArn: string;
|
||||
}
|
||||
/**
|
||||
* Indicates that this resource can be referenced as a ParameterGroup.
|
||||
*
|
||||
* @stability experimental
|
||||
*/
|
||||
export interface IParameterGroupRef extends constructs.IConstruct, IEnvironmentAware {
|
||||
/**
|
||||
* A reference to a ParameterGroup resource.
|
||||
*/
|
||||
readonly parameterGroupRef: ParameterGroupReference;
|
||||
}
|
||||
/**
|
||||
* A reference to a ParameterGroup resource.
|
||||
*
|
||||
* @struct
|
||||
* @stability external
|
||||
*/
|
||||
export interface ParameterGroupReference {
|
||||
/**
|
||||
* The ParameterGroupName of the ParameterGroup resource.
|
||||
*/
|
||||
readonly parameterGroupName: string;
|
||||
}
|
||||
/**
|
||||
* Indicates that this resource can be referenced as a SubnetGroup.
|
||||
*
|
||||
* @stability experimental
|
||||
*/
|
||||
export interface ISubnetGroupRef extends constructs.IConstruct, IEnvironmentAware {
|
||||
/**
|
||||
* A reference to a SubnetGroup resource.
|
||||
*/
|
||||
readonly subnetGroupRef: SubnetGroupReference;
|
||||
}
|
||||
/**
|
||||
* A reference to a SubnetGroup resource.
|
||||
*
|
||||
* @struct
|
||||
* @stability external
|
||||
*/
|
||||
export interface SubnetGroupReference {
|
||||
/**
|
||||
* The SubnetGroupName of the SubnetGroup resource.
|
||||
*/
|
||||
readonly subnetGroupName: string;
|
||||
}
|
||||
Reference in New Issue
Block a user