import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Connect::PredefinedAttribute */ export declare function getPredefinedAttribute(args: GetPredefinedAttributeArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetPredefinedAttributeArgs { /** * The identifier of the Amazon Connect instance. */ instanceArn: string; /** * The name of the predefined attribute. */ name: string; } export interface GetPredefinedAttributeResult { /** * Custom metadata associated to a Predefined attribute that controls how the attribute behaves when used by upstream services. */ readonly attributeConfiguration?: outputs.connect.AttributeConfigurationProperties; /** * Last modified region. */ readonly lastModifiedRegion?: string; /** * Last modified time. */ readonly lastModifiedTime?: number; /** * The assigned purposes of the predefined attribute. */ readonly purposes?: string[]; /** * The values of a predefined attribute. */ readonly values?: outputs.connect.ValuesProperties; } /** * Resource Type definition for AWS::Connect::PredefinedAttribute */ export declare function getPredefinedAttributeOutput(args: GetPredefinedAttributeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetPredefinedAttributeOutputArgs { /** * The identifier of the Amazon Connect instance. */ instanceArn: pulumi.Input; /** * The name of the predefined attribute. */ name: pulumi.Input; }