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