Interface CfnCollaborationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollaborationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-27T17:01:58.197Z")
@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 .analyticsEngine("analyticsEngine") .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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCollaborationProps
static final class
An implementation forCfnCollaborationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The analytics engine for the collaboration.A display name of the collaboration creator.The abilities granted to the collaboration creator.default Object
An object representing the collaboration member's payment responsibilities set by the collaboration creator.default Object
The settings for client-side encryption for cryptographic computing.A description of the collaboration provided by the collaboration owner.A list of initial members, not including the creator.getName()
A human-readable identifier provided by the collaboration owner.An indicator as to whether query logging has been enabled or disabled for the collaboration.getTags()
An optional label that you can assign to a resource when you create it.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCreatorDisplayName
A display name of the collaboration creator.- See Also:
-
getCreatorMemberAbilities
The abilities granted to the collaboration creator.Allowed values
CAN_QUERY
|CAN_RECEIVE_RESULTS
- See Also:
-
getDescription
A description of the collaboration provided by the collaboration owner.- See Also:
-
getMembers
A list of initial members, not including the creator.This list is immutable.
- See Also:
-
getName
A human-readable identifier provided by the collaboration owner.Display names are not unique.
- See Also:
-
getQueryLogStatus
An indicator as to whether query logging has been enabled or disabled for the collaboration.- See Also:
-
getAnalyticsEngine
The analytics engine for the collaboration.- See Also:
-
getCreatorPaymentConfiguration
An object representing the collaboration member's payment responsibilities set by the collaboration creator.- See Also:
-
getDataEncryptionMetadata
The settings for client-side encryption for cryptographic computing.- See Also:
-
getTags
An optional label that you can assign to a resource when you create it.Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
- See Also:
-
builder
- Returns:
- a
CfnCollaborationProps.Builder
ofCfnCollaborationProps
-