Interface CfnMembership.MembershipJobComputePaymentConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMembership.MembershipJobComputePaymentConfigProperty.Jsii$Proxy
- Enclosing class:
CfnMembership
@Stability(Stable)
public static interface CfnMembership.MembershipJobComputePaymentConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.cleanrooms.*; MembershipJobComputePaymentConfigProperty membershipJobComputePaymentConfigProperty = MembershipJobComputePaymentConfigProperty.builder() .isResponsible(false) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMembership.MembershipJobComputePaymentConfigProperty
static final class
An implementation forCfnMembership.MembershipJobComputePaymentConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
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
).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIsResponsible
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
FALSE
but you are responsible to pay for query and job compute costs. - If you set the value to
TRUE
but you are not responsible to pay for query and job compute costs.
- See Also:
- If you set the value to
-
builder
-