Interface CfnMembershipMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMembershipMixinProps.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.*;
CfnMembershipMixinProps cfnMembershipMixinProps = CfnMembershipMixinProps.builder()
.collaborationIdentifier("collaborationIdentifier")
.defaultJobResultConfiguration(MembershipProtectedJobResultConfigurationProperty.builder()
.outputConfiguration(MembershipProtectedJobOutputConfigurationProperty.builder()
.s3(ProtectedJobS3OutputConfigurationInputProperty.builder()
.bucket("bucket")
.keyPrefix("keyPrefix")
.build())
.build())
.roleArn("roleArn")
.build())
.defaultResultConfiguration(MembershipProtectedQueryResultConfigurationProperty.builder()
.outputConfiguration(MembershipProtectedQueryOutputConfigurationProperty.builder()
.s3(ProtectedQueryS3OutputConfigurationProperty.builder()
.bucket("bucket")
.keyPrefix("keyPrefix")
.resultFormat("resultFormat")
.singleFileOutput(false)
.build())
.build())
.roleArn("roleArn")
.build())
.isMetricsEnabled(false)
.jobLogStatus("jobLogStatus")
.paymentConfiguration(MembershipPaymentConfigurationProperty.builder()
.jobCompute(MembershipJobComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.machineLearning(MembershipMLPaymentConfigProperty.builder()
.modelInference(MembershipModelInferencePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.modelTraining(MembershipModelTrainingPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.syntheticDataGeneration(MembershipSyntheticDataGenerationPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.queryCompute(MembershipQueryComputePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.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 forCfnMembershipMixinPropsstatic final classAn implementation forCfnMembershipMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe unique ID for the associated collaboration.default ObjectThe default job result configuration for the membership.default ObjectThe default protected query result configuration as specified by the member who can receive results.default ObjectReturns union: eitherBooleanorIResolvabledefault StringAn indicator as to whether job logging has been enabled or disabled for the collaboration.default ObjectThe payment responsibilities accepted by the collaboration member.default StringAn indicator as to whether query logging has been enabled or disabled for the membership.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
-
getCollaborationIdentifier
The unique ID for the associated collaboration.- See Also:
-
getDefaultJobResultConfiguration
The default job result configuration for the membership.Returns union: either
IResolvableorCfnMembershipPropsMixin.MembershipProtectedJobResultConfigurationProperty- See Also:
-
getDefaultResultConfiguration
The default protected query result configuration as specified by the member who can receive results.Returns union: either
IResolvableorCfnMembershipPropsMixin.MembershipProtectedQueryResultConfigurationProperty- 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:
-
getPaymentConfiguration
The payment responsibilities accepted by the collaboration member.Returns union: either
IResolvableorCfnMembershipPropsMixin.MembershipPaymentConfigurationProperty- See Also:
-
getQueryLogStatus
An indicator as to whether query logging has been enabled or disabled for the membership.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
CfnMembershipMixinProps.BuilderofCfnMembershipMixinProps
-