interface MembershipModelInferencePaymentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_cleanrooms.CfnMembership.MembershipModelInferencePaymentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnMembership_MembershipModelInferencePaymentConfigProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnMembership.MembershipModelInferencePaymentConfigProperty |
Python | aws_cdk.aws_cleanrooms.CfnMembership.MembershipModelInferencePaymentConfigProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnMembership » MembershipModelInferencePaymentConfigProperty |
An object representing the collaboration member's model inference 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-lib';
const membershipModelInferencePaymentConfigProperty: cleanrooms.CfnMembership.MembershipModelInferencePaymentConfigProperty = {
isResponsible: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | Indicates whether the collaboration member has accepted to pay for model inference costs ( TRUE ) or has not accepted to pay for model inference costs ( FALSE ). |
isResponsible
Type:
boolean | IResolvable
Indicates whether the collaboration member has accepted to pay for model inference costs ( TRUE ) or has not accepted to pay for model inference costs ( FALSE ).
If the collaboration creator has not specified anyone to pay for model inference 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 inference costs. - If you set the value to
TRUEbut you are not responsible to pay for model inference costs.

.NET
Go
Java
Python
TypeScript