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)

78 lines (77 loc) 2.18 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Definition of AWS::DataZone::ProjectProfile Resource Type */ export declare function getProjectProfile(args: GetProjectProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectProfileResult>; export interface GetProjectProfileArgs { /** * A domain ID of the project profile. */ domainIdentifier: string; /** * Project profile ID. */ identifier: string; } export interface GetProjectProfileResult { /** * The timestamp of when the project profile was created. */ readonly createdAt?: string; /** * The user who created the project profile. */ readonly createdBy?: string; /** * The description of the project profile. */ readonly description?: string; /** * The domain ID of the project profile. */ readonly domainId?: string; /** * The domain unit ID of the project profile. */ readonly domainUnitId?: string; /** * Environment configurations of a project profile. */ readonly environmentConfigurations?: outputs.datazone.ProjectProfileEnvironmentConfiguration[]; /** * The ID of the project profile. */ readonly id?: string; /** * Project profile ID. */ readonly identifier?: string; /** * The timestamp at which a project profile was last updated. */ readonly lastUpdatedAt?: string; /** * The name of a project profile. */ readonly name?: string; /** * The status of a project profile. */ readonly status?: enums.datazone.ProjectProfileStatus; } /** * Definition of AWS::DataZone::ProjectProfile Resource Type */ export declare function getProjectProfileOutput(args: GetProjectProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectProfileResult>; export interface GetProjectProfileOutputArgs { /** * A domain ID of the project profile. */ domainIdentifier: pulumi.Input<string>; /** * Project profile ID. */ identifier: pulumi.Input<string>; }