interface MLPaymentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnCollaborationPropsMixin.MLPaymentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnCollaborationPropsMixin_MLPaymentConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnCollaborationPropsMixin.MLPaymentConfigProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnCollaborationPropsMixin.MLPaymentConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnCollaborationPropsMixin » 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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const mLPaymentConfigProperty: cleanrooms_mixins.CfnCollaborationPropsMixin.MLPaymentConfigProperty = {
modelInference: {
isResponsible: false,
},
modelTraining: {
isResponsible: false,
},
syntheticDataGeneration: {
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. |
| synthetic | IResolvable | Synthetic | The payment configuration for machine learning synthetic data generation. |
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.
syntheticDataGeneration?
Type:
IResolvable | Synthetic
(optional)
The payment configuration for machine learning synthetic data generation.

.NET
Go
Java
Python
TypeScript