interface MembershipJobComputePaymentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnMembership.MembershipJobComputePaymentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnMembership_MembershipJobComputePaymentConfigProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnMembership.MembershipJobComputePaymentConfigProperty |
Python | aws_cdk.aws_cleanrooms.CfnMembership.MembershipJobComputePaymentConfigProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnMembership » MembershipJobComputePaymentConfigProperty |
An object representing the payment responsibilities accepted by the collaboration member for query and job compute costs.
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 membershipJobComputePaymentConfigProperty: cleanrooms.CfnMembership.MembershipJobComputePaymentConfigProperty = {
isResponsible: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | Indicates whether the collaboration member has accepted to pay for job compute costs ( TRUE ) or has not accepted to pay for query and job compute costs ( FALSE ). |
isResponsible
Type:
boolean | IResolvable
Indicates whether the collaboration member has accepted to pay for job compute costs ( TRUE ) or has not accepted to pay for query and job compute costs ( FALSE ).
There is only one member who pays for queries and jobs.
An error message is returned for the following reasons:
- If you set the value to
FALSEbut you are responsible to pay for query and job compute costs. - If you set the value to
TRUEbut you are not responsible to pay for query and job compute costs.

.NET
Go
Java
Python
TypeScript