Interface CfnCollaborationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCollaborationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:03.628Z") @Stability(Stable) public interface CfnCollaborationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCollaboration.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cleanrooms.*;
 CfnCollaborationProps cfnCollaborationProps = CfnCollaborationProps.builder()
         .creatorDisplayName("creatorDisplayName")
         .creatorMemberAbilities(List.of("creatorMemberAbilities"))
         .description("description")
         .members(List.of(MemberSpecificationProperty.builder()
                 .accountId("accountId")
                 .displayName("displayName")
                 .memberAbilities(List.of("memberAbilities"))
                 // the properties below are optional
                 .paymentConfiguration(PaymentConfigurationProperty.builder()
                         .queryCompute(QueryComputePaymentConfigProperty.builder()
                                 .isResponsible(false)
                                 .build())
                         .build())
                 .build()))
         .name("name")
         .queryLogStatus("queryLogStatus")
         // the properties below are optional
         .creatorPaymentConfiguration(PaymentConfigurationProperty.builder()
                 .queryCompute(QueryComputePaymentConfigProperty.builder()
                         .isResponsible(false)
                         .build())
                 .build())
         .dataEncryptionMetadata(DataEncryptionMetadataProperty.builder()
                 .allowCleartext(false)
                 .allowDuplicates(false)
                 .allowJoinsOnColumnsWithDifferentNames(false)
                 .preserveNulls(false)
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: