UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

53 lines (52 loc) 1.83 kB
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<GetAssociationResult>; 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<GetAssociationResult>; export interface GetAssociationOutputArgs { /** * The unique identifier of the AgentSpace */ agentSpaceId: pulumi.Input<string>; /** * The unique identifier of the association */ associationId: pulumi.Input<string>; }