aws.cleanrooms.Membership
Explore with Pulumi AI
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:
- Collaboration
Id string - The ID of the collaboration to which the member was invited.
- Query
Log stringStatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- Default
Result MembershipConfiguration Default Result Configuration - The default configuration for a query result.
- Payment
Configuration MembershipPayment Configuration - Dictionary<string, string>
- Key value pairs which tag the membership.
- Collaboration
Id string - The ID of the collaboration to which the member was invited.
- Query
Log stringStatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- Default
Result MembershipConfiguration Default Result Configuration Args - The default configuration for a query result.
- Payment
Configuration MembershipPayment Configuration Args - map[string]string
- Key value pairs which tag the membership.
- collaboration
Id String - The ID of the collaboration to which the member was invited.
- query
Log StringStatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- default
Result MembershipConfiguration Default Result Configuration - The default configuration for a query result.
- payment
Configuration MembershipPayment Configuration - Map<String,String>
- Key value pairs which tag the membership.
- collaboration
Id string - The ID of the collaboration to which the member was invited.
- query
Log stringStatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- default
Result MembershipConfiguration Default Result Configuration - The default configuration for a query result.
- payment
Configuration MembershipPayment Configuration - {[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_ strstatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- default_
result_ Membershipconfiguration Default Result Configuration Args - The default configuration for a query result.
- payment_
configuration MembershipPayment Configuration Args - Mapping[str, str]
- Key value pairs which tag the membership.
- collaboration
Id String - The ID of the collaboration to which the member was invited.
- query
Log StringStatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- default
Result Property MapConfiguration - The default configuration for a query result.
- payment
Configuration Property Map - 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.
- Collaboration
Arn string - The ARN of the joined collaboration.
- Collaboration
Creator stringAccount Id - The account ID of the collaboration's creator.
- Collaboration
Creator stringDisplay Name - The display name of the collaboration's creator.
- Collaboration
Name string - The name of the joined collaboration.
- Create
Time string - The date and time the membership was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Member
Abilities List<string> - The list of abilities for the invited member.
- Status string
- The status of the membership.
- Dictionary<string, string>
- Update
Time string - The date and time the membership was last updated.
- Arn string
- The ARN of the membership.
- Collaboration
Arn string - The ARN of the joined collaboration.
- Collaboration
Creator stringAccount Id - The account ID of the collaboration's creator.
- Collaboration
Creator stringDisplay Name - The display name of the collaboration's creator.
- Collaboration
Name string - The name of the joined collaboration.
- Create
Time string - The date and time the membership was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Member
Abilities []string - The list of abilities for the invited member.
- Status string
- The status of the membership.
- map[string]string
- Update
Time string - The date and time the membership was last updated.
- arn String
- The ARN of the membership.
- collaboration
Arn String - The ARN of the joined collaboration.
- collaboration
Creator StringAccount Id - The account ID of the collaboration's creator.
- collaboration
Creator StringDisplay Name - The display name of the collaboration's creator.
- collaboration
Name String - The name of the joined collaboration.
- create
Time String - The date and time the membership was created.
- id String
- The provider-assigned unique ID for this managed resource.
- member
Abilities List<String> - The list of abilities for the invited member.
- status String
- The status of the membership.
- Map<String,String>
- update
Time String - The date and time the membership was last updated.
- arn string
- The ARN of the membership.
- collaboration
Arn string - The ARN of the joined collaboration.
- collaboration
Creator stringAccount Id - The account ID of the collaboration's creator.
- collaboration
Creator stringDisplay Name - The display name of the collaboration's creator.
- collaboration
Name string - The name of the joined collaboration.
- create
Time string - The date and time the membership was created.
- id string
- The provider-assigned unique ID for this managed resource.
- member
Abilities string[] - The list of abilities for the invited member.
- status string
- The status of the membership.
- {[key: string]: string}
- update
Time 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_ straccount_ id - The account ID of the collaboration's creator.
- collaboration_
creator_ strdisplay_ name - 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.
- Mapping[str, str]
- update_
time str - The date and time the membership was last updated.
- arn String
- The ARN of the membership.
- collaboration
Arn String - The ARN of the joined collaboration.
- collaboration
Creator StringAccount Id - The account ID of the collaboration's creator.
- collaboration
Creator StringDisplay Name - The display name of the collaboration's creator.
- collaboration
Name String - The name of the joined collaboration.
- create
Time String - The date and time the membership was created.
- id String
- The provider-assigned unique ID for this managed resource.
- member
Abilities List<String> - The list of abilities for the invited member.
- status String
- The status of the membership.
- Map<String>
- update
Time 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.
- Arn string
- The ARN of the membership.
- Collaboration
Arn string - The ARN of the joined collaboration.
- Collaboration
Creator stringAccount Id - The account ID of the collaboration's creator.
- Collaboration
Creator stringDisplay Name - The display name of the collaboration's creator.
- Collaboration
Id string - The ID of the collaboration to which the member was invited.
- Collaboration
Name string - The name of the joined collaboration.
- Create
Time string - The date and time the membership was created.
- Default
Result MembershipConfiguration Default Result Configuration - The default configuration for a query result.
- Member
Abilities List<string> - The list of abilities for the invited member.
- Payment
Configuration MembershipPayment Configuration - Query
Log stringStatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- Status string
- The status of the membership.
- Dictionary<string, string>
- Key value pairs which tag the membership.
- Dictionary<string, string>
- Update
Time string - The date and time the membership was last updated.
- Arn string
- The ARN of the membership.
- Collaboration
Arn string - The ARN of the joined collaboration.
- Collaboration
Creator stringAccount Id - The account ID of the collaboration's creator.
- Collaboration
Creator stringDisplay Name - The display name of the collaboration's creator.
- Collaboration
Id string - The ID of the collaboration to which the member was invited.
- Collaboration
Name string - The name of the joined collaboration.
- Create
Time string - The date and time the membership was created.
- Default
Result MembershipConfiguration Default Result Configuration Args - The default configuration for a query result.
- Member
Abilities []string - The list of abilities for the invited member.
- Payment
Configuration MembershipPayment Configuration Args - Query
Log stringStatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- Status string
- The status of the membership.
- map[string]string
- Key value pairs which tag the membership.
- map[string]string
- Update
Time string - The date and time the membership was last updated.
- arn String
- The ARN of the membership.
- collaboration
Arn String - The ARN of the joined collaboration.
- collaboration
Creator StringAccount Id - The account ID of the collaboration's creator.
- collaboration
Creator StringDisplay Name - The display name of the collaboration's creator.
- collaboration
Id String - The ID of the collaboration to which the member was invited.
- collaboration
Name String - The name of the joined collaboration.
- create
Time String - The date and time the membership was created.
- default
Result MembershipConfiguration Default Result Configuration - The default configuration for a query result.
- member
Abilities List<String> - The list of abilities for the invited member.
- payment
Configuration MembershipPayment Configuration - query
Log StringStatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- status String
- The status of the membership.
- Map<String,String>
- Key value pairs which tag the membership.
- Map<String,String>
- update
Time String - The date and time the membership was last updated.
- arn string
- The ARN of the membership.
- collaboration
Arn string - The ARN of the joined collaboration.
- collaboration
Creator stringAccount Id - The account ID of the collaboration's creator.
- collaboration
Creator stringDisplay Name - The display name of the collaboration's creator.
- collaboration
Id string - The ID of the collaboration to which the member was invited.
- collaboration
Name string - The name of the joined collaboration.
- create
Time string - The date and time the membership was created.
- default
Result MembershipConfiguration Default Result Configuration - The default configuration for a query result.
- member
Abilities string[] - The list of abilities for the invited member.
- payment
Configuration MembershipPayment Configuration - query
Log stringStatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- status string
- The status of the membership.
- {[key: string]: string}
- Key value pairs which tag the membership.
- {[key: string]: string}
- update
Time 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_ straccount_ id - The account ID of the collaboration's creator.
- collaboration_
creator_ strdisplay_ name - 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_ Membershipconfiguration Default Result Configuration Args - The default configuration for a query result.
- member_
abilities Sequence[str] - The list of abilities for the invited member.
- payment_
configuration MembershipPayment Configuration Args - query_
log_ strstatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- status str
- The status of the membership.
- Mapping[str, str]
- Key value pairs which tag the membership.
- Mapping[str, str]
- update_
time str - The date and time the membership was last updated.
- arn String
- The ARN of the membership.
- collaboration
Arn String - The ARN of the joined collaboration.
- collaboration
Creator StringAccount Id - The account ID of the collaboration's creator.
- collaboration
Creator StringDisplay Name - The display name of the collaboration's creator.
- collaboration
Id String - The ID of the collaboration to which the member was invited.
- collaboration
Name String - The name of the joined collaboration.
- create
Time String - The date and time the membership was created.
- default
Result Property MapConfiguration - The default configuration for a query result.
- member
Abilities List<String> - The list of abilities for the invited member.
- payment
Configuration Property Map - query
Log StringStatus - An indicator as to whether query logging has been enabled or disabled for the membership.
- status String
- The status of the membership.
- Map<String>
- Key value pairs which tag the membership.
- Map<String>
- update
Time String - The date and time the membership was last updated.
Supporting Types
MembershipDefaultResultConfiguration, MembershipDefaultResultConfigurationArgs
- Output
Configuration MembershipDefault Result Configuration Output Configuration - Role
Arn 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 arePARQUET
andCSV
.output_configuration.s3.key_prefix
- (Optional) - The prefix used for the query results.
- Output
Configuration MembershipDefault Result Configuration Output Configuration - Role
Arn 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 arePARQUET
andCSV
.output_configuration.s3.key_prefix
- (Optional) - The prefix used for the query results.
- output
Configuration MembershipDefault Result Configuration Output Configuration - role
Arn 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 arePARQUET
andCSV
.output_configuration.s3.key_prefix
- (Optional) - The prefix used for the query results.
- output
Configuration MembershipDefault Result Configuration Output Configuration - role
Arn 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 arePARQUET
andCSV
.output_configuration.s3.key_prefix
- (Optional) - The prefix used for the query results.
- output_
configuration MembershipDefault Result Configuration Output Configuration - 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 arePARQUET
andCSV
.output_configuration.s3.key_prefix
- (Optional) - The prefix used for the query results.
- output
Configuration Property Map - role
Arn 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 arePARQUET
andCSV
.output_configuration.s3.key_prefix
- (Optional) - The prefix used for the query results.
MembershipDefaultResultConfigurationOutputConfiguration, MembershipDefaultResultConfigurationOutputConfigurationArgs
MembershipDefaultResultConfigurationOutputConfigurationS3, MembershipDefaultResultConfigurationOutputConfigurationS3Args
- Bucket string
- Result
Format string - Key
Prefix string
- Bucket string
- Result
Format string - Key
Prefix string
- bucket String
- result
Format String - key
Prefix String
- bucket string
- result
Format string - key
Prefix string
- bucket str
- result_
format str - key_
prefix str
- bucket String
- result
Format String - key
Prefix String
MembershipPaymentConfiguration, MembershipPaymentConfigurationArgs
MembershipPaymentConfigurationQueryCompute, MembershipPaymentConfigurationQueryComputeArgs
- Is
Responsible bool - 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.
- is
Responsible Boolean - Indicates whether the collaboration member has accepted to pay for query compute costs.
- is
Responsible 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.
- is
Responsible 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.