Interface CfnCollaborationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollaborationMixinProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.*;
CfnCollaborationMixinProps cfnCollaborationMixinProps = CfnCollaborationMixinProps.builder()
.allowedResultRegions(List.of("allowedResultRegions"))
.analyticsEngine("analyticsEngine")
.autoApprovedChangeTypes(List.of("autoApprovedChangeTypes"))
.creatorDisplayName("creatorDisplayName")
.creatorMemberAbilities(List.of("creatorMemberAbilities"))
.creatorMlMemberAbilities(MLMemberAbilitiesProperty.builder()
.customMlMemberAbilities(List.of("customMlMemberAbilities"))
.build())
.creatorPaymentConfiguration(PaymentConfigurationProperty.builder()
.jobCompute(JobComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.machineLearning(MLPaymentConfigProperty.builder()
.modelInference(ModelInferencePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.modelTraining(ModelTrainingPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.syntheticDataGeneration(SyntheticDataGenerationPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.queryCompute(QueryComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.dataEncryptionMetadata(DataEncryptionMetadataProperty.builder()
.allowCleartext(false)
.allowDuplicates(false)
.allowJoinsOnColumnsWithDifferentNames(false)
.preserveNulls(false)
.build())
.description("description")
.isMetricsEnabled(false)
.jobLogStatus("jobLogStatus")
.members(List.of(MemberSpecificationProperty.builder()
.accountId("accountId")
.displayName("displayName")
.memberAbilities(List.of("memberAbilities"))
.mlMemberAbilities(MLMemberAbilitiesProperty.builder()
.customMlMemberAbilities(List.of("customMlMemberAbilities"))
.build())
.paymentConfiguration(PaymentConfigurationProperty.builder()
.jobCompute(JobComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.machineLearning(MLPaymentConfigProperty.builder()
.modelInference(ModelInferencePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.modelTraining(ModelTrainingPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.syntheticDataGeneration(SyntheticDataGenerationPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.queryCompute(QueryComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.build()))
.name("name")
.queryLogStatus("queryLogStatus")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCollaborationMixinPropsstatic final classAn implementation forCfnCollaborationMixinProps -
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.default StringA 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.default StringA description of the collaboration provided by the collaboration owner.default ObjectReturns union: eitherBooleanorIResolvabledefault 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.default StringgetName()A human-readable identifier provided by the collaboration owner.default StringAn 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
-
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:
-
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|CAN_RUN_JOB- See Also:
-
getCreatorMlMemberAbilities
The ML member abilities for a collaboration member.Returns union: either
IResolvableorCfnCollaborationPropsMixin.MLMemberAbilitiesProperty- See Also:
-
getCreatorPaymentConfiguration
An object representing the collaboration member's payment responsibilities set by the collaboration creator.Returns union: either
IResolvableorCfnCollaborationPropsMixin.PaymentConfigurationProperty- See Also:
-
getDataEncryptionMetadata
The settings for client-side encryption for cryptographic computing.Returns union: either
IResolvableorCfnCollaborationPropsMixin.DataEncryptionMetadataProperty- See Also:
-
getDescription
A description of the collaboration provided by the collaboration owner.- See Also:
-
getIsMetricsEnabled
Returns union: eitherBooleanorIResolvable- 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: '<'eitherIResolvableorCfnCollaborationPropsMixin.MemberSpecificationProperty>- 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:
-
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
CfnCollaborationMixinProps.BuilderofCfnCollaborationMixinProps
-