interface JobComputePaymentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnCollaborationPropsMixin.JobComputePaymentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnCollaborationPropsMixin_JobComputePaymentConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnCollaborationPropsMixin.JobComputePaymentConfigProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnCollaborationPropsMixin.JobComputePaymentConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnCollaborationPropsMixin » JobComputePaymentConfigProperty |
An object representing the collaboration member's payment responsibilities set by the collaboration creator 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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const jobComputePaymentConfigProperty: cleanrooms_mixins.CfnCollaborationPropsMixin.JobComputePaymentConfigProperty = {
isResponsible: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | Indicates whether the collaboration creator has configured the collaboration member to pay for query and job compute costs ( TRUE ) or has not configured the collaboration member to pay for query and job compute costs ( FALSE ). |
isResponsible?
Type:
boolean | IResolvable
(optional)
Indicates whether the collaboration creator has configured the collaboration member to pay for query and job compute costs ( TRUE ) or has not configured the collaboration member to pay for query and job compute costs ( FALSE ).
Exactly one member can be configured to pay for query and job compute costs. An error is returned if the collaboration creator sets a TRUE value for more than one member in the collaboration.
An error is returned if the collaboration creator sets a FALSE value for the member who can run queries and jobs.

.NET
Go
Java
Python
TypeScript