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; export interface GetProjectProfileArgs { /** * A domain ID of the project profile. */ domainIdentifier: string; /** * Project profile ID. */ identifier: string; } export interface GetProjectProfileResult { readonly allowCustomProjectResourceTags?: boolean; /** * 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; readonly projectResourceTags?: outputs.datazone.ProjectProfileResourceTagParameter[]; readonly projectResourceTagsDescription?: 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; export interface GetProjectProfileOutputArgs { /** * A domain ID of the project profile. */ domainIdentifier: pulumi.Input; /** * Project profile ID. */ identifier: pulumi.Input; }