com.amazonaws.services.appsync.model.CreateDataSourceRequest Maven / Gradle / Ivy
/*
* Copyright 2012-2017 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.appsync.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateDataSourceRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The API ID for the GraphQL API for the DataSource
.
*
*/
private String apiId;
/**
*
* A user-supplied name for the DataSource
.
*
*/
private String name;
/**
*
* A description of the DataSource
.
*
*/
private String description;
/**
*
* The type of the DataSource
.
*
*/
private String type;
/**
*
* The IAM service role ARN for the data source. The system assumes this role when accessing the data source.
*
*/
private String serviceRoleArn;
/**
*
* DynamoDB settings.
*
*/
private DynamodbDataSourceConfig dynamodbConfig;
/**
*
* AWS Lambda settings.
*
*/
private LambdaDataSourceConfig lambdaConfig;
/**
*
* Amazon Elasticsearch settings.
*
*/
private ElasticsearchDataSourceConfig elasticsearchConfig;
/**
*
* The API ID for the GraphQL API for the DataSource
.
*
*
* @param apiId
* The API ID for the GraphQL API for the DataSource
.
*/
public void setApiId(String apiId) {
this.apiId = apiId;
}
/**
*
* The API ID for the GraphQL API for the DataSource
.
*
*
* @return The API ID for the GraphQL API for the DataSource
.
*/
public String getApiId() {
return this.apiId;
}
/**
*
* The API ID for the GraphQL API for the DataSource
.
*
*
* @param apiId
* The API ID for the GraphQL API for the DataSource
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDataSourceRequest withApiId(String apiId) {
setApiId(apiId);
return this;
}
/**
*
* A user-supplied name for the DataSource
.
*
*
* @param name
* A user-supplied name for the DataSource
.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* A user-supplied name for the DataSource
.
*
*
* @return A user-supplied name for the DataSource
.
*/
public String getName() {
return this.name;
}
/**
*
* A user-supplied name for the DataSource
.
*
*
* @param name
* A user-supplied name for the DataSource
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDataSourceRequest withName(String name) {
setName(name);
return this;
}
/**
*
* A description of the DataSource
.
*
*
* @param description
* A description of the DataSource
.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* A description of the DataSource
.
*
*
* @return A description of the DataSource
.
*/
public String getDescription() {
return this.description;
}
/**
*
* A description of the DataSource
.
*
*
* @param description
* A description of the DataSource
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDataSourceRequest withDescription(String description) {
setDescription(description);
return this;
}
/**
*
* The type of the DataSource
.
*
*
* @param type
* The type of the DataSource
.
* @see DataSourceType
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The type of the DataSource
.
*
*
* @return The type of the DataSource
.
* @see DataSourceType
*/
public String getType() {
return this.type;
}
/**
*
* The type of the DataSource
.
*
*
* @param type
* The type of the DataSource
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DataSourceType
*/
public CreateDataSourceRequest withType(String type) {
setType(type);
return this;
}
/**
*
* The type of the DataSource
.
*
*
* @param type
* The type of the DataSource
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DataSourceType
*/
public CreateDataSourceRequest withType(DataSourceType type) {
this.type = type.toString();
return this;
}
/**
*
* The IAM service role ARN for the data source. The system assumes this role when accessing the data source.
*
*
* @param serviceRoleArn
* The IAM service role ARN for the data source. The system assumes this role when accessing the data source.
*/
public void setServiceRoleArn(String serviceRoleArn) {
this.serviceRoleArn = serviceRoleArn;
}
/**
*
* The IAM service role ARN for the data source. The system assumes this role when accessing the data source.
*
*
* @return The IAM service role ARN for the data source. The system assumes this role when accessing the data
* source.
*/
public String getServiceRoleArn() {
return this.serviceRoleArn;
}
/**
*
* The IAM service role ARN for the data source. The system assumes this role when accessing the data source.
*
*
* @param serviceRoleArn
* The IAM service role ARN for the data source. The system assumes this role when accessing the data source.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDataSourceRequest withServiceRoleArn(String serviceRoleArn) {
setServiceRoleArn(serviceRoleArn);
return this;
}
/**
*
* DynamoDB settings.
*
*
* @param dynamodbConfig
* DynamoDB settings.
*/
public void setDynamodbConfig(DynamodbDataSourceConfig dynamodbConfig) {
this.dynamodbConfig = dynamodbConfig;
}
/**
*
* DynamoDB settings.
*
*
* @return DynamoDB settings.
*/
public DynamodbDataSourceConfig getDynamodbConfig() {
return this.dynamodbConfig;
}
/**
*
* DynamoDB settings.
*
*
* @param dynamodbConfig
* DynamoDB settings.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDataSourceRequest withDynamodbConfig(DynamodbDataSourceConfig dynamodbConfig) {
setDynamodbConfig(dynamodbConfig);
return this;
}
/**
*
* AWS Lambda settings.
*
*
* @param lambdaConfig
* AWS Lambda settings.
*/
public void setLambdaConfig(LambdaDataSourceConfig lambdaConfig) {
this.lambdaConfig = lambdaConfig;
}
/**
*
* AWS Lambda settings.
*
*
* @return AWS Lambda settings.
*/
public LambdaDataSourceConfig getLambdaConfig() {
return this.lambdaConfig;
}
/**
*
* AWS Lambda settings.
*
*
* @param lambdaConfig
* AWS Lambda settings.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDataSourceRequest withLambdaConfig(LambdaDataSourceConfig lambdaConfig) {
setLambdaConfig(lambdaConfig);
return this;
}
/**
*
* Amazon Elasticsearch settings.
*
*
* @param elasticsearchConfig
* Amazon Elasticsearch settings.
*/
public void setElasticsearchConfig(ElasticsearchDataSourceConfig elasticsearchConfig) {
this.elasticsearchConfig = elasticsearchConfig;
}
/**
*
* Amazon Elasticsearch settings.
*
*
* @return Amazon Elasticsearch settings.
*/
public ElasticsearchDataSourceConfig getElasticsearchConfig() {
return this.elasticsearchConfig;
}
/**
*
* Amazon Elasticsearch settings.
*
*
* @param elasticsearchConfig
* Amazon Elasticsearch settings.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDataSourceRequest withElasticsearchConfig(ElasticsearchDataSourceConfig elasticsearchConfig) {
setElasticsearchConfig(elasticsearchConfig);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getApiId() != null)
sb.append("ApiId: ").append(getApiId()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getType() != null)
sb.append("Type: ").append(getType()).append(",");
if (getServiceRoleArn() != null)
sb.append("ServiceRoleArn: ").append(getServiceRoleArn()).append(",");
if (getDynamodbConfig() != null)
sb.append("DynamodbConfig: ").append(getDynamodbConfig()).append(",");
if (getLambdaConfig() != null)
sb.append("LambdaConfig: ").append(getLambdaConfig()).append(",");
if (getElasticsearchConfig() != null)
sb.append("ElasticsearchConfig: ").append(getElasticsearchConfig());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateDataSourceRequest == false)
return false;
CreateDataSourceRequest other = (CreateDataSourceRequest) obj;
if (other.getApiId() == null ^ this.getApiId() == null)
return false;
if (other.getApiId() != null && other.getApiId().equals(this.getApiId()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false)
return false;
if (other.getType() == null ^ this.getType() == null)
return false;
if (other.getType() != null && other.getType().equals(this.getType()) == false)
return false;
if (other.getServiceRoleArn() == null ^ this.getServiceRoleArn() == null)
return false;
if (other.getServiceRoleArn() != null && other.getServiceRoleArn().equals(this.getServiceRoleArn()) == false)
return false;
if (other.getDynamodbConfig() == null ^ this.getDynamodbConfig() == null)
return false;
if (other.getDynamodbConfig() != null && other.getDynamodbConfig().equals(this.getDynamodbConfig()) == false)
return false;
if (other.getLambdaConfig() == null ^ this.getLambdaConfig() == null)
return false;
if (other.getLambdaConfig() != null && other.getLambdaConfig().equals(this.getLambdaConfig()) == false)
return false;
if (other.getElasticsearchConfig() == null ^ this.getElasticsearchConfig() == null)
return false;
if (other.getElasticsearchConfig() != null && other.getElasticsearchConfig().equals(this.getElasticsearchConfig()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getApiId() == null) ? 0 : getApiId().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
hashCode = prime * hashCode + ((getServiceRoleArn() == null) ? 0 : getServiceRoleArn().hashCode());
hashCode = prime * hashCode + ((getDynamodbConfig() == null) ? 0 : getDynamodbConfig().hashCode());
hashCode = prime * hashCode + ((getLambdaConfig() == null) ? 0 : getLambdaConfig().hashCode());
hashCode = prime * hashCode + ((getElasticsearchConfig() == null) ? 0 : getElasticsearchConfig().hashCode());
return hashCode;
}
@Override
public CreateDataSourceRequest clone() {
return (CreateDataSourceRequest) super.clone();
}
}