/* * Copyright 2018-2023 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.quicksight.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 UpdateAnalysisRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The ID of the Amazon Web Services account that contains the analysis that you're updating. *

*/ private String awsAccountId; /** *

* The ID for the analysis that you're updating. This ID displays in the URL of the analysis. *

*/ private String analysisId; /** *

* A descriptive name for the analysis that you're updating. This name displays for the analysis in the Amazon * QuickSight console. *

*/ private String name; /** *

* The parameter names and override values that you want to use. An analysis can have any parameter type, and some * parameters might accept multiple values. *

*/ private Parameters parameters; /** *

* A source entity to use for the analysis that you're updating. This metadata structure contains details that * describe a source template and one or more datasets. *

*/ private AnalysisSourceEntity sourceEntity; /** *

* The Amazon Resource Name (ARN) for the theme to apply to the analysis that you're creating. To see the theme in * the Amazon QuickSight console, make sure that you have access to it. *

*/ private String themeArn; /** *

* The definition of an analysis. *

*

* A definition is the data model of all features in a Dashboard, Template, or Analysis. *

*/ private AnalysisDefinition definition; /** *

* The ID of the Amazon Web Services account that contains the analysis that you're updating. *

* * @param awsAccountId * The ID of the Amazon Web Services account that contains the analysis that you're updating. */ public void setAwsAccountId(String awsAccountId) { this.awsAccountId = awsAccountId; } /** *

* The ID of the Amazon Web Services account that contains the analysis that you're updating. *

* * @return The ID of the Amazon Web Services account that contains the analysis that you're updating. */ public String getAwsAccountId() { return this.awsAccountId; } /** *

* The ID of the Amazon Web Services account that contains the analysis that you're updating. *

* * @param awsAccountId * The ID of the Amazon Web Services account that contains the analysis that you're updating. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAnalysisRequest withAwsAccountId(String awsAccountId) { setAwsAccountId(awsAccountId); return this; } /** *

* The ID for the analysis that you're updating. This ID displays in the URL of the analysis. *

* * @param analysisId * The ID for the analysis that you're updating. This ID displays in the URL of the analysis. */ public void setAnalysisId(String analysisId) { this.analysisId = analysisId; } /** *

* The ID for the analysis that you're updating. This ID displays in the URL of the analysis. *

* * @return The ID for the analysis that you're updating. This ID displays in the URL of the analysis. */ public String getAnalysisId() { return this.analysisId; } /** *

* The ID for the analysis that you're updating. This ID displays in the URL of the analysis. *

* * @param analysisId * The ID for the analysis that you're updating. This ID displays in the URL of the analysis. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAnalysisRequest withAnalysisId(String analysisId) { setAnalysisId(analysisId); return this; } /** *

* A descriptive name for the analysis that you're updating. This name displays for the analysis in the Amazon * QuickSight console. *

* * @param name * A descriptive name for the analysis that you're updating. This name displays for the analysis in the * Amazon QuickSight console. */ public void setName(String name) { this.name = name; } /** *

* A descriptive name for the analysis that you're updating. This name displays for the analysis in the Amazon * QuickSight console. *

* * @return A descriptive name for the analysis that you're updating. This name displays for the analysis in the * Amazon QuickSight console. */ public String getName() { return this.name; } /** *

* A descriptive name for the analysis that you're updating. This name displays for the analysis in the Amazon * QuickSight console. *

* * @param name * A descriptive name for the analysis that you're updating. This name displays for the analysis in the * Amazon QuickSight console. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAnalysisRequest withName(String name) { setName(name); return this; } /** *

* The parameter names and override values that you want to use. An analysis can have any parameter type, and some * parameters might accept multiple values. *

* * @param parameters * The parameter names and override values that you want to use. An analysis can have any parameter type, and * some parameters might accept multiple values. */ public void setParameters(Parameters parameters) { this.parameters = parameters; } /** *

* The parameter names and override values that you want to use. An analysis can have any parameter type, and some * parameters might accept multiple values. *

* * @return The parameter names and override values that you want to use. An analysis can have any parameter type, * and some parameters might accept multiple values. */ public Parameters getParameters() { return this.parameters; } /** *

* The parameter names and override values that you want to use. An analysis can have any parameter type, and some * parameters might accept multiple values. *

* * @param parameters * The parameter names and override values that you want to use. An analysis can have any parameter type, and * some parameters might accept multiple values. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAnalysisRequest withParameters(Parameters parameters) { setParameters(parameters); return this; } /** *

* A source entity to use for the analysis that you're updating. This metadata structure contains details that * describe a source template and one or more datasets. *

* * @param sourceEntity * A source entity to use for the analysis that you're updating. This metadata structure contains details * that describe a source template and one or more datasets. */ public void setSourceEntity(AnalysisSourceEntity sourceEntity) { this.sourceEntity = sourceEntity; } /** *

* A source entity to use for the analysis that you're updating. This metadata structure contains details that * describe a source template and one or more datasets. *

* * @return A source entity to use for the analysis that you're updating. This metadata structure contains details * that describe a source template and one or more datasets. */ public AnalysisSourceEntity getSourceEntity() { return this.sourceEntity; } /** *

* A source entity to use for the analysis that you're updating. This metadata structure contains details that * describe a source template and one or more datasets. *

* * @param sourceEntity * A source entity to use for the analysis that you're updating. This metadata structure contains details * that describe a source template and one or more datasets. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAnalysisRequest withSourceEntity(AnalysisSourceEntity sourceEntity) { setSourceEntity(sourceEntity); return this; } /** *

* The Amazon Resource Name (ARN) for the theme to apply to the analysis that you're creating. To see the theme in * the Amazon QuickSight console, make sure that you have access to it. *

* * @param themeArn * The Amazon Resource Name (ARN) for the theme to apply to the analysis that you're creating. To see the * theme in the Amazon QuickSight console, make sure that you have access to it. */ public void setThemeArn(String themeArn) { this.themeArn = themeArn; } /** *

* The Amazon Resource Name (ARN) for the theme to apply to the analysis that you're creating. To see the theme in * the Amazon QuickSight console, make sure that you have access to it. *

* * @return The Amazon Resource Name (ARN) for the theme to apply to the analysis that you're creating. To see the * theme in the Amazon QuickSight console, make sure that you have access to it. */ public String getThemeArn() { return this.themeArn; } /** *

* The Amazon Resource Name (ARN) for the theme to apply to the analysis that you're creating. To see the theme in * the Amazon QuickSight console, make sure that you have access to it. *

* * @param themeArn * The Amazon Resource Name (ARN) for the theme to apply to the analysis that you're creating. To see the * theme in the Amazon QuickSight console, make sure that you have access to it. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAnalysisRequest withThemeArn(String themeArn) { setThemeArn(themeArn); return this; } /** *

* The definition of an analysis. *

*

* A definition is the data model of all features in a Dashboard, Template, or Analysis. *

* * @param definition * The definition of an analysis.

*

* A definition is the data model of all features in a Dashboard, Template, or Analysis. */ public void setDefinition(AnalysisDefinition definition) { this.definition = definition; } /** *

* The definition of an analysis. *

*

* A definition is the data model of all features in a Dashboard, Template, or Analysis. *

* * @return The definition of an analysis.

*

* A definition is the data model of all features in a Dashboard, Template, or Analysis. */ public AnalysisDefinition getDefinition() { return this.definition; } /** *

* The definition of an analysis. *

*

* A definition is the data model of all features in a Dashboard, Template, or Analysis. *

* * @param definition * The definition of an analysis.

*

* A definition is the data model of all features in a Dashboard, Template, or Analysis. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateAnalysisRequest withDefinition(AnalysisDefinition definition) { setDefinition(definition); 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 (getAwsAccountId() != null) sb.append("AwsAccountId: ").append(getAwsAccountId()).append(","); if (getAnalysisId() != null) sb.append("AnalysisId: ").append(getAnalysisId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getParameters() != null) sb.append("Parameters: ").append(getParameters()).append(","); if (getSourceEntity() != null) sb.append("SourceEntity: ").append(getSourceEntity()).append(","); if (getThemeArn() != null) sb.append("ThemeArn: ").append(getThemeArn()).append(","); if (getDefinition() != null) sb.append("Definition: ").append(getDefinition()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateAnalysisRequest == false) return false; UpdateAnalysisRequest other = (UpdateAnalysisRequest) obj; if (other.getAwsAccountId() == null ^ this.getAwsAccountId() == null) return false; if (other.getAwsAccountId() != null && other.getAwsAccountId().equals(this.getAwsAccountId()) == false) return false; if (other.getAnalysisId() == null ^ this.getAnalysisId() == null) return false; if (other.getAnalysisId() != null && other.getAnalysisId().equals(this.getAnalysisId()) == 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.getParameters() == null ^ this.getParameters() == null) return false; if (other.getParameters() != null && other.getParameters().equals(this.getParameters()) == false) return false; if (other.getSourceEntity() == null ^ this.getSourceEntity() == null) return false; if (other.getSourceEntity() != null && other.getSourceEntity().equals(this.getSourceEntity()) == false) return false; if (other.getThemeArn() == null ^ this.getThemeArn() == null) return false; if (other.getThemeArn() != null && other.getThemeArn().equals(this.getThemeArn()) == false) return false; if (other.getDefinition() == null ^ this.getDefinition() == null) return false; if (other.getDefinition() != null && other.getDefinition().equals(this.getDefinition()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAwsAccountId() == null) ? 0 : getAwsAccountId().hashCode()); hashCode = prime * hashCode + ((getAnalysisId() == null) ? 0 : getAnalysisId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getParameters() == null) ? 0 : getParameters().hashCode()); hashCode = prime * hashCode + ((getSourceEntity() == null) ? 0 : getSourceEntity().hashCode()); hashCode = prime * hashCode + ((getThemeArn() == null) ? 0 : getThemeArn().hashCode()); hashCode = prime * hashCode + ((getDefinition() == null) ? 0 : getDefinition().hashCode()); return hashCode; } @Override public UpdateAnalysisRequest clone() { return (UpdateAnalysisRequest) super.clone(); } }