interface PaymentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnCollaborationPropsMixin.PaymentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnCollaborationPropsMixin_PaymentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnCollaborationPropsMixin.PaymentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnCollaborationPropsMixin.PaymentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnCollaborationPropsMixin » PaymentConfigurationProperty |
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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const paymentConfigurationProperty: cleanrooms_mixins.CfnCollaborationPropsMixin.PaymentConfigurationProperty = {
jobCompute: {
isResponsible: false,
},
machineLearning: {
modelInference: {
isResponsible: false,
},
modelTraining: {
isResponsible: false,
},
syntheticDataGeneration: {
isResponsible: false,
},
},
queryCompute: {
isResponsible: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| job | IResolvable | Job | The compute configuration for the job. |
| machine | IResolvable | MLPayment | An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator. |
| query | IResolvable | Query | The collaboration member's payment responsibilities set by the collaboration creator for query compute costs. |
jobCompute?
Type:
IResolvable | Job
(optional)
The compute configuration for the job.
machineLearning?
Type:
IResolvable | MLPayment
(optional)
An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
queryCompute?
Type:
IResolvable | Query
(optional)
The collaboration member's payment responsibilities set by the collaboration creator for query compute costs.

.NET
Go
Java
Python
TypeScript