@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)
39 lines (38 loc) • 1.6 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
* Definition of AWS::DataZone::ProjectMembership Resource Type
*/
export declare function getProjectMembership(args: GetProjectMembershipArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectMembershipResult>;
export interface GetProjectMembershipArgs {
/**
* The ID of the Amazon DataZone domain in which project membership is created.
*/
domainIdentifier: string;
memberIdentifier: string;
memberIdentifierType: enums.datazone.ProjectMembershipMemberIdentifierType;
/**
* The ID of the project for which this project membership was created.
*/
projectIdentifier: string;
}
export interface GetProjectMembershipResult {
readonly memberIdentifier?: string;
readonly memberIdentifierType?: enums.datazone.ProjectMembershipMemberIdentifierType;
}
/**
* Definition of AWS::DataZone::ProjectMembership Resource Type
*/
export declare function getProjectMembershipOutput(args: GetProjectMembershipOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectMembershipResult>;
export interface GetProjectMembershipOutputArgs {
/**
* The ID of the Amazon DataZone domain in which project membership is created.
*/
domainIdentifier: pulumi.Input<string>;
memberIdentifier: pulumi.Input<string>;
memberIdentifierType: pulumi.Input<enums.datazone.ProjectMembershipMemberIdentifierType>;
/**
* The ID of the project for which this project membership was created.
*/
projectIdentifier: pulumi.Input<string>;
}