All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.cleanrooms.model.QueryComputePaymentConfig Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Clean Rooms module holds the client classes that are used for communicating with AWS Clean Rooms Service

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.cleanrooms.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* An object representing the collaboration member's payment responsibilities set by the collaboration creator for query * compute costs. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class QueryComputePaymentConfig implements Serializable, Cloneable, StructuredPojo { /** *

* Indicates whether the collaboration creator has configured the collaboration member to pay for query compute * costs (TRUE) or has not configured the collaboration member to pay for query compute costs ( * FALSE). *

*

* Exactly one member can be configured to pay for query compute costs. An error is returned if the collaboration * creator sets a TRUE value for more than one member in the collaboration. *

*

* If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the * member who can query is the default payer. An error is returned if the collaboration creator sets a * FALSE value for the member who can query. *

*/ private Boolean isResponsible; /** *

* Indicates whether the collaboration creator has configured the collaboration member to pay for query compute * costs (TRUE) or has not configured the collaboration member to pay for query compute costs ( * FALSE). *

*

* Exactly one member can be configured to pay for query compute costs. An error is returned if the collaboration * creator sets a TRUE value for more than one member in the collaboration. *

*

* If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the * member who can query is the default payer. An error is returned if the collaboration creator sets a * FALSE value for the member who can query. *

* * @param isResponsible * Indicates whether the collaboration creator has configured the collaboration member to pay for query * compute costs (TRUE) or has not configured the collaboration member to pay for query compute * costs (FALSE).

*

* Exactly one member can be configured to pay for query compute costs. An error is returned if the * collaboration creator sets a TRUE value for more than one member in the collaboration. *

*

* If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then * the member who can query is the default payer. An error is returned if the collaboration creator sets a * FALSE value for the member who can query. */ public void setIsResponsible(Boolean isResponsible) { this.isResponsible = isResponsible; } /** *

* Indicates whether the collaboration creator has configured the collaboration member to pay for query compute * costs (TRUE) or has not configured the collaboration member to pay for query compute costs ( * FALSE). *

*

* Exactly one member can be configured to pay for query compute costs. An error is returned if the collaboration * creator sets a TRUE value for more than one member in the collaboration. *

*

* If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the * member who can query is the default payer. An error is returned if the collaboration creator sets a * FALSE value for the member who can query. *

* * @return Indicates whether the collaboration creator has configured the collaboration member to pay for query * compute costs (TRUE) or has not configured the collaboration member to pay for query compute * costs (FALSE).

*

* Exactly one member can be configured to pay for query compute costs. An error is returned if the * collaboration creator sets a TRUE value for more than one member in the collaboration. *

*

* If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then * the member who can query is the default payer. An error is returned if the collaboration creator sets a * FALSE value for the member who can query. */ public Boolean getIsResponsible() { return this.isResponsible; } /** *

* Indicates whether the collaboration creator has configured the collaboration member to pay for query compute * costs (TRUE) or has not configured the collaboration member to pay for query compute costs ( * FALSE). *

*

* Exactly one member can be configured to pay for query compute costs. An error is returned if the collaboration * creator sets a TRUE value for more than one member in the collaboration. *

*

* If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the * member who can query is the default payer. An error is returned if the collaboration creator sets a * FALSE value for the member who can query. *

* * @param isResponsible * Indicates whether the collaboration creator has configured the collaboration member to pay for query * compute costs (TRUE) or has not configured the collaboration member to pay for query compute * costs (FALSE).

*

* Exactly one member can be configured to pay for query compute costs. An error is returned if the * collaboration creator sets a TRUE value for more than one member in the collaboration. *

*

* If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then * the member who can query is the default payer. An error is returned if the collaboration creator sets a * FALSE value for the member who can query. * @return Returns a reference to this object so that method calls can be chained together. */ public QueryComputePaymentConfig withIsResponsible(Boolean isResponsible) { setIsResponsible(isResponsible); return this; } /** *

* Indicates whether the collaboration creator has configured the collaboration member to pay for query compute * costs (TRUE) or has not configured the collaboration member to pay for query compute costs ( * FALSE). *

*

* Exactly one member can be configured to pay for query compute costs. An error is returned if the collaboration * creator sets a TRUE value for more than one member in the collaboration. *

*

* If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the * member who can query is the default payer. An error is returned if the collaboration creator sets a * FALSE value for the member who can query. *

* * @return Indicates whether the collaboration creator has configured the collaboration member to pay for query * compute costs (TRUE) or has not configured the collaboration member to pay for query compute * costs (FALSE).

*

* Exactly one member can be configured to pay for query compute costs. An error is returned if the * collaboration creator sets a TRUE value for more than one member in the collaboration. *

*

* If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then * the member who can query is the default payer. An error is returned if the collaboration creator sets a * FALSE value for the member who can query. */ public Boolean isResponsible() { return this.isResponsible; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getIsResponsible() != null) sb.append("IsResponsible: ").append(getIsResponsible()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof QueryComputePaymentConfig == false) return false; QueryComputePaymentConfig other = (QueryComputePaymentConfig) obj; if (other.getIsResponsible() == null ^ this.getIsResponsible() == null) return false; if (other.getIsResponsible() != null && other.getIsResponsible().equals(this.getIsResponsible()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getIsResponsible() == null) ? 0 : getIsResponsible().hashCode()); return hashCode; } @Override public QueryComputePaymentConfig clone() { try { return (QueryComputePaymentConfig) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.cleanrooms.model.transform.QueryComputePaymentConfigMarshaller.getInstance().marshall(this, protocolMarshaller); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy