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)

33 lines (32 loc) 1.1 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Route53Profiles::ProfileAssociation */ export declare function getProfileAssociation(args: GetProfileAssociationArgs, opts?: pulumi.InvokeOptions): Promise<GetProfileAssociationResult>; export interface GetProfileAssociationArgs { /** * Primary Identifier for Profile Association */ id: string; } export interface GetProfileAssociationResult { /** * Primary Identifier for Profile Association */ readonly id?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::Route53Profiles::ProfileAssociation */ export declare function getProfileAssociationOutput(args: GetProfileAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProfileAssociationResult>; export interface GetProfileAssociationOutputArgs { /** * Primary Identifier for Profile Association */ id: pulumi.Input<string>; }