Interface CfnMembership.MembershipMLPaymentConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMembership.MembershipMLPaymentConfigProperty.Jsii$Proxy
- Enclosing class:
CfnMembership
@Stability(Stable)
public static interface CfnMembership.MembershipMLPaymentConfigProperty
extends software.amazon.jsii.JsiiSerializable
An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
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.*;
MembershipMLPaymentConfigProperty membershipMLPaymentConfigProperty = MembershipMLPaymentConfigProperty.builder()
.modelInference(MembershipModelInferencePaymentConfigProperty.builder()
.isResponsible(false)
.build())
.modelTraining(MembershipModelTrainingPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.syntheticDataGeneration(MembershipSyntheticDataGenerationPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMembership.MembershipMLPaymentConfigPropertystatic final classAn implementation forCfnMembership.MembershipMLPaymentConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe payment responsibilities accepted by the member for model inference.default ObjectThe payment responsibilities accepted by the member for model training.default ObjectThe payment configuration for synthetic data generation for this machine learning membership.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getModelInference
The payment responsibilities accepted by the member for model inference.Returns union: either
IResolvableorCfnMembership.MembershipModelInferencePaymentConfigProperty- See Also:
-
getModelTraining
The payment responsibilities accepted by the member for model training.Returns union: either
IResolvableorCfnMembership.MembershipModelTrainingPaymentConfigProperty- See Also:
-
getSyntheticDataGeneration
The payment configuration for synthetic data generation for this machine learning membership.Returns union: either
IResolvableorCfnMembership.MembershipSyntheticDataGenerationPaymentConfigProperty- See Also:
-
builder
-