interface MLPaymentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_cleanrooms.CfnCollaboration.MLPaymentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnCollaboration_MLPaymentConfigProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnCollaboration.MLPaymentConfigProperty |
Python | aws_cdk.aws_cleanrooms.CfnCollaboration.MLPaymentConfigProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnCollaboration » MLPaymentConfigProperty |
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 { aws_cleanrooms as cleanrooms } from 'aws-cdk-lib';
const mLPaymentConfigProperty: cleanrooms.CfnCollaboration.MLPaymentConfigProperty = {
modelInference: {
isResponsible: false,
},
modelTraining: {
isResponsible: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| model | IResolvable | Model | The payment responsibilities accepted by the member for model inference. |
| model | IResolvable | Model | The payment responsibilities accepted by the member for model training. |
modelInference?
Type:
IResolvable | Model
(optional)
The payment responsibilities accepted by the member for model inference.
modelTraining?
Type:
IResolvable | Model
(optional)
The payment responsibilities accepted by the member for model training.

.NET
Go
Java
Python
TypeScript