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)

50 lines (49 loc) 1.61 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of AWS::B2BI::Profile Resource Type */ export declare function getProfile(args: GetProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetProfileResult>; export interface GetProfileArgs { profileId: string; } export interface GetProfileResult { /** * Returns the name for the business associated with this profile. */ readonly businessName?: string; /** * Returns the timestamp for creation date and time of the profile. */ readonly createdAt?: string; readonly email?: string; /** * Returns the name of the logging group. */ readonly logGroupName?: string; /** * Returns the timestamp that identifies the most recent date and time that the profile was modified. */ readonly modifiedAt?: string; /** * Returns the display name for profile. */ readonly name?: string; readonly phone?: string; /** * Returns an Amazon Resource Name (ARN) for the profile. */ readonly profileArn?: string; readonly profileId?: string; /** * A key-value pair for a specific profile. Tags are metadata that you can use to search for and group capabilities for various purposes. */ readonly tags?: outputs.Tag[]; } /** * Definition of AWS::B2BI::Profile Resource Type */ export declare function getProfileOutput(args: GetProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProfileResult>; export interface GetProfileOutputArgs { profileId: pulumi.Input<string>; }