Package services.cleanrooms
Interface CfnCollaborationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollaborationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-10-26T00:56:05.005Z")
@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 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"))
.build()))
.name("name")
.queryLogStatus("queryLogStatus")
// the properties below are optional
.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCollaborationPropsstatic final classAn implementation forCfnCollaborationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A display name of the collaboration creator.The abilities granted to the collaboration creator.default ObjectThe 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:
-
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.BuilderofCfnCollaborationProps
-