published on Wednesday, Mar 11, 2026 by Pulumi
published on Wednesday, Mar 11, 2026 by Pulumi
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
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const testCollaboration = new aws.cleanrooms.Collaboration("test_collaboration", {
name: "pulumi-example-collaboration",
creatorMemberAbilities: [
"CAN_QUERY",
"CAN_RECEIVE_RESULTS",
],
creatorDisplayName: "Creator ",
description: "I made this collaboration with Pulumi!",
queryLogStatus: "DISABLED",
analyticsEngine: "SPARK",
dataEncryptionMetadata: {
allowClearText: true,
allowDuplicates: true,
allowJoinsOnColumnsWithDifferentNames: true,
preserveNulls: false,
},
members: [{
accountId: "123456789012",
displayName: "Other member",
memberAbilities: [],
}],
tags: {
Project: "Pulumi",
},
});
import pulumi
import pulumi_aws as aws
test_collaboration = aws.cleanrooms.Collaboration("test_collaboration",
name="pulumi-example-collaboration",
creator_member_abilities=[
"CAN_QUERY",
"CAN_RECEIVE_RESULTS",
],
creator_display_name="Creator ",
description="I made this collaboration with Pulumi!",
query_log_status="DISABLED",
analytics_engine="SPARK",
data_encryption_metadata={
"allow_clear_text": True,
"allow_duplicates": True,
"allow_joins_on_columns_with_different_names": True,
"preserve_nulls": False,
},
members=[{
"account_id": "123456789012",
"display_name": "Other member",
"member_abilities": [],
}],
tags={
"Project": "Pulumi",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/cleanrooms"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cleanrooms.NewCollaboration(ctx, "test_collaboration", &cleanrooms.CollaborationArgs{
Name: pulumi.String("pulumi-example-collaboration"),
CreatorMemberAbilities: pulumi.StringArray{
pulumi.String("CAN_QUERY"),
pulumi.String("CAN_RECEIVE_RESULTS"),
},
CreatorDisplayName: pulumi.String("Creator "),
Description: pulumi.String("I made this collaboration with Pulumi!"),
QueryLogStatus: pulumi.String("DISABLED"),
AnalyticsEngine: pulumi.String("SPARK"),
DataEncryptionMetadata: &cleanrooms.CollaborationDataEncryptionMetadataArgs{
AllowClearText: pulumi.Bool(true),
AllowDuplicates: pulumi.Bool(true),
AllowJoinsOnColumnsWithDifferentNames: pulumi.Bool(true),
PreserveNulls: pulumi.Bool(false),
},
Members: cleanrooms.CollaborationMemberArray{
&cleanrooms.CollaborationMemberArgs{
AccountId: pulumi.String("123456789012"),
DisplayName: pulumi.String("Other member"),
MemberAbilities: pulumi.StringArray{},
},
},
Tags: pulumi.StringMap{
"Project": pulumi.String("Pulumi"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var testCollaboration = new Aws.CleanRooms.Collaboration("test_collaboration", new()
{
Name = "pulumi-example-collaboration",
CreatorMemberAbilities = new[]
{
"CAN_QUERY",
"CAN_RECEIVE_RESULTS",
},
CreatorDisplayName = "Creator ",
Description = "I made this collaboration with Pulumi!",
QueryLogStatus = "DISABLED",
AnalyticsEngine = "SPARK",
DataEncryptionMetadata = new Aws.CleanRooms.Inputs.CollaborationDataEncryptionMetadataArgs
{
AllowClearText = true,
AllowDuplicates = true,
AllowJoinsOnColumnsWithDifferentNames = true,
PreserveNulls = false,
},
Members = new[]
{
new Aws.CleanRooms.Inputs.CollaborationMemberArgs
{
AccountId = "123456789012",
DisplayName = "Other member",
MemberAbilities = new() { },
},
},
Tags =
{
{ "Project", "Pulumi" },
},
});
});
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()
.name("pulumi-example-collaboration")
.creatorMemberAbilities(
"CAN_QUERY",
"CAN_RECEIVE_RESULTS")
.creatorDisplayName("Creator ")
.description("I made this collaboration with Pulumi!")
.queryLogStatus("DISABLED")
.analyticsEngine("SPARK")
.dataEncryptionMetadata(CollaborationDataEncryptionMetadataArgs.builder()
.allowClearText(true)
.allowDuplicates(true)
.allowJoinsOnColumnsWithDifferentNames(true)
.preserveNulls(false)
.build())
.members(CollaborationMemberArgs.builder()
.accountId("123456789012")
.displayName("Other member")
.memberAbilities()
.build())
.tags(Map.of("Project", "Pulumi"))
.build());
}
}
resources:
testCollaboration:
type: aws:cleanrooms:Collaboration
name: test_collaboration
properties:
name: pulumi-example-collaboration
creatorMemberAbilities:
- CAN_QUERY
- CAN_RECEIVE_RESULTS
creatorDisplayName: 'Creator '
description: I made this collaboration with Pulumi!
queryLogStatus: DISABLED
analyticsEngine: SPARK
dataEncryptionMetadata:
allowClearText: true
allowDuplicates: true
allowJoinsOnColumnsWithDifferentNames: true
preserveNulls: false
members:
- accountId: 1.23456789012e+11
displayName: Other member
memberAbilities: []
tags:
Project: Pulumi
Create Collaboration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Collaboration(name: string, args: CollaborationArgs, opts?: CustomResourceOptions);@overload
def Collaboration(resource_name: str,
args: CollaborationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Collaboration(resource_name: str,
opts: Optional[ResourceOptions] = None,
creator_display_name: Optional[str] = None,
creator_member_abilities: Optional[Sequence[str]] = None,
description: Optional[str] = None,
query_log_status: Optional[str] = None,
analytics_engine: Optional[str] = None,
data_encryption_metadata: Optional[CollaborationDataEncryptionMetadataArgs] = None,
members: Optional[Sequence[CollaborationMemberArgs]] = None,
name: Optional[str] = None,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)func NewCollaboration(ctx *Context, name string, args CollaborationArgs, opts ...ResourceOption) (*Collaboration, error)public Collaboration(string name, CollaborationArgs args, CustomResourceOptions? opts = null)
public Collaboration(String name, CollaborationArgs args)
public Collaboration(String name, CollaborationArgs args, CustomResourceOptions options)
type: aws:cleanrooms:Collaboration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CollaborationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CollaborationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CollaborationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CollaborationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CollaborationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var collaborationResource = new Aws.CleanRooms.Collaboration("collaborationResource", new()
{
CreatorDisplayName = "string",
CreatorMemberAbilities = new[]
{
"string",
},
Description = "string",
QueryLogStatus = "string",
AnalyticsEngine = "string",
DataEncryptionMetadata = new Aws.CleanRooms.Inputs.CollaborationDataEncryptionMetadataArgs
{
AllowClearText = false,
AllowDuplicates = false,
AllowJoinsOnColumnsWithDifferentNames = false,
PreserveNulls = false,
},
Members = new[]
{
new Aws.CleanRooms.Inputs.CollaborationMemberArgs
{
AccountId = "string",
DisplayName = "string",
MemberAbilities = new[]
{
"string",
},
Status = "string",
},
},
Name = "string",
Region = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := cleanrooms.NewCollaboration(ctx, "collaborationResource", &cleanrooms.CollaborationArgs{
CreatorDisplayName: pulumi.String("string"),
CreatorMemberAbilities: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
QueryLogStatus: pulumi.String("string"),
AnalyticsEngine: pulumi.String("string"),
DataEncryptionMetadata: &cleanrooms.CollaborationDataEncryptionMetadataArgs{
AllowClearText: pulumi.Bool(false),
AllowDuplicates: pulumi.Bool(false),
AllowJoinsOnColumnsWithDifferentNames: pulumi.Bool(false),
PreserveNulls: pulumi.Bool(false),
},
Members: cleanrooms.CollaborationMemberArray{
&cleanrooms.CollaborationMemberArgs{
AccountId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
MemberAbilities: pulumi.StringArray{
pulumi.String("string"),
},
Status: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Region: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var collaborationResource = new Collaboration("collaborationResource", CollaborationArgs.builder()
.creatorDisplayName("string")
.creatorMemberAbilities("string")
.description("string")
.queryLogStatus("string")
.analyticsEngine("string")
.dataEncryptionMetadata(CollaborationDataEncryptionMetadataArgs.builder()
.allowClearText(false)
.allowDuplicates(false)
.allowJoinsOnColumnsWithDifferentNames(false)
.preserveNulls(false)
.build())
.members(CollaborationMemberArgs.builder()
.accountId("string")
.displayName("string")
.memberAbilities("string")
.status("string")
.build())
.name("string")
.region("string")
.tags(Map.of("string", "string"))
.build());
collaboration_resource = aws.cleanrooms.Collaboration("collaborationResource",
creator_display_name="string",
creator_member_abilities=["string"],
description="string",
query_log_status="string",
analytics_engine="string",
data_encryption_metadata={
"allow_clear_text": False,
"allow_duplicates": False,
"allow_joins_on_columns_with_different_names": False,
"preserve_nulls": False,
},
members=[{
"account_id": "string",
"display_name": "string",
"member_abilities": ["string"],
"status": "string",
}],
name="string",
region="string",
tags={
"string": "string",
})
const collaborationResource = new aws.cleanrooms.Collaboration("collaborationResource", {
creatorDisplayName: "string",
creatorMemberAbilities: ["string"],
description: "string",
queryLogStatus: "string",
analyticsEngine: "string",
dataEncryptionMetadata: {
allowClearText: false,
allowDuplicates: false,
allowJoinsOnColumnsWithDifferentNames: false,
preserveNulls: false,
},
members: [{
accountId: "string",
displayName: "string",
memberAbilities: ["string"],
status: "string",
}],
name: "string",
region: "string",
tags: {
string: "string",
},
});
type: aws:cleanrooms:Collaboration
properties:
analyticsEngine: string
creatorDisplayName: string
creatorMemberAbilities:
- string
dataEncryptionMetadata:
allowClearText: false
allowDuplicates: false
allowJoinsOnColumnsWithDifferentNames: false
preserveNulls: false
description: string
members:
- accountId: string
displayName: string
memberAbilities:
- string
status: string
name: string
queryLogStatus: string
region: string
tags:
string: string
Collaboration Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Collaboration resource accepts the following input properties:
- Creator
Display stringName - Name for the member record for the collaboration creator.
- Creator
Member List<string>Abilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- Description string
- Description for a collaboration.
- Query
Log stringStatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- Analytics
Engine string - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - Data
Encryption CollaborationMetadata Data Encryption Metadata - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- Members
List<Collaboration
Member> - Additional members of the collaboration which will be invited to join the collaboration. See below.
- Name string
- Name of the collaboration. Collaboration names do not need to be unique.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Key value pairs which tag the collaboration.
- Creator
Display stringName - Name for the member record for the collaboration creator.
- Creator
Member []stringAbilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- Description string
- Description for a collaboration.
- Query
Log stringStatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- Analytics
Engine string - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - Data
Encryption CollaborationMetadata Data Encryption Metadata Args - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- Members
[]Collaboration
Member Args - Additional members of the collaboration which will be invited to join the collaboration. See below.
- Name string
- Name of the collaboration. Collaboration names do not need to be unique.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Key value pairs which tag the collaboration.
- creator
Display StringName - Name for the member record for the collaboration creator.
- creator
Member List<String>Abilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- description String
- Description for a collaboration.
- query
Log StringStatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- analytics
Engine String - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - data
Encryption CollaborationMetadata Data Encryption Metadata - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- members
List<Collaboration
Member> - Additional members of the collaboration which will be invited to join the collaboration. See below.
- name String
- Name of the collaboration. Collaboration names do not need to be unique.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Key value pairs which tag the collaboration.
- creator
Display stringName - Name for the member record for the collaboration creator.
- creator
Member string[]Abilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- description string
- Description for a collaboration.
- query
Log stringStatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- analytics
Engine string - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - data
Encryption CollaborationMetadata Data Encryption Metadata - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- members
Collaboration
Member[] - Additional members of the collaboration which will be invited to join the collaboration. See below.
- name string
- Name of the collaboration. Collaboration names do not need to be unique.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Key value pairs which tag the collaboration.
- creator_
display_ strname - Name for the member record for the collaboration creator.
- creator_
member_ Sequence[str]abilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- description str
- Description for a collaboration.
- query_
log_ strstatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- analytics_
engine str - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - data_
encryption_ Collaborationmetadata Data Encryption Metadata Args - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- members
Sequence[Collaboration
Member Args] - Additional members of the collaboration which will be invited to join the collaboration. See below.
- name str
- Name of the collaboration. Collaboration names do not need to be unique.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Key value pairs which tag the collaboration.
- creator
Display StringName - Name for the member record for the collaboration creator.
- creator
Member List<String>Abilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- description String
- Description for a collaboration.
- query
Log StringStatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- analytics
Engine String - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - data
Encryption Property MapMetadata - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- members List<Property Map>
- Additional members of the collaboration which will be invited to join the collaboration. See below.
- name String
- Name of the collaboration. Collaboration names do not need to be unique.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- Key value pairs which tag the collaboration.
Outputs
All input properties are implicitly available as output properties. Additionally, the Collaboration resource produces the following output properties:
- Arn string
- ARN of the collaboration.
- Create
Time string - Date and time the collaboration was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- Update
Time string - Date and time the collaboration was last updated.
- Arn string
- ARN of the collaboration.
- Create
Time string - Date and time the collaboration was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- Update
Time string - Date and time the collaboration was last updated.
- arn String
- ARN of the collaboration.
- create
Time String - Date and time the collaboration was created.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- update
Time String - Date and time the collaboration was last updated.
- arn string
- ARN of the collaboration.
- create
Time string - Date and time the collaboration was created.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- update
Time string - Date and time the collaboration was last updated.
- arn str
- ARN of the collaboration.
- create_
time str - Date and time the collaboration was created.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- update_
time str - Date and time the collaboration was last updated.
- arn String
- ARN of the collaboration.
- create
Time String - Date and time the collaboration was created.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- update
Time String - Date and time the collaboration was last updated.
Look up Existing Collaboration Resource
Get an existing Collaboration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: CollaborationState, opts?: CustomResourceOptions): Collaboration@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
analytics_engine: Optional[str] = None,
arn: Optional[str] = None,
create_time: Optional[str] = None,
creator_display_name: Optional[str] = None,
creator_member_abilities: Optional[Sequence[str]] = None,
data_encryption_metadata: Optional[CollaborationDataEncryptionMetadataArgs] = None,
description: Optional[str] = None,
members: Optional[Sequence[CollaborationMemberArgs]] = None,
name: Optional[str] = None,
query_log_status: Optional[str] = None,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
update_time: Optional[str] = None) -> Collaborationfunc GetCollaboration(ctx *Context, name string, id IDInput, state *CollaborationState, opts ...ResourceOption) (*Collaboration, error)public static Collaboration Get(string name, Input<string> id, CollaborationState? state, CustomResourceOptions? opts = null)public static Collaboration get(String name, Output<String> id, CollaborationState state, CustomResourceOptions options)resources: _: type: aws:cleanrooms:Collaboration get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Analytics
Engine string - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - Arn string
- ARN of the collaboration.
- Create
Time string - Date and time the collaboration was created.
- Creator
Display stringName - Name for the member record for the collaboration creator.
- Creator
Member List<string>Abilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- Data
Encryption CollaborationMetadata Data Encryption Metadata - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- Description string
- Description for a collaboration.
- Members
List<Collaboration
Member> - Additional members of the collaboration which will be invited to join the collaboration. See below.
- Name string
- Name of the collaboration. Collaboration names do not need to be unique.
- Query
Log stringStatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- Key value pairs which tag the collaboration.
- Dictionary<string, string>
- Update
Time string - Date and time the collaboration was last updated.
- Analytics
Engine string - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - Arn string
- ARN of the collaboration.
- Create
Time string - Date and time the collaboration was created.
- Creator
Display stringName - Name for the member record for the collaboration creator.
- Creator
Member []stringAbilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- Data
Encryption CollaborationMetadata Data Encryption Metadata Args - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- Description string
- Description for a collaboration.
- Members
[]Collaboration
Member Args - Additional members of the collaboration which will be invited to join the collaboration. See below.
- Name string
- Name of the collaboration. Collaboration names do not need to be unique.
- Query
Log stringStatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- Key value pairs which tag the collaboration.
- map[string]string
- Update
Time string - Date and time the collaboration was last updated.
- analytics
Engine String - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - arn String
- ARN of the collaboration.
- create
Time String - Date and time the collaboration was created.
- creator
Display StringName - Name for the member record for the collaboration creator.
- creator
Member List<String>Abilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- data
Encryption CollaborationMetadata Data Encryption Metadata - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- description String
- Description for a collaboration.
- members
List<Collaboration
Member> - Additional members of the collaboration which will be invited to join the collaboration. See below.
- name String
- Name of the collaboration. Collaboration names do not need to be unique.
- query
Log StringStatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- Key value pairs which tag the collaboration.
- Map<String,String>
- update
Time String - Date and time the collaboration was last updated.
- analytics
Engine string - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - arn string
- ARN of the collaboration.
- create
Time string - Date and time the collaboration was created.
- creator
Display stringName - Name for the member record for the collaboration creator.
- creator
Member string[]Abilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- data
Encryption CollaborationMetadata Data Encryption Metadata - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- description string
- Description for a collaboration.
- members
Collaboration
Member[] - Additional members of the collaboration which will be invited to join the collaboration. See below.
- name string
- Name of the collaboration. Collaboration names do not need to be unique.
- query
Log stringStatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- Key value pairs which tag the collaboration.
- {[key: string]: string}
- update
Time string - Date and time the collaboration was last updated.
- analytics_
engine str - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - arn str
- ARN of the collaboration.
- create_
time str - Date and time the collaboration was created.
- creator_
display_ strname - Name for the member record for the collaboration creator.
- creator_
member_ Sequence[str]abilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- data_
encryption_ Collaborationmetadata Data Encryption Metadata Args - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- description str
- Description for a collaboration.
- members
Sequence[Collaboration
Member Args] - Additional members of the collaboration which will be invited to join the collaboration. See below.
- name str
- Name of the collaboration. Collaboration names do not need to be unique.
- query_
log_ strstatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- Key value pairs which tag the collaboration.
- Mapping[str, str]
- update_
time str - Date and time the collaboration was last updated.
- analytics
Engine String - Analytics engine used by the collaboration. Valid values are
CLEAN_ROOMS_SQL(deprecated) andSPARK. - arn String
- ARN of the collaboration.
- create
Time String - Date and time the collaboration was created.
- creator
Display StringName - Name for the member record for the collaboration creator.
- creator
Member List<String>Abilities - List of member abilities for the creator of the collaboration. Valid values may be found here.
- data
Encryption Property MapMetadata - Collection of settings which determine how the c3r client will encrypt data for use within this collaboration. See below.
- description String
- Description for a collaboration.
- members List<Property Map>
- Additional members of the collaboration which will be invited to join the collaboration. See below.
- name String
- Name of the collaboration. Collaboration names do not need to be unique.
- query
Log StringStatus Whether members of the collaboration can enable query logs within their own memberships. Valid values may be found here.
The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- Key value pairs which tag the collaboration.
- Map<String>
- update
Time String - Date and time the collaboration was last updated.
Supporting Types
CollaborationDataEncryptionMetadata, CollaborationDataEncryptionMetadataArgs
- Allow
Clear boolText - Whether encrypted tables can contain cleartext data. This is a boolean field.
- Allow
Duplicates bool - Whether Fingerprint columns can contain duplicate entries. This is a boolean field.
- Allow
Joins boolOn Columns With Different Names - Whether Fingerprint columns can be joined on any other Fingerprint column with a different name. This is a boolean field.
- Preserve
Nulls bool - Whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).
- Allow
Clear boolText - Whether encrypted tables can contain cleartext data. This is a boolean field.
- Allow
Duplicates bool - Whether Fingerprint columns can contain duplicate entries. This is a boolean field.
- Allow
Joins boolOn Columns With Different Names - Whether Fingerprint columns can be joined on any other Fingerprint column with a different name. This is a boolean field.
- Preserve
Nulls bool - Whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).
- allow
Clear BooleanText - Whether encrypted tables can contain cleartext data. This is a boolean field.
- allow
Duplicates Boolean - Whether Fingerprint columns can contain duplicate entries. This is a boolean field.
- allow
Joins BooleanOn Columns With Different Names - Whether Fingerprint columns can be joined on any other Fingerprint column with a different name. This is a boolean field.
- preserve
Nulls Boolean - Whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).
- allow
Clear booleanText - Whether encrypted tables can contain cleartext data. This is a boolean field.
- allow
Duplicates boolean - Whether Fingerprint columns can contain duplicate entries. This is a boolean field.
- allow
Joins booleanOn Columns With Different Names - Whether Fingerprint columns can be joined on any other Fingerprint column with a different name. This is a boolean field.
- preserve
Nulls boolean - Whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).
- allow_
clear_ booltext - Whether encrypted tables can contain cleartext data. This is a boolean field.
- allow_
duplicates bool - Whether Fingerprint columns can contain duplicate entries. This is a boolean field.
- allow_
joins_ boolon_ columns_ with_ different_ names - Whether Fingerprint columns can be joined on any other Fingerprint column with a different name. This is a boolean field.
- preserve_
nulls bool - Whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).
- allow
Clear BooleanText - Whether encrypted tables can contain cleartext data. This is a boolean field.
- allow
Duplicates Boolean - Whether Fingerprint columns can contain duplicate entries. This is a boolean field.
- allow
Joins BooleanOn Columns With Different Names - Whether Fingerprint columns can be joined on any other Fingerprint column with a different name. This is a boolean field.
- preserve
Nulls Boolean - Whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).
CollaborationMember, CollaborationMemberArgs
- Account
Id string - Account ID for the invited member.
- Display
Name string - Display name for the invited member.
- Member
Abilities List<string> - List of abilities for the invited member. Valid values may be found here.
- Status string
- For each member included in the collaboration an additional computed attribute of status is added. These values may be found here.
- Account
Id string - Account ID for the invited member.
- Display
Name string - Display name for the invited member.
- Member
Abilities []string - List of abilities for the invited member. Valid values may be found here.
- Status string
- For each member included in the collaboration an additional computed attribute of status is added. These values may be found here.
- account
Id String - Account ID for the invited member.
- display
Name String - Display name for the invited member.
- member
Abilities List<String> - List of abilities for the invited member. Valid values may be found here.
- status String
- For each member included in the collaboration an additional computed attribute of status is added. These values may be found here.
- account
Id string - Account ID for the invited member.
- display
Name string - Display name for the invited member.
- member
Abilities string[] - List of abilities for the invited member. Valid values may be found here.
- status string
- For each member included in the collaboration an additional computed attribute of status is added. These values may be found here.
- account_
id str - Account ID for the invited member.
- display_
name str - Display name for the invited member.
- member_
abilities Sequence[str] - List of abilities for the invited member. Valid values may be found here.
- status str
- For each member included in the collaboration an additional computed attribute of status is added. These values may be found here.
- account
Id String - Account ID for the invited member.
- display
Name String - Display name for the invited member.
- member
Abilities List<String> - List of abilities for the invited member. Valid values may be found here.
- status String
- For each member included in the collaboration an additional computed attribute of status is added. These values may be found here.
Import
Identity Schema
Required
id- (String) ID of the cleanrooms collaboration.
Optional
account_id(String) AWS Account where this resource is managed.region(String) Region where this resource is managed.
Using pulumi import, import aws.cleanrooms.Collaboration using the id. For example:
$ pulumi import aws:cleanrooms/collaboration:Collaboration collaboration 1234abcd-12ab-34cd-56ef-1234567890ab
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
published on Wednesday, Mar 11, 2026 by Pulumi
