import * as pulumi from "@pulumi/pulumi"; /** * Get the [entity path](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_last-accessed-view-data-orgs.html#access_policies_last-accessed-viewing-orgs-entity-path) for an entity. An entity's path is the text representation of the structure of that AWS Organizations entity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.organizations.getEntityPath({ * entityId: "ou-ghi0-awsccccc", * }); * ``` */ export declare function getEntityPath(args: GetEntityPathArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEntityPath. */ export interface GetEntityPathArgs { /** * Entity ID. Must be an organizational unit (OU) or AWS account ID. */ entityId: string; } /** * A collection of values returned by getEntityPath. */ export interface GetEntityPathResult { readonly entityId: string; /** * Entity path. */ readonly entityPath: string; } /** * Get the [entity path](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_last-accessed-view-data-orgs.html#access_policies_last-accessed-viewing-orgs-entity-path) for an entity. An entity's path is the text representation of the structure of that AWS Organizations entity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.organizations.getEntityPath({ * entityId: "ou-ghi0-awsccccc", * }); * ``` */ export declare function getEntityPathOutput(args: GetEntityPathOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEntityPath. */ export interface GetEntityPathOutputArgs { /** * Entity ID. Must be an organizational unit (OU) or AWS account ID. */ entityId: pulumi.Input; } //# sourceMappingURL=getEntityPath.d.ts.map