interface MembershipModelTrainingPaymentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnMembershipPropsMixin.MembershipModelTrainingPaymentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnMembershipPropsMixin_MembershipModelTrainingPaymentConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnMembershipPropsMixin.MembershipModelTrainingPaymentConfigProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnMembershipPropsMixin.MembershipModelTrainingPaymentConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnMembershipPropsMixin » MembershipModelTrainingPaymentConfigProperty |
An object representing the collaboration member's model training 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 membershipModelTrainingPaymentConfigProperty: cleanrooms_mixins.CfnMembershipPropsMixin.MembershipModelTrainingPaymentConfigProperty = {
isResponsible: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | Indicates whether the collaboration member has accepted to pay for model training costs ( TRUE ) or has not accepted to pay for model training costs ( FALSE ). |
isResponsible?
Type:
boolean | IResolvable
(optional)
Indicates whether the collaboration member has accepted to pay for model training costs ( TRUE ) or has not accepted to pay for model training costs ( FALSE ).
If the collaboration creator has not specified anyone to pay for model training costs, then the member who can query is the default payer.
An error message is returned for the following reasons:
- If you set the value to
FALSEbut you are responsible to pay for model training costs. - If you set the value to
TRUEbut you are not responsible to pay for model training costs.

.NET
Go
Java
Python
TypeScript