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)

44 lines (43 loc) 1.39 kB
import * as pulumi from "@pulumi/pulumi"; /** * Definition of AWS::Wisdom::AssistantAssociation Resource Type */ export declare function getAssistantAssociation(args: GetAssistantAssociationArgs, opts?: pulumi.InvokeOptions): Promise<GetAssistantAssociationResult>; export interface GetAssistantAssociationArgs { /** * The ID of the association. */ assistantAssociationId: string; /** * The identifier of the Wisdom assistant. */ assistantId: string; } export interface GetAssistantAssociationResult { /** * The Amazon Resource Name (ARN) of the Wisdom assistant. */ readonly assistantArn?: string; /** * The Amazon Resource Name (ARN) of the assistant association. */ readonly assistantAssociationArn?: string; /** * The ID of the association. */ readonly assistantAssociationId?: string; } /** * Definition of AWS::Wisdom::AssistantAssociation Resource Type */ export declare function getAssistantAssociationOutput(args: GetAssistantAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAssistantAssociationResult>; export interface GetAssistantAssociationOutputArgs { /** * The ID of the association. */ assistantAssociationId: pulumi.Input<string>; /** * The identifier of the Wisdom assistant. */ assistantId: pulumi.Input<string>; }