import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Represents an AWS account that is a part of a collaboration
 */
export declare function getMembership(args: GetMembershipArgs, opts?: pulumi.InvokeOptions): Promise<GetMembershipResult>;
export interface GetMembershipArgs {
    /**
     * Returns the unique identifier of the specified membership.
     *
     * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE22222`
     */
    membershipIdentifier: string;
}
export interface GetMembershipResult {
    /**
     * Returns the Amazon Resource Name (ARN) of the specified membership.
     *
     * Example: `arn:aws:cleanrooms:us-east-1:111122223333:membership/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`
     */
    readonly arn?: string;
    /**
     * Returns the Amazon Resource Name (ARN) of the specified collaboration.
     *
     * Example: `arn:aws:cleanrooms:us-east-1:111122223333:collaboration/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`
     */
    readonly collaborationArn?: string;
    /**
     * Returns the unique identifier of the specified collaboration creator account.
     *
     * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`
     */
    readonly collaborationCreatorAccountId?: string;
    /**
     * The default job result configuration for the membership.
     */
    readonly defaultJobResultConfiguration?: outputs.cleanrooms.MembershipProtectedJobResultConfiguration;
    /**
     * The default protected query result configuration as specified by the member who can receive results.
     */
    readonly defaultResultConfiguration?: outputs.cleanrooms.MembershipProtectedQueryResultConfiguration;
    readonly isMetricsEnabled?: boolean;
    /**
     * An indicator as to whether job logging has been enabled or disabled for the collaboration.
     *
     * When `ENABLED` , AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is `DISABLED` .
     */
    readonly jobLogStatus?: enums.cleanrooms.MembershipJobLogStatus;
    /**
     * Returns the unique identifier of the specified membership.
     *
     * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE22222`
     */
    readonly membershipIdentifier?: string;
    /**
     * The payment responsibilities accepted by the collaboration member.
     */
    readonly paymentConfiguration?: outputs.cleanrooms.MembershipPaymentConfiguration;
    /**
     * An indicator as to whether query logging has been enabled or disabled for the membership.
     *
     * When `ENABLED` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is `DISABLED` .
     */
    readonly queryLogStatus?: enums.cleanrooms.MembershipQueryLogStatus;
    /**
     * An arbitrary set of tags (key-value pairs) for this cleanrooms membership.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Represents an AWS account that is a part of a collaboration
 */
export declare function getMembershipOutput(args: GetMembershipOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMembershipResult>;
export interface GetMembershipOutputArgs {
    /**
     * Returns the unique identifier of the specified membership.
     *
     * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE22222`
     */
    membershipIdentifier: pulumi.Input<string>;
}
