aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
80 lines (79 loc) • 1.98 kB
TypeScript
import * as constructs from "constructs";
import { IEnvironmentAware } from "../environment-aware";
/**
* Indicates that this resource can be referenced as a Config.
*
* @stability experimental
*/
export interface IConfigRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a Config resource.
*/
readonly configRef: ConfigReference;
}
/**
* A reference to a Config resource.
*
* @struct
* @stability external
*/
export interface ConfigReference {
/**
* The Arn of the Config resource.
*/
readonly configArn: string;
}
/**
* Indicates that this resource can be referenced as a DataflowEndpointGroup.
*
* @stability experimental
*/
export interface IDataflowEndpointGroupRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a DataflowEndpointGroup resource.
*/
readonly dataflowEndpointGroupRef: DataflowEndpointGroupReference;
}
/**
* A reference to a DataflowEndpointGroup resource.
*
* @struct
* @stability external
*/
export interface DataflowEndpointGroupReference {
/**
* The Id of the DataflowEndpointGroup resource.
*/
readonly dataflowEndpointGroupId: string;
/**
* The ARN of the DataflowEndpointGroup resource.
*/
readonly dataflowEndpointGroupArn: string;
}
/**
* Indicates that this resource can be referenced as a MissionProfile.
*
* @stability experimental
*/
export interface IMissionProfileRef extends constructs.IConstruct, IEnvironmentAware {
/**
* A reference to a MissionProfile resource.
*/
readonly missionProfileRef: MissionProfileReference;
}
/**
* A reference to a MissionProfile resource.
*
* @struct
* @stability external
*/
export interface MissionProfileReference {
/**
* The Id of the MissionProfile resource.
*/
readonly missionProfileId: string;
/**
* The Arn of the MissionProfile resource.
*/
readonly missionProfileArn: string;
}