UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

80 lines (79 loc) 1.87 kB
import { IEnvironmentAware } from "../environment-aware"; import * as constructs from "constructs"; /** * Indicates that this resource can be referenced as a AgentSpace. * * @stability experimental */ export interface IAgentSpaceRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a AgentSpace resource. */ readonly agentSpaceRef: AgentSpaceReference; } /** * A reference to a AgentSpace resource. * * @struct * @stability external */ export interface AgentSpaceReference { /** * The AgentSpaceId of the AgentSpace resource. */ readonly agentSpaceId: string; /** * The ARN of the AgentSpace resource. */ readonly agentSpaceArn: string; } /** * Indicates that this resource can be referenced as a Association. * * @stability experimental */ export interface IAssociationRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a Association resource. */ readonly associationRef: AssociationReference; } /** * A reference to a Association resource. * * @struct * @stability external */ export interface AssociationReference { /** * The AgentSpaceId of the Association resource. */ readonly agentSpaceId: string; /** * The AssociationId of the Association resource. */ readonly associationId: string; } /** * Indicates that this resource can be referenced as a Service. * * @stability experimental */ export interface IServiceRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a Service resource. */ readonly serviceRef: ServiceReference; } /** * A reference to a Service resource. * * @struct * @stability external */ export interface ServiceReference { /** * The ServiceId of the Service resource. */ readonly serviceId: string; }