1. Packages
  2. AWS
  3. API Docs
  4. cleanrooms
  5. Membership
AWS v6.74.0 published on Wednesday, Mar 26, 2025 by Pulumi

aws.cleanrooms.Membership

Explore with Pulumi AI

aws logo
AWS v6.74.0 published on Wednesday, Mar 26, 2025 by Pulumi

    Provides a AWS Clean Rooms membership. Memberships are used to join a Clean Rooms collaboration by the invited member.

    Example Usage

    Membership with tags

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const testMembership = new aws.cleanrooms.Membership("test_membership", {
        collaborationId: "1234abcd-12ab-34cd-56ef-1234567890ab",
        queryLogStatus: "DISABLED",
        defaultResultConfiguration: {
            roleArn: "arn:aws:iam::123456789012:role/role-name",
            outputConfiguration: {
                s3: {
                    bucket: "test-bucket",
                    resultFormat: "PARQUET",
                    keyPrefix: "test-prefix",
                },
            },
        },
        tags: {
            Project: "Terraform",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test_membership = aws.cleanrooms.Membership("test_membership",
        collaboration_id="1234abcd-12ab-34cd-56ef-1234567890ab",
        query_log_status="DISABLED",
        default_result_configuration={
            "role_arn": "arn:aws:iam::123456789012:role/role-name",
            "output_configuration": {
                "s3": {
                    "bucket": "test-bucket",
                    "result_format": "PARQUET",
                    "key_prefix": "test-prefix",
                },
            },
        },
        tags={
            "Project": "Terraform",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/cleanrooms"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cleanrooms.NewMembership(ctx, "test_membership", &cleanrooms.MembershipArgs{
    			CollaborationId: pulumi.String("1234abcd-12ab-34cd-56ef-1234567890ab"),
    			QueryLogStatus:  pulumi.String("DISABLED"),
    			DefaultResultConfiguration: &cleanrooms.MembershipDefaultResultConfigurationArgs{
    				RoleArn: pulumi.String("arn:aws:iam::123456789012:role/role-name"),
    				OutputConfiguration: &cleanrooms.MembershipDefaultResultConfigurationOutputConfigurationArgs{
    					S3: &cleanrooms.MembershipDefaultResultConfigurationOutputConfigurationS3Args{
    						Bucket:       pulumi.String("test-bucket"),
    						ResultFormat: pulumi.String("PARQUET"),
    						KeyPrefix:    pulumi.String("test-prefix"),
    					},
    				},
    			},
    			Tags: pulumi.StringMap{
    				"Project": pulumi.String("Terraform"),
    			},
    		})
    		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 testMembership = new Aws.CleanRooms.Membership("test_membership", new()
        {
            CollaborationId = "1234abcd-12ab-34cd-56ef-1234567890ab",
            QueryLogStatus = "DISABLED",
            DefaultResultConfiguration = new Aws.CleanRooms.Inputs.MembershipDefaultResultConfigurationArgs
            {
                RoleArn = "arn:aws:iam::123456789012:role/role-name",
                OutputConfiguration = new Aws.CleanRooms.Inputs.MembershipDefaultResultConfigurationOutputConfigurationArgs
                {
                    S3 = new Aws.CleanRooms.Inputs.MembershipDefaultResultConfigurationOutputConfigurationS3Args
                    {
                        Bucket = "test-bucket",
                        ResultFormat = "PARQUET",
                        KeyPrefix = "test-prefix",
                    },
                },
            },
            Tags = 
            {
                { "Project", "Terraform" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.cleanrooms.Membership;
    import com.pulumi.aws.cleanrooms.MembershipArgs;
    import com.pulumi.aws.cleanrooms.inputs.MembershipDefaultResultConfigurationArgs;
    import com.pulumi.aws.cleanrooms.inputs.MembershipDefaultResultConfigurationOutputConfigurationArgs;
    import com.pulumi.aws.cleanrooms.inputs.MembershipDefaultResultConfigurationOutputConfigurationS3Args;
    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 testMembership = new Membership("testMembership", MembershipArgs.builder()
                .collaborationId("1234abcd-12ab-34cd-56ef-1234567890ab")
                .queryLogStatus("DISABLED")
                .defaultResultConfiguration(MembershipDefaultResultConfigurationArgs.builder()
                    .roleArn("arn:aws:iam::123456789012:role/role-name")
                    .outputConfiguration(MembershipDefaultResultConfigurationOutputConfigurationArgs.builder()
                        .s3(MembershipDefaultResultConfigurationOutputConfigurationS3Args.builder()
                            .bucket("test-bucket")
                            .resultFormat("PARQUET")
                            .keyPrefix("test-prefix")
                            .build())
                        .build())
                    .build())
                .tags(Map.of("Project", "Terraform"))
                .build());
    
        }
    }
    
    resources:
      testMembership:
        type: aws:cleanrooms:Membership
        name: test_membership
        properties:
          collaborationId: 1234abcd-12ab-34cd-56ef-1234567890ab
          queryLogStatus: DISABLED
          defaultResultConfiguration:
            roleArn: arn:aws:iam::123456789012:role/role-name
            outputConfiguration:
              s3:
                bucket: test-bucket
                resultFormat: PARQUET
                keyPrefix: test-prefix
          tags:
            Project: Terraform
    

    Create Membership Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Membership(name: string, args: MembershipArgs, opts?: CustomResourceOptions);
    @overload
    def Membership(resource_name: str,
                   args: MembershipArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Membership(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   collaboration_id: Optional[str] = None,
                   query_log_status: Optional[str] = None,
                   default_result_configuration: Optional[MembershipDefaultResultConfigurationArgs] = None,
                   payment_configuration: Optional[MembershipPaymentConfigurationArgs] = None,
                   tags: Optional[Mapping[str, str]] = None)
    func NewMembership(ctx *Context, name string, args MembershipArgs, opts ...ResourceOption) (*Membership, error)
    public Membership(string name, MembershipArgs args, CustomResourceOptions? opts = null)
    public Membership(String name, MembershipArgs args)
    public Membership(String name, MembershipArgs args, CustomResourceOptions options)
    
    type: aws:cleanrooms:Membership
    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 MembershipArgs
    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 MembershipArgs
    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 MembershipArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MembershipArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MembershipArgs
    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 membershipResource = new Aws.CleanRooms.Membership("membershipResource", new()
    {
        CollaborationId = "string",
        QueryLogStatus = "string",
        DefaultResultConfiguration = new Aws.CleanRooms.Inputs.MembershipDefaultResultConfigurationArgs
        {
            OutputConfiguration = new Aws.CleanRooms.Inputs.MembershipDefaultResultConfigurationOutputConfigurationArgs
            {
                S3 = new Aws.CleanRooms.Inputs.MembershipDefaultResultConfigurationOutputConfigurationS3Args
                {
                    Bucket = "string",
                    ResultFormat = "string",
                    KeyPrefix = "string",
                },
            },
            RoleArn = "string",
        },
        PaymentConfiguration = new Aws.CleanRooms.Inputs.MembershipPaymentConfigurationArgs
        {
            QueryCompute = new Aws.CleanRooms.Inputs.MembershipPaymentConfigurationQueryComputeArgs
            {
                IsResponsible = false,
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := cleanrooms.NewMembership(ctx, "membershipResource", &cleanrooms.MembershipArgs{
    	CollaborationId: pulumi.String("string"),
    	QueryLogStatus:  pulumi.String("string"),
    	DefaultResultConfiguration: &cleanrooms.MembershipDefaultResultConfigurationArgs{
    		OutputConfiguration: &cleanrooms.MembershipDefaultResultConfigurationOutputConfigurationArgs{
    			S3: &cleanrooms.MembershipDefaultResultConfigurationOutputConfigurationS3Args{
    				Bucket:       pulumi.String("string"),
    				ResultFormat: pulumi.String("string"),
    				KeyPrefix:    pulumi.String("string"),
    			},
    		},
    		RoleArn: pulumi.String("string"),
    	},
    	PaymentConfiguration: &cleanrooms.MembershipPaymentConfigurationArgs{
    		QueryCompute: &cleanrooms.MembershipPaymentConfigurationQueryComputeArgs{
    			IsResponsible: pulumi.Bool(false),
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var membershipResource = new Membership("membershipResource", MembershipArgs.builder()
        .collaborationId("string")
        .queryLogStatus("string")
        .defaultResultConfiguration(MembershipDefaultResultConfigurationArgs.builder()
            .outputConfiguration(MembershipDefaultResultConfigurationOutputConfigurationArgs.builder()
                .s3(MembershipDefaultResultConfigurationOutputConfigurationS3Args.builder()
                    .bucket("string")
                    .resultFormat("string")
                    .keyPrefix("string")
                    .build())
                .build())
            .roleArn("string")
            .build())
        .paymentConfiguration(MembershipPaymentConfigurationArgs.builder()
            .queryCompute(MembershipPaymentConfigurationQueryComputeArgs.builder()
                .isResponsible(false)
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    membership_resource = aws.cleanrooms.Membership("membershipResource",
        collaboration_id="string",
        query_log_status="string",
        default_result_configuration={
            "output_configuration": {
                "s3": {
                    "bucket": "string",
                    "result_format": "string",
                    "key_prefix": "string",
                },
            },
            "role_arn": "string",
        },
        payment_configuration={
            "query_compute": {
                "is_responsible": False,
            },
        },
        tags={
            "string": "string",
        })
    
    const membershipResource = new aws.cleanrooms.Membership("membershipResource", {
        collaborationId: "string",
        queryLogStatus: "string",
        defaultResultConfiguration: {
            outputConfiguration: {
                s3: {
                    bucket: "string",
                    resultFormat: "string",
                    keyPrefix: "string",
                },
            },
            roleArn: "string",
        },
        paymentConfiguration: {
            queryCompute: {
                isResponsible: false,
            },
        },
        tags: {
            string: "string",
        },
    });
    
    type: aws:cleanrooms:Membership
    properties:
        collaborationId: string
        defaultResultConfiguration:
            outputConfiguration:
                s3:
                    bucket: string
                    keyPrefix: string
                    resultFormat: string
            roleArn: string
        paymentConfiguration:
            queryCompute:
                isResponsible: false
        queryLogStatus: string
        tags:
            string: string
    

    Membership 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 Membership resource accepts the following input properties:

    CollaborationId string
    The ID of the collaboration to which the member was invited.
    QueryLogStatus string
    An indicator as to whether query logging has been enabled or disabled for the membership.
    DefaultResultConfiguration MembershipDefaultResultConfiguration
    The default configuration for a query result.
    PaymentConfiguration MembershipPaymentConfiguration
    Tags Dictionary<string, string>
    Key value pairs which tag the membership.
    CollaborationId string
    The ID of the collaboration to which the member was invited.
    QueryLogStatus string
    An indicator as to whether query logging has been enabled or disabled for the membership.
    DefaultResultConfiguration MembershipDefaultResultConfigurationArgs
    The default configuration for a query result.
    PaymentConfiguration MembershipPaymentConfigurationArgs
    Tags map[string]string
    Key value pairs which tag the membership.
    collaborationId String
    The ID of the collaboration to which the member was invited.
    queryLogStatus String
    An indicator as to whether query logging has been enabled or disabled for the membership.
    defaultResultConfiguration MembershipDefaultResultConfiguration
    The default configuration for a query result.
    paymentConfiguration MembershipPaymentConfiguration
    tags Map<String,String>
    Key value pairs which tag the membership.
    collaborationId string
    The ID of the collaboration to which the member was invited.
    queryLogStatus string
    An indicator as to whether query logging has been enabled or disabled for the membership.
    defaultResultConfiguration MembershipDefaultResultConfiguration
    The default configuration for a query result.
    paymentConfiguration MembershipPaymentConfiguration
    tags {[key: string]: string}
    Key value pairs which tag the membership.
    collaboration_id str
    The ID of the collaboration to which the member was invited.
    query_log_status str
    An indicator as to whether query logging has been enabled or disabled for the membership.
    default_result_configuration MembershipDefaultResultConfigurationArgs
    The default configuration for a query result.
    payment_configuration MembershipPaymentConfigurationArgs
    tags Mapping[str, str]
    Key value pairs which tag the membership.
    collaborationId String
    The ID of the collaboration to which the member was invited.
    queryLogStatus String
    An indicator as to whether query logging has been enabled or disabled for the membership.
    defaultResultConfiguration Property Map
    The default configuration for a query result.
    paymentConfiguration Property Map
    tags Map<String>
    Key value pairs which tag the membership.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Membership resource produces the following output properties:

    Arn string
    The ARN of the membership.
    CollaborationArn string
    The ARN of the joined collaboration.
    CollaborationCreatorAccountId string
    The account ID of the collaboration's creator.
    CollaborationCreatorDisplayName string
    The display name of the collaboration's creator.
    CollaborationName string
    The name of the joined collaboration.
    CreateTime string
    The date and time the membership was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    MemberAbilities List<string>
    The list of abilities for the invited member.
    Status string
    The status of the membership.
    TagsAll Dictionary<string, string>

    Deprecated: Please use tags instead.

    UpdateTime string
    The date and time the membership was last updated.
    Arn string
    The ARN of the membership.
    CollaborationArn string
    The ARN of the joined collaboration.
    CollaborationCreatorAccountId string
    The account ID of the collaboration's creator.
    CollaborationCreatorDisplayName string
    The display name of the collaboration's creator.
    CollaborationName string
    The name of the joined collaboration.
    CreateTime string
    The date and time the membership was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    MemberAbilities []string
    The list of abilities for the invited member.
    Status string
    The status of the membership.
    TagsAll map[string]string

    Deprecated: Please use tags instead.

    UpdateTime string
    The date and time the membership was last updated.
    arn String
    The ARN of the membership.
    collaborationArn String
    The ARN of the joined collaboration.
    collaborationCreatorAccountId String
    The account ID of the collaboration's creator.
    collaborationCreatorDisplayName String
    The display name of the collaboration's creator.
    collaborationName String
    The name of the joined collaboration.
    createTime String
    The date and time the membership was created.
    id String
    The provider-assigned unique ID for this managed resource.
    memberAbilities List<String>
    The list of abilities for the invited member.
    status String
    The status of the membership.
    tagsAll Map<String,String>

    Deprecated: Please use tags instead.

    updateTime String
    The date and time the membership was last updated.
    arn string
    The ARN of the membership.
    collaborationArn string
    The ARN of the joined collaboration.
    collaborationCreatorAccountId string
    The account ID of the collaboration's creator.
    collaborationCreatorDisplayName string
    The display name of the collaboration's creator.
    collaborationName string
    The name of the joined collaboration.
    createTime string
    The date and time the membership was created.
    id string
    The provider-assigned unique ID for this managed resource.
    memberAbilities string[]
    The list of abilities for the invited member.
    status string
    The status of the membership.
    tagsAll {[key: string]: string}

    Deprecated: Please use tags instead.

    updateTime string
    The date and time the membership was last updated.
    arn str
    The ARN of the membership.
    collaboration_arn str
    The ARN of the joined collaboration.
    collaboration_creator_account_id str
    The account ID of the collaboration's creator.
    collaboration_creator_display_name str
    The display name of the collaboration's creator.
    collaboration_name str
    The name of the joined collaboration.
    create_time str
    The date and time the membership was created.
    id str
    The provider-assigned unique ID for this managed resource.
    member_abilities Sequence[str]
    The list of abilities for the invited member.
    status str
    The status of the membership.
    tags_all Mapping[str, str]

    Deprecated: Please use tags instead.

    update_time str
    The date and time the membership was last updated.
    arn String
    The ARN of the membership.
    collaborationArn String
    The ARN of the joined collaboration.
    collaborationCreatorAccountId String
    The account ID of the collaboration's creator.
    collaborationCreatorDisplayName String
    The display name of the collaboration's creator.
    collaborationName String
    The name of the joined collaboration.
    createTime String
    The date and time the membership was created.
    id String
    The provider-assigned unique ID for this managed resource.
    memberAbilities List<String>
    The list of abilities for the invited member.
    status String
    The status of the membership.
    tagsAll Map<String>

    Deprecated: Please use tags instead.

    updateTime String
    The date and time the membership was last updated.

    Look up Existing Membership Resource

    Get an existing Membership 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?: MembershipState, opts?: CustomResourceOptions): Membership
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            collaboration_arn: Optional[str] = None,
            collaboration_creator_account_id: Optional[str] = None,
            collaboration_creator_display_name: Optional[str] = None,
            collaboration_id: Optional[str] = None,
            collaboration_name: Optional[str] = None,
            create_time: Optional[str] = None,
            default_result_configuration: Optional[MembershipDefaultResultConfigurationArgs] = None,
            member_abilities: Optional[Sequence[str]] = None,
            payment_configuration: Optional[MembershipPaymentConfigurationArgs] = None,
            query_log_status: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            update_time: Optional[str] = None) -> Membership
    func GetMembership(ctx *Context, name string, id IDInput, state *MembershipState, opts ...ResourceOption) (*Membership, error)
    public static Membership Get(string name, Input<string> id, MembershipState? state, CustomResourceOptions? opts = null)
    public static Membership get(String name, Output<String> id, MembershipState state, CustomResourceOptions options)
    resources:  _:    type: aws:cleanrooms:Membership    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.
    The following state arguments are supported:
    Arn string
    The ARN of the membership.
    CollaborationArn string
    The ARN of the joined collaboration.
    CollaborationCreatorAccountId string
    The account ID of the collaboration's creator.
    CollaborationCreatorDisplayName string
    The display name of the collaboration's creator.
    CollaborationId string
    The ID of the collaboration to which the member was invited.
    CollaborationName string
    The name of the joined collaboration.
    CreateTime string
    The date and time the membership was created.
    DefaultResultConfiguration MembershipDefaultResultConfiguration
    The default configuration for a query result.
    MemberAbilities List<string>
    The list of abilities for the invited member.
    PaymentConfiguration MembershipPaymentConfiguration
    QueryLogStatus string
    An indicator as to whether query logging has been enabled or disabled for the membership.
    Status string
    The status of the membership.
    Tags Dictionary<string, string>
    Key value pairs which tag the membership.
    TagsAll Dictionary<string, string>

    Deprecated: Please use tags instead.

    UpdateTime string
    The date and time the membership was last updated.
    Arn string
    The ARN of the membership.
    CollaborationArn string
    The ARN of the joined collaboration.
    CollaborationCreatorAccountId string
    The account ID of the collaboration's creator.
    CollaborationCreatorDisplayName string
    The display name of the collaboration's creator.
    CollaborationId string
    The ID of the collaboration to which the member was invited.
    CollaborationName string
    The name of the joined collaboration.
    CreateTime string
    The date and time the membership was created.
    DefaultResultConfiguration MembershipDefaultResultConfigurationArgs
    The default configuration for a query result.
    MemberAbilities []string
    The list of abilities for the invited member.
    PaymentConfiguration MembershipPaymentConfigurationArgs
    QueryLogStatus string
    An indicator as to whether query logging has been enabled or disabled for the membership.
    Status string
    The status of the membership.
    Tags map[string]string
    Key value pairs which tag the membership.
    TagsAll map[string]string

    Deprecated: Please use tags instead.

    UpdateTime string
    The date and time the membership was last updated.
    arn String
    The ARN of the membership.
    collaborationArn String
    The ARN of the joined collaboration.
    collaborationCreatorAccountId String
    The account ID of the collaboration's creator.
    collaborationCreatorDisplayName String
    The display name of the collaboration's creator.
    collaborationId String
    The ID of the collaboration to which the member was invited.
    collaborationName String
    The name of the joined collaboration.
    createTime String
    The date and time the membership was created.
    defaultResultConfiguration MembershipDefaultResultConfiguration
    The default configuration for a query result.
    memberAbilities List<String>
    The list of abilities for the invited member.
    paymentConfiguration MembershipPaymentConfiguration
    queryLogStatus String
    An indicator as to whether query logging has been enabled or disabled for the membership.
    status String
    The status of the membership.
    tags Map<String,String>
    Key value pairs which tag the membership.
    tagsAll Map<String,String>

    Deprecated: Please use tags instead.

    updateTime String
    The date and time the membership was last updated.
    arn string
    The ARN of the membership.
    collaborationArn string
    The ARN of the joined collaboration.
    collaborationCreatorAccountId string
    The account ID of the collaboration's creator.
    collaborationCreatorDisplayName string
    The display name of the collaboration's creator.
    collaborationId string
    The ID of the collaboration to which the member was invited.
    collaborationName string
    The name of the joined collaboration.
    createTime string
    The date and time the membership was created.
    defaultResultConfiguration MembershipDefaultResultConfiguration
    The default configuration for a query result.
    memberAbilities string[]
    The list of abilities for the invited member.
    paymentConfiguration MembershipPaymentConfiguration
    queryLogStatus string
    An indicator as to whether query logging has been enabled or disabled for the membership.
    status string
    The status of the membership.
    tags {[key: string]: string}
    Key value pairs which tag the membership.
    tagsAll {[key: string]: string}

    Deprecated: Please use tags instead.

    updateTime string
    The date and time the membership was last updated.
    arn str
    The ARN of the membership.
    collaboration_arn str
    The ARN of the joined collaboration.
    collaboration_creator_account_id str
    The account ID of the collaboration's creator.
    collaboration_creator_display_name str
    The display name of the collaboration's creator.
    collaboration_id str
    The ID of the collaboration to which the member was invited.
    collaboration_name str
    The name of the joined collaboration.
    create_time str
    The date and time the membership was created.
    default_result_configuration MembershipDefaultResultConfigurationArgs
    The default configuration for a query result.
    member_abilities Sequence[str]
    The list of abilities for the invited member.
    payment_configuration MembershipPaymentConfigurationArgs
    query_log_status str
    An indicator as to whether query logging has been enabled or disabled for the membership.
    status str
    The status of the membership.
    tags Mapping[str, str]
    Key value pairs which tag the membership.
    tags_all Mapping[str, str]

    Deprecated: Please use tags instead.

    update_time str
    The date and time the membership was last updated.
    arn String
    The ARN of the membership.
    collaborationArn String
    The ARN of the joined collaboration.
    collaborationCreatorAccountId String
    The account ID of the collaboration's creator.
    collaborationCreatorDisplayName String
    The display name of the collaboration's creator.
    collaborationId String
    The ID of the collaboration to which the member was invited.
    collaborationName String
    The name of the joined collaboration.
    createTime String
    The date and time the membership was created.
    defaultResultConfiguration Property Map
    The default configuration for a query result.
    memberAbilities List<String>
    The list of abilities for the invited member.
    paymentConfiguration Property Map
    queryLogStatus String
    An indicator as to whether query logging has been enabled or disabled for the membership.
    status String
    The status of the membership.
    tags Map<String>
    Key value pairs which tag the membership.
    tagsAll Map<String>

    Deprecated: Please use tags instead.

    updateTime String
    The date and time the membership was last updated.

    Supporting Types

    MembershipDefaultResultConfiguration, MembershipDefaultResultConfigurationArgs

    OutputConfiguration MembershipDefaultResultConfigurationOutputConfiguration
    RoleArn string
    The ARN of the IAM role which will be used to create the membership.

    • output_configuration.s3.bucket - (Required) - The name of the S3 bucket where the query results will be stored.
    • output_configuration.s3.result_format - (Required) - The format of the query results. Valid values are PARQUET and CSV.
    • output_configuration.s3.key_prefix - (Optional) - The prefix used for the query results.
    OutputConfiguration MembershipDefaultResultConfigurationOutputConfiguration
    RoleArn string
    The ARN of the IAM role which will be used to create the membership.

    • output_configuration.s3.bucket - (Required) - The name of the S3 bucket where the query results will be stored.
    • output_configuration.s3.result_format - (Required) - The format of the query results. Valid values are PARQUET and CSV.
    • output_configuration.s3.key_prefix - (Optional) - The prefix used for the query results.
    outputConfiguration MembershipDefaultResultConfigurationOutputConfiguration
    roleArn String
    The ARN of the IAM role which will be used to create the membership.

    • output_configuration.s3.bucket - (Required) - The name of the S3 bucket where the query results will be stored.
    • output_configuration.s3.result_format - (Required) - The format of the query results. Valid values are PARQUET and CSV.
    • output_configuration.s3.key_prefix - (Optional) - The prefix used for the query results.
    outputConfiguration MembershipDefaultResultConfigurationOutputConfiguration
    roleArn string
    The ARN of the IAM role which will be used to create the membership.

    • output_configuration.s3.bucket - (Required) - The name of the S3 bucket where the query results will be stored.
    • output_configuration.s3.result_format - (Required) - The format of the query results. Valid values are PARQUET and CSV.
    • output_configuration.s3.key_prefix - (Optional) - The prefix used for the query results.
    output_configuration MembershipDefaultResultConfigurationOutputConfiguration
    role_arn str
    The ARN of the IAM role which will be used to create the membership.

    • output_configuration.s3.bucket - (Required) - The name of the S3 bucket where the query results will be stored.
    • output_configuration.s3.result_format - (Required) - The format of the query results. Valid values are PARQUET and CSV.
    • output_configuration.s3.key_prefix - (Optional) - The prefix used for the query results.
    outputConfiguration Property Map
    roleArn String
    The ARN of the IAM role which will be used to create the membership.

    • output_configuration.s3.bucket - (Required) - The name of the S3 bucket where the query results will be stored.
    • output_configuration.s3.result_format - (Required) - The format of the query results. Valid values are PARQUET and CSV.
    • output_configuration.s3.key_prefix - (Optional) - The prefix used for the query results.

    MembershipDefaultResultConfigurationOutputConfiguration, MembershipDefaultResultConfigurationOutputConfigurationArgs

    MembershipDefaultResultConfigurationOutputConfigurationS3, MembershipDefaultResultConfigurationOutputConfigurationS3Args

    Bucket string
    ResultFormat string
    KeyPrefix string
    Bucket string
    ResultFormat string
    KeyPrefix string
    bucket String
    resultFormat String
    keyPrefix String
    bucket string
    resultFormat string
    keyPrefix string
    bucket String
    resultFormat String
    keyPrefix String

    MembershipPaymentConfiguration, MembershipPaymentConfigurationArgs

    MembershipPaymentConfigurationQueryCompute, MembershipPaymentConfigurationQueryComputeArgs

    IsResponsible bool
    Indicates whether the collaboration member has accepted to pay for query compute costs.
    IsResponsible bool
    Indicates whether the collaboration member has accepted to pay for query compute costs.
    isResponsible Boolean
    Indicates whether the collaboration member has accepted to pay for query compute costs.
    isResponsible boolean
    Indicates whether the collaboration member has accepted to pay for query compute costs.
    is_responsible bool
    Indicates whether the collaboration member has accepted to pay for query compute costs.
    isResponsible Boolean
    Indicates whether the collaboration member has accepted to pay for query compute costs.

    Import

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

    $ pulumi import aws:cleanrooms/membership:Membership membership 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 aws Terraform Provider.
    aws logo
    AWS v6.74.0 published on Wednesday, Mar 26, 2025 by Pulumi