com.amazonaws.services.quicksight.model.CreateDashboardRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-quicksight Show documentation
/*
* Copyright 2014-2019 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 CreateDashboardRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* AWS account ID where you want to create the dashboard.
*
*/
private String awsAccountId;
/**
*
* The ID for the dashboard, also added to IAM policy.
*
*/
private String dashboardId;
/**
*
* The display name of the dashboard.
*
*/
private String name;
/**
*
* A structure that contains the parameters of the dashboard. These are parameter overrides for a dashboard. A
* dashboard can have any type of parameters and some parameters might accept multiple values. You could use the
* following structure to override two string parameters that accept multiple values:
*
*/
private Parameters parameters;
/**
*
* A structure that contains the permissions of the dashboard. You can use this for granting permissions with
* principal and action information.
*
*/
private java.util.List permissions;
/**
*
* Source entity from which the dashboard is created. The souce entity accepts the Amazon Resource Name (ARN) of the
* source template or analysis and also references the replacement datasets for the placeholders set when creating
* the template. The replacement datasets need to follow the same schema as the datasets for which placeholders were
* created when creating the template.
*
*
* If you are creating a dashboard from a source entity in a different AWS account, use the ARN of the source
* template.
*
*/
private DashboardSourceEntity sourceEntity;
/**
*
* Contains a map of the key-value pairs for the resource tag or tags assigned to the dashboard.
*
*/
private java.util.List tags;
/**
*
* A description for the first version of the dashboard being created.
*
*/
private String versionDescription;
/**
*
* Publishing options when creating dashboard.
*
*
* -
*
* AvailabilityStatus for AdHocFilteringOption - This can be either ENABLED
or DISABLED
.
* When This is set to set to DISABLED
, QuickSight disables the left filter pane on the published
* dashboard, which can be used for AdHoc filtering. Enabled by default.
*
*
* -
*
* AvailabilityStatus for ExportToCSVOption - This can be either ENABLED
or DISABLED
. The
* visual option to export data to CSV is disabled when this is set to DISABLED
. Enabled by default.
*
*
* -
*
* VisibilityState for SheetControlsOption - This can be either COLLAPSED
or EXPANDED
. The
* sheet controls pane is collapsed by default when set to true. Collapsed by default.
*
*
*
*/
private DashboardPublishOptions dashboardPublishOptions;
/**
*
* AWS account ID where you want to create the dashboard.
*
*
* @param awsAccountId
* AWS account ID where you want to create the dashboard.
*/
public void setAwsAccountId(String awsAccountId) {
this.awsAccountId = awsAccountId;
}
/**
*
* AWS account ID where you want to create the dashboard.
*
*
* @return AWS account ID where you want to create the dashboard.
*/
public String getAwsAccountId() {
return this.awsAccountId;
}
/**
*
* AWS account ID where you want to create the dashboard.
*
*
* @param awsAccountId
* AWS account ID where you want to create the dashboard.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withAwsAccountId(String awsAccountId) {
setAwsAccountId(awsAccountId);
return this;
}
/**
*
* The ID for the dashboard, also added to IAM policy.
*
*
* @param dashboardId
* The ID for the dashboard, also added to IAM policy.
*/
public void setDashboardId(String dashboardId) {
this.dashboardId = dashboardId;
}
/**
*
* The ID for the dashboard, also added to IAM policy.
*
*
* @return The ID for the dashboard, also added to IAM policy.
*/
public String getDashboardId() {
return this.dashboardId;
}
/**
*
* The ID for the dashboard, also added to IAM policy.
*
*
* @param dashboardId
* The ID for the dashboard, also added to IAM policy.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withDashboardId(String dashboardId) {
setDashboardId(dashboardId);
return this;
}
/**
*
* The display name of the dashboard.
*
*
* @param name
* The display name of the dashboard.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The display name of the dashboard.
*
*
* @return The display name of the dashboard.
*/
public String getName() {
return this.name;
}
/**
*
* The display name of the dashboard.
*
*
* @param name
* The display name of the dashboard.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withName(String name) {
setName(name);
return this;
}
/**
*
* A structure that contains the parameters of the dashboard. These are parameter overrides for a dashboard. A
* dashboard can have any type of parameters and some parameters might accept multiple values. You could use the
* following structure to override two string parameters that accept multiple values:
*
*
* @param parameters
* A structure that contains the parameters of the dashboard. These are parameter overrides for a dashboard.
* A dashboard can have any type of parameters and some parameters might accept multiple values. You could
* use the following structure to override two string parameters that accept multiple values:
*/
public void setParameters(Parameters parameters) {
this.parameters = parameters;
}
/**
*
* A structure that contains the parameters of the dashboard. These are parameter overrides for a dashboard. A
* dashboard can have any type of parameters and some parameters might accept multiple values. You could use the
* following structure to override two string parameters that accept multiple values:
*
*
* @return A structure that contains the parameters of the dashboard. These are parameter overrides for a dashboard.
* A dashboard can have any type of parameters and some parameters might accept multiple values. You could
* use the following structure to override two string parameters that accept multiple values:
*/
public Parameters getParameters() {
return this.parameters;
}
/**
*
* A structure that contains the parameters of the dashboard. These are parameter overrides for a dashboard. A
* dashboard can have any type of parameters and some parameters might accept multiple values. You could use the
* following structure to override two string parameters that accept multiple values:
*
*
* @param parameters
* A structure that contains the parameters of the dashboard. These are parameter overrides for a dashboard.
* A dashboard can have any type of parameters and some parameters might accept multiple values. You could
* use the following structure to override two string parameters that accept multiple values:
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withParameters(Parameters parameters) {
setParameters(parameters);
return this;
}
/**
*
* A structure that contains the permissions of the dashboard. You can use this for granting permissions with
* principal and action information.
*
*
* @return A structure that contains the permissions of the dashboard. You can use this for granting permissions
* with principal and action information.
*/
public java.util.List getPermissions() {
return permissions;
}
/**
*
* A structure that contains the permissions of the dashboard. You can use this for granting permissions with
* principal and action information.
*
*
* @param permissions
* A structure that contains the permissions of the dashboard. You can use this for granting permissions with
* principal and action information.
*/
public void setPermissions(java.util.Collection permissions) {
if (permissions == null) {
this.permissions = null;
return;
}
this.permissions = new java.util.ArrayList(permissions);
}
/**
*
* A structure that contains the permissions of the dashboard. You can use this for granting permissions with
* principal and action information.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setPermissions(java.util.Collection)} or {@link #withPermissions(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param permissions
* A structure that contains the permissions of the dashboard. You can use this for granting permissions with
* principal and action information.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withPermissions(ResourcePermission... permissions) {
if (this.permissions == null) {
setPermissions(new java.util.ArrayList(permissions.length));
}
for (ResourcePermission ele : permissions) {
this.permissions.add(ele);
}
return this;
}
/**
*
* A structure that contains the permissions of the dashboard. You can use this for granting permissions with
* principal and action information.
*
*
* @param permissions
* A structure that contains the permissions of the dashboard. You can use this for granting permissions with
* principal and action information.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withPermissions(java.util.Collection permissions) {
setPermissions(permissions);
return this;
}
/**
*
* Source entity from which the dashboard is created. The souce entity accepts the Amazon Resource Name (ARN) of the
* source template or analysis and also references the replacement datasets for the placeholders set when creating
* the template. The replacement datasets need to follow the same schema as the datasets for which placeholders were
* created when creating the template.
*
*
* If you are creating a dashboard from a source entity in a different AWS account, use the ARN of the source
* template.
*
*
* @param sourceEntity
* Source entity from which the dashboard is created. The souce entity accepts the Amazon Resource Name (ARN)
* of the source template or analysis and also references the replacement datasets for the placeholders set
* when creating the template. The replacement datasets need to follow the same schema as the datasets for
* which placeholders were created when creating the template.
*
* If you are creating a dashboard from a source entity in a different AWS account, use the ARN of the source
* template.
*/
public void setSourceEntity(DashboardSourceEntity sourceEntity) {
this.sourceEntity = sourceEntity;
}
/**
*
* Source entity from which the dashboard is created. The souce entity accepts the Amazon Resource Name (ARN) of the
* source template or analysis and also references the replacement datasets for the placeholders set when creating
* the template. The replacement datasets need to follow the same schema as the datasets for which placeholders were
* created when creating the template.
*
*
* If you are creating a dashboard from a source entity in a different AWS account, use the ARN of the source
* template.
*
*
* @return Source entity from which the dashboard is created. The souce entity accepts the Amazon Resource Name
* (ARN) of the source template or analysis and also references the replacement datasets for the
* placeholders set when creating the template. The replacement datasets need to follow the same schema as
* the datasets for which placeholders were created when creating the template.
*
* If you are creating a dashboard from a source entity in a different AWS account, use the ARN of the
* source template.
*/
public DashboardSourceEntity getSourceEntity() {
return this.sourceEntity;
}
/**
*
* Source entity from which the dashboard is created. The souce entity accepts the Amazon Resource Name (ARN) of the
* source template or analysis and also references the replacement datasets for the placeholders set when creating
* the template. The replacement datasets need to follow the same schema as the datasets for which placeholders were
* created when creating the template.
*
*
* If you are creating a dashboard from a source entity in a different AWS account, use the ARN of the source
* template.
*
*
* @param sourceEntity
* Source entity from which the dashboard is created. The souce entity accepts the Amazon Resource Name (ARN)
* of the source template or analysis and also references the replacement datasets for the placeholders set
* when creating the template. The replacement datasets need to follow the same schema as the datasets for
* which placeholders were created when creating the template.
*
* If you are creating a dashboard from a source entity in a different AWS account, use the ARN of the source
* template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withSourceEntity(DashboardSourceEntity sourceEntity) {
setSourceEntity(sourceEntity);
return this;
}
/**
*
* Contains a map of the key-value pairs for the resource tag or tags assigned to the dashboard.
*
*
* @return Contains a map of the key-value pairs for the resource tag or tags assigned to the dashboard.
*/
public java.util.List getTags() {
return tags;
}
/**
*
* Contains a map of the key-value pairs for the resource tag or tags assigned to the dashboard.
*
*
* @param tags
* Contains a map of the key-value pairs for the resource tag or tags assigned to the dashboard.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new java.util.ArrayList(tags);
}
/**
*
* Contains a map of the key-value pairs for the resource tag or tags assigned to the dashboard.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* Contains a map of the key-value pairs for the resource tag or tags assigned to the dashboard.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withTags(Tag... tags) {
if (this.tags == null) {
setTags(new java.util.ArrayList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* Contains a map of the key-value pairs for the resource tag or tags assigned to the dashboard.
*
*
* @param tags
* Contains a map of the key-value pairs for the resource tag or tags assigned to the dashboard.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withTags(java.util.Collection tags) {
setTags(tags);
return this;
}
/**
*
* A description for the first version of the dashboard being created.
*
*
* @param versionDescription
* A description for the first version of the dashboard being created.
*/
public void setVersionDescription(String versionDescription) {
this.versionDescription = versionDescription;
}
/**
*
* A description for the first version of the dashboard being created.
*
*
* @return A description for the first version of the dashboard being created.
*/
public String getVersionDescription() {
return this.versionDescription;
}
/**
*
* A description for the first version of the dashboard being created.
*
*
* @param versionDescription
* A description for the first version of the dashboard being created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withVersionDescription(String versionDescription) {
setVersionDescription(versionDescription);
return this;
}
/**
*
* Publishing options when creating dashboard.
*
*
* -
*
* AvailabilityStatus for AdHocFilteringOption - This can be either ENABLED
or DISABLED
.
* When This is set to set to DISABLED
, QuickSight disables the left filter pane on the published
* dashboard, which can be used for AdHoc filtering. Enabled by default.
*
*
* -
*
* AvailabilityStatus for ExportToCSVOption - This can be either ENABLED
or DISABLED
. The
* visual option to export data to CSV is disabled when this is set to DISABLED
. Enabled by default.
*
*
* -
*
* VisibilityState for SheetControlsOption - This can be either COLLAPSED
or EXPANDED
. The
* sheet controls pane is collapsed by default when set to true. Collapsed by default.
*
*
*
*
* @param dashboardPublishOptions
* Publishing options when creating dashboard.
*
* -
*
* AvailabilityStatus for AdHocFilteringOption - This can be either ENABLED
or
* DISABLED
. When This is set to set to DISABLED
, QuickSight disables the left
* filter pane on the published dashboard, which can be used for AdHoc filtering. Enabled by default.
*
*
* -
*
* AvailabilityStatus for ExportToCSVOption - This can be either ENABLED
or
* DISABLED
. The visual option to export data to CSV is disabled when this is set to
* DISABLED
. Enabled by default.
*
*
* -
*
* VisibilityState for SheetControlsOption - This can be either COLLAPSED
or
* EXPANDED
. The sheet controls pane is collapsed by default when set to true. Collapsed by
* default.
*
*
*/
public void setDashboardPublishOptions(DashboardPublishOptions dashboardPublishOptions) {
this.dashboardPublishOptions = dashboardPublishOptions;
}
/**
*
* Publishing options when creating dashboard.
*
*
* -
*
* AvailabilityStatus for AdHocFilteringOption - This can be either ENABLED
or DISABLED
.
* When This is set to set to DISABLED
, QuickSight disables the left filter pane on the published
* dashboard, which can be used for AdHoc filtering. Enabled by default.
*
*
* -
*
* AvailabilityStatus for ExportToCSVOption - This can be either ENABLED
or DISABLED
. The
* visual option to export data to CSV is disabled when this is set to DISABLED
. Enabled by default.
*
*
* -
*
* VisibilityState for SheetControlsOption - This can be either COLLAPSED
or EXPANDED
. The
* sheet controls pane is collapsed by default when set to true. Collapsed by default.
*
*
*
*
* @return Publishing options when creating dashboard.
*
* -
*
* AvailabilityStatus for AdHocFilteringOption - This can be either ENABLED
or
* DISABLED
. When This is set to set to DISABLED
, QuickSight disables the left
* filter pane on the published dashboard, which can be used for AdHoc filtering. Enabled by default.
*
*
* -
*
* AvailabilityStatus for ExportToCSVOption - This can be either ENABLED
or
* DISABLED
. The visual option to export data to CSV is disabled when this is set to
* DISABLED
. Enabled by default.
*
*
* -
*
* VisibilityState for SheetControlsOption - This can be either COLLAPSED
or
* EXPANDED
. The sheet controls pane is collapsed by default when set to true. Collapsed by
* default.
*
*
*/
public DashboardPublishOptions getDashboardPublishOptions() {
return this.dashboardPublishOptions;
}
/**
*
* Publishing options when creating dashboard.
*
*
* -
*
* AvailabilityStatus for AdHocFilteringOption - This can be either ENABLED
or DISABLED
.
* When This is set to set to DISABLED
, QuickSight disables the left filter pane on the published
* dashboard, which can be used for AdHoc filtering. Enabled by default.
*
*
* -
*
* AvailabilityStatus for ExportToCSVOption - This can be either ENABLED
or DISABLED
. The
* visual option to export data to CSV is disabled when this is set to DISABLED
. Enabled by default.
*
*
* -
*
* VisibilityState for SheetControlsOption - This can be either COLLAPSED
or EXPANDED
. The
* sheet controls pane is collapsed by default when set to true. Collapsed by default.
*
*
*
*
* @param dashboardPublishOptions
* Publishing options when creating dashboard.
*
* -
*
* AvailabilityStatus for AdHocFilteringOption - This can be either ENABLED
or
* DISABLED
. When This is set to set to DISABLED
, QuickSight disables the left
* filter pane on the published dashboard, which can be used for AdHoc filtering. Enabled by default.
*
*
* -
*
* AvailabilityStatus for ExportToCSVOption - This can be either ENABLED
or
* DISABLED
. The visual option to export data to CSV is disabled when this is set to
* DISABLED
. Enabled by default.
*
*
* -
*
* VisibilityState for SheetControlsOption - This can be either COLLAPSED
or
* EXPANDED
. The sheet controls pane is collapsed by default when set to true. Collapsed by
* default.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withDashboardPublishOptions(DashboardPublishOptions dashboardPublishOptions) {
setDashboardPublishOptions(dashboardPublishOptions);
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 (getDashboardId() != null)
sb.append("DashboardId: ").append(getDashboardId()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getParameters() != null)
sb.append("Parameters: ").append(getParameters()).append(",");
if (getPermissions() != null)
sb.append("Permissions: ").append(getPermissions()).append(",");
if (getSourceEntity() != null)
sb.append("SourceEntity: ").append(getSourceEntity()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags()).append(",");
if (getVersionDescription() != null)
sb.append("VersionDescription: ").append(getVersionDescription()).append(",");
if (getDashboardPublishOptions() != null)
sb.append("DashboardPublishOptions: ").append(getDashboardPublishOptions());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateDashboardRequest == false)
return false;
CreateDashboardRequest other = (CreateDashboardRequest) obj;
if (other.getAwsAccountId() == null ^ this.getAwsAccountId() == null)
return false;
if (other.getAwsAccountId() != null && other.getAwsAccountId().equals(this.getAwsAccountId()) == false)
return false;
if (other.getDashboardId() == null ^ this.getDashboardId() == null)
return false;
if (other.getDashboardId() != null && other.getDashboardId().equals(this.getDashboardId()) == 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.getPermissions() == null ^ this.getPermissions() == null)
return false;
if (other.getPermissions() != null && other.getPermissions().equals(this.getPermissions()) == 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.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
if (other.getVersionDescription() == null ^ this.getVersionDescription() == null)
return false;
if (other.getVersionDescription() != null && other.getVersionDescription().equals(this.getVersionDescription()) == false)
return false;
if (other.getDashboardPublishOptions() == null ^ this.getDashboardPublishOptions() == null)
return false;
if (other.getDashboardPublishOptions() != null && other.getDashboardPublishOptions().equals(this.getDashboardPublishOptions()) == 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 + ((getDashboardId() == null) ? 0 : getDashboardId().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getParameters() == null) ? 0 : getParameters().hashCode());
hashCode = prime * hashCode + ((getPermissions() == null) ? 0 : getPermissions().hashCode());
hashCode = prime * hashCode + ((getSourceEntity() == null) ? 0 : getSourceEntity().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
hashCode = prime * hashCode + ((getVersionDescription() == null) ? 0 : getVersionDescription().hashCode());
hashCode = prime * hashCode + ((getDashboardPublishOptions() == null) ? 0 : getDashboardPublishOptions().hashCode());
return hashCode;
}
@Override
public CreateDashboardRequest clone() {
return (CreateDashboardRequest) super.clone();
}
}