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

com.amazonaws.services.amplifyuibuilder.model.ApiConfiguration Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Amplify UI Builder module holds the client classes that are used for communicating with AWS Amplify UI Builder Service

There is a newer version: 1.12.772
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.amplifyuibuilder.model;

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

/**
 * 

* Describes the API configuration for a code generation job. *

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

* The configuration for an application using GraphQL APIs. *

*/ private GraphQLRenderConfig graphQLConfig; /** *

* The configuration for an application using DataStore APIs. *

*/ private DataStoreRenderConfig dataStoreConfig; /** *

* The configuration for an application with no API being used. *

*/ private NoApiRenderConfig noApiConfig; /** *

* The configuration for an application using GraphQL APIs. *

* * @param graphQLConfig * The configuration for an application using GraphQL APIs. */ public void setGraphQLConfig(GraphQLRenderConfig graphQLConfig) { this.graphQLConfig = graphQLConfig; } /** *

* The configuration for an application using GraphQL APIs. *

* * @return The configuration for an application using GraphQL APIs. */ public GraphQLRenderConfig getGraphQLConfig() { return this.graphQLConfig; } /** *

* The configuration for an application using GraphQL APIs. *

* * @param graphQLConfig * The configuration for an application using GraphQL APIs. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiConfiguration withGraphQLConfig(GraphQLRenderConfig graphQLConfig) { setGraphQLConfig(graphQLConfig); return this; } /** *

* The configuration for an application using DataStore APIs. *

* * @param dataStoreConfig * The configuration for an application using DataStore APIs. */ public void setDataStoreConfig(DataStoreRenderConfig dataStoreConfig) { this.dataStoreConfig = dataStoreConfig; } /** *

* The configuration for an application using DataStore APIs. *

* * @return The configuration for an application using DataStore APIs. */ public DataStoreRenderConfig getDataStoreConfig() { return this.dataStoreConfig; } /** *

* The configuration for an application using DataStore APIs. *

* * @param dataStoreConfig * The configuration for an application using DataStore APIs. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiConfiguration withDataStoreConfig(DataStoreRenderConfig dataStoreConfig) { setDataStoreConfig(dataStoreConfig); return this; } /** *

* The configuration for an application with no API being used. *

* * @param noApiConfig * The configuration for an application with no API being used. */ public void setNoApiConfig(NoApiRenderConfig noApiConfig) { this.noApiConfig = noApiConfig; } /** *

* The configuration for an application with no API being used. *

* * @return The configuration for an application with no API being used. */ public NoApiRenderConfig getNoApiConfig() { return this.noApiConfig; } /** *

* The configuration for an application with no API being used. *

* * @param noApiConfig * The configuration for an application with no API being used. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiConfiguration withNoApiConfig(NoApiRenderConfig noApiConfig) { setNoApiConfig(noApiConfig); return this; } /** * 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 (getGraphQLConfig() != null) sb.append("GraphQLConfig: ").append(getGraphQLConfig()).append(","); if (getDataStoreConfig() != null) sb.append("DataStoreConfig: ").append(getDataStoreConfig()).append(","); if (getNoApiConfig() != null) sb.append("NoApiConfig: ").append(getNoApiConfig()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ApiConfiguration == false) return false; ApiConfiguration other = (ApiConfiguration) obj; if (other.getGraphQLConfig() == null ^ this.getGraphQLConfig() == null) return false; if (other.getGraphQLConfig() != null && other.getGraphQLConfig().equals(this.getGraphQLConfig()) == false) return false; if (other.getDataStoreConfig() == null ^ this.getDataStoreConfig() == null) return false; if (other.getDataStoreConfig() != null && other.getDataStoreConfig().equals(this.getDataStoreConfig()) == false) return false; if (other.getNoApiConfig() == null ^ this.getNoApiConfig() == null) return false; if (other.getNoApiConfig() != null && other.getNoApiConfig().equals(this.getNoApiConfig()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getGraphQLConfig() == null) ? 0 : getGraphQLConfig().hashCode()); hashCode = prime * hashCode + ((getDataStoreConfig() == null) ? 0 : getDataStoreConfig().hashCode()); hashCode = prime * hashCode + ((getNoApiConfig() == null) ? 0 : getNoApiConfig().hashCode()); return hashCode; } @Override public ApiConfiguration clone() { try { return (ApiConfiguration) 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.amplifyuibuilder.model.transform.ApiConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy