interface MLPaymentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnCollaborationPropsMixin.MLPaymentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnCollaborationPropsMixin_MLPaymentConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnCollaborationPropsMixin.MLPaymentConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnCollaborationPropsMixin.MLPaymentConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » 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 { aws_cleanrooms as cleanrooms } from '@aws-cdk/cfn-property-mixins';
const mLPaymentConfigProperty: cleanrooms.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