Interface CfnCollaboration.PaymentConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollaboration.PaymentConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnCollaboration
@Stability(Stable)
public static interface CfnCollaboration.PaymentConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
An object representing the collaboration member's 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.*;
PaymentConfigurationProperty paymentConfigurationProperty = 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())
.syntheticDataGeneration(SyntheticDataGenerationPaymentConfigProperty.builder()
.isResponsible(false)
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCollaboration.PaymentConfigurationPropertystatic final classAn implementation forCfnCollaboration.PaymentConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe compute configuration for the job.default ObjectAn object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.The collaboration member's payment responsibilities set by the collaboration creator for query compute costs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getQueryCompute
The collaboration member's payment responsibilities set by the collaboration creator for query compute costs.Returns union: either
IResolvableorCfnCollaboration.QueryComputePaymentConfigProperty- See Also:
-
getJobCompute
The compute configuration for the job.Returns union: either
IResolvableorCfnCollaboration.JobComputePaymentConfigProperty- See Also:
-
getMachineLearning
An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.Returns union: either
IResolvableorCfnCollaboration.MLPaymentConfigProperty- See Also:
-
builder
-