Collaboration

class Collaboration : KotlinCustomResource

Provides a AWS Clean Rooms collaboration. All members included in the definition will be invited to join the collaboration and can create memberships.

Example Usage

Collaboration with tags

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.cleanrooms.Collaboration;
import com.pulumi.aws.cleanrooms.CollaborationArgs;
import com.pulumi.aws.cleanrooms.inputs.CollaborationDataEncryptionMetadataArgs;
import com.pulumi.aws.cleanrooms.inputs.CollaborationMemberArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testCollaboration = new Collaboration("testCollaboration", CollaborationArgs.builder()
.creatorDisplayName("Creator ")
.creatorMemberAbilities(
"CAN_QUERY",
"CAN_RECEIVE_RESULTS")
.dataEncryptionMetadata(CollaborationDataEncryptionMetadataArgs.builder()
.allowClearText(true)
.allowDuplicates(true)
.allowJoinsOnColumnsWithDifferentNames(true)
.preserveNulls(false)
.build())
.description("I made this collaboration with Pulumi!")
.members(CollaborationMemberArgs.builder()
.accountId(123456789012)
.displayName("Other member")
.memberAbilities()
.build())
.queryLogStatus("DISABLED")
.tags(Map.of("Project", "Pulumi"))
.build());
}
}

Import

Using pulumi import, import aws_cleanrooms_collaboration using the id. For example:

$ pulumi import aws:cleanrooms/collaboration:Collaboration collaboration 1234abcd-12ab-34cd-56ef-1234567890ab

Properties

Link copied to clipboard
val arn: Output<String>

The arn of the collaboration.

Link copied to clipboard
val createTime: Output<String>

The date and time the collaboration was created.

Link copied to clipboard

The name for the member record for the collaboration creator.

Link copied to clipboard

The list of member abilities for the creator of the collaboration. Valid values may be found here.

Link copied to clipboard

a collection of settings which determine how the c3r client will encrypt data for use within this collaboration.

Link copied to clipboard
val description: Output<String>

A description for a collaboration.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

Additional members of the collaboration which will be invited to join the collaboration.

Link copied to clipboard
val name: Output<String>

The name of the collaboration. Collaboration names do not need to be unique.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val queryLogStatus: Output<String>

Determines if members of the collaboration can enable query logs within their own. emberships. Valid values may be found here.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Key value pairs which tag the collaboration.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>
Link copied to clipboard
val updateTime: Output<String>
Link copied to clipboard
val urn: Output<String>