interface MembershipJobComputePaymentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnMembershipPropsMixin.MembershipJobComputePaymentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnMembershipPropsMixin_MembershipJobComputePaymentConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnMembershipPropsMixin.MembershipJobComputePaymentConfigProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnMembershipPropsMixin.MembershipJobComputePaymentConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnMembershipPropsMixin » 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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const membershipJobComputePaymentConfigProperty: cleanrooms_mixins.CfnMembershipPropsMixin.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
(optional)
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