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.72 kB
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<GetPredefinedAttributeResult>; 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<GetPredefinedAttributeResult>; export interface GetPredefinedAttributeOutputArgs { /** * The identifier of the Amazon Connect instance. */ instanceArn: pulumi.Input<string>; /** * The name of the predefined attribute. */ name: pulumi.Input<string>; }