Interface CfnCollaborationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollaborationProps.Jsii$Proxy
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")
.description("description")
.name("name")
.queryLogStatus("queryLogStatus")
// the properties below are optional
.allowedResultRegions(List.of("allowedResultRegions"))
.analyticsEngine("analyticsEngine")
.autoApprovedChangeTypes(List.of("autoApprovedChangeTypes"))
.creatorMemberAbilities(List.of("creatorMemberAbilities"))
.creatorMlMemberAbilities(MLMemberAbilitiesProperty.builder()
.customMlMemberAbilities(List.of("customMlMemberAbilities"))
.build())
.creatorPaymentConfiguration(PaymentConfigurationProperty.builder()
.queryCompute(QueryComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
// the properties below are optional
.jobCompute(JobComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.machineLearning(MLPaymentConfigProperty.builder()
.modelInference(ModelInferencePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.modelTraining(ModelTrainingPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.build())
.dataEncryptionMetadata(DataEncryptionMetadataProperty.builder()
.allowCleartext(false)
.allowDuplicates(false)
.allowJoinsOnColumnsWithDifferentNames(false)
.preserveNulls(false)
.build())
.jobLogStatus("jobLogStatus")
.members(List.of(MemberSpecificationProperty.builder()
.accountId("accountId")
.displayName("displayName")
// the properties below are optional
.memberAbilities(List.of("memberAbilities"))
.mlMemberAbilities(MLMemberAbilitiesProperty.builder()
.customMlMemberAbilities(List.of("customMlMemberAbilities"))
.build())
.paymentConfiguration(PaymentConfigurationProperty.builder()
.queryCompute(QueryComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
// the properties below are optional
.jobCompute(JobComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.machineLearning(MLPaymentConfigProperty.builder()
.modelInference(ModelInferencePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.modelTraining(ModelTrainingPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.build())
.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()The AWS Regions where collaboration query results can be stored.default StringThe analytics engine for the collaboration.The types of change requests that are automatically approved for this collaboration.A display name of the collaboration creator.The abilities granted to the collaboration creator.default ObjectThe ML member abilities for a collaboration member.default ObjectAn object representing the collaboration member's payment responsibilities set by the collaboration creator.default ObjectThe settings for client-side encryption for cryptographic computing.A description of the collaboration provided by the collaboration owner.default StringAn indicator as to whether job logging has been enabled or disabled for the collaboration.default ObjectA 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:
-
getDescription
A description of the collaboration provided by the collaboration owner.- 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.When
ENABLED, AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value isDISABLED.- See Also:
-
getAllowedResultRegions
The AWS Regions where collaboration query results can be stored.Returns the list of Region identifiers that were specified when the collaboration was created. This list is used to enforce regional storage policies and compliance requirements.
- See Also:
-
getAnalyticsEngine
The analytics engine for the collaboration.After July 16, 2025, the
CLEAN_ROOMS_SQLparameter will no longer be available.- See Also:
-
getAutoApprovedChangeTypes
The types of change requests that are automatically approved for this collaboration.- See Also:
-
getCreatorMemberAbilities
The abilities granted to the collaboration creator.Allowed values
CAN_QUERY|CAN_RECEIVE_RESULTS|CAN_RUN_JOB- See Also:
-
getCreatorMlMemberAbilities
The ML member abilities for a collaboration member.Returns union: either
IResolvableorCfnCollaboration.MLMemberAbilitiesProperty- See Also:
-
getCreatorPaymentConfiguration
An object representing the collaboration member's payment responsibilities set by the collaboration creator.Returns union: either
IResolvableorCfnCollaboration.PaymentConfigurationProperty- See Also:
-
getDataEncryptionMetadata
The settings for client-side encryption for cryptographic computing.Returns union: either
IResolvableorCfnCollaboration.DataEncryptionMetadataProperty- See Also:
-
getJobLogStatus
An indicator as to whether job logging has been enabled or disabled for the collaboration.When
ENABLED, AWS Clean Rooms logs details about jobs run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value isDISABLED.- See Also:
-
getMembers
A list of initial members, not including the creator.This list is immutable.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnCollaboration.MemberSpecificationProperty>- 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
-