Interface CfnMembership.MembershipPaymentConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMembership.MembershipPaymentConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnMembership
@Stability(Stable)
public static interface CfnMembership.MembershipPaymentConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
An object representing the payment responsibilities accepted by the collaboration member.
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.*; MembershipPaymentConfigurationProperty membershipPaymentConfigurationProperty = MembershipPaymentConfigurationProperty.builder() .queryCompute(MembershipQueryComputePaymentConfigProperty.builder() .isResponsible(false) .build()) // the properties below are optional .machineLearning(MembershipMLPaymentConfigProperty.builder() .modelInference(MembershipModelInferencePaymentConfigProperty.builder() .isResponsible(false) .build()) .modelTraining(MembershipModelTrainingPaymentConfigProperty.builder() .isResponsible(false) .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMembership.MembershipPaymentConfigurationProperty
static final class
An implementation forCfnMembership.MembershipPaymentConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getQueryCompute
The payment responsibilities accepted by the collaboration member for query compute costs.- See Also:
-
getMachineLearning
The payment responsibilities accepted by the collaboration member for machine learning costs.- See Also:
-
builder
-