import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::DevOpsAgent::Association defining how the AgentSpace interacts with external services like GitHub, Slack, AWS accounts, and others. */ export declare function getAssociation(args: GetAssociationArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAssociationArgs { /** * The unique identifier of the AgentSpace */ agentSpaceId: string; /** * The unique identifier of the association */ associationId: string; } export interface GetAssociationResult { /** * The unique identifier of the association */ readonly associationId?: string; /** * The configuration that directs how AgentSpace interacts with the given service */ readonly configuration?: outputs.devopsagent.AssociationServiceConfiguration; /** * The timestamp when the association was created */ readonly createdAt?: string; /** * The identifier for the associated service */ readonly serviceId?: string; /** * The timestamp when the association was last updated */ readonly updatedAt?: string; } /** * Resource Type definition for AWS::DevOpsAgent::Association defining how the AgentSpace interacts with external services like GitHub, Slack, AWS accounts, and others. */ export declare function getAssociationOutput(args: GetAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetAssociationOutputArgs { /** * The unique identifier of the AgentSpace */ agentSpaceId: pulumi.Input; /** * The unique identifier of the association */ associationId: pulumi.Input; }