@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)
60 lines (59 loc) • 2.22 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Represents a collaboration between AWS accounts that allows for secure data collaboration
*/
export declare function getCollaboration(args: GetCollaborationArgs, opts?: pulumi.InvokeOptions): Promise<GetCollaborationResult>;
export interface GetCollaborationArgs {
/**
* Returns the unique identifier of the specified collaboration.
*
* Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`
*/
collaborationIdentifier: string;
}
export interface GetCollaborationResult {
/**
* The analytics engine for the collaboration.
*
* > After July 16, 2025, the `CLEAN_ROOMS_SQL` parameter will no longer be available.
*/
readonly analyticsEngine?: enums.cleanrooms.CollaborationAnalyticsEngine;
/**
* 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 arn?: string;
/**
* Returns the unique identifier of the specified collaboration.
*
* Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`
*/
readonly collaborationIdentifier?: string;
/**
* A description of the collaboration provided by the collaboration owner.
*/
readonly description?: string;
/**
* A human-readable identifier provided by the collaboration owner. Display names are not unique.
*/
readonly name?: string;
/**
* An arbitrary set of tags (key-value pairs) for this cleanrooms collaboration.
*/
readonly tags?: outputs.Tag[];
}
/**
* Represents a collaboration between AWS accounts that allows for secure data collaboration
*/
export declare function getCollaborationOutput(args: GetCollaborationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCollaborationResult>;
export interface GetCollaborationOutputArgs {
/**
* Returns the unique identifier of the specified collaboration.
*
* Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`
*/
collaborationIdentifier: pulumi.Input<string>;
}