com.amazonaws.services.quicksight.model.CreateDashboardRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-quicksight Show documentation
/*
* 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 CreateDashboardRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The ID of the Amazon Web Services account where you want to create the dashboard.
*
*/
private String awsAccountId;
/**
*
* The ID for the dashboard, also added to the IAM policy.
*
*/
private String dashboardId;
/**
*
* The display name of the dashboard.
*
*/
private String name;
/**
*
* The parameters for the creation of the dashboard, which you want to use to override the default settings. A
* dashboard can have any type of parameters, and some parameters might accept multiple values.
*
*/
private Parameters parameters;
/**
*
* A structure that contains the permissions of the dashboard. You can use this structure for granting permissions
* by providing a list of IAM action information for each principal ARN.
*
*
* To specify no permissions, omit the permissions list.
*
*/
private java.util.List permissions;
/**
*
* The entity that you are using as a source when you create the dashboard. In SourceEntity
, you
* specify the type of object you're using as source. You can only create a dashboard from a template, so you use a
* SourceTemplate
entity. If you need to create a dashboard from an analysis, first convert the
* analysis to a template by using the
* CreateTemplate
* API operation. For SourceTemplate
, specify the Amazon Resource Name (ARN) of the source template.
* The SourceTemplate
ARN can contain any Amazon Web Services account and any Amazon
* QuickSight-supported Amazon Web Services Region.
*
*
* Use the DataSetReferences
entity within SourceTemplate
to list the replacement datasets
* for the placeholders listed in the original. The schema in each dataset must match its placeholder.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request to be
* valid.
*
*/
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;
/**
*
* Options for publishing the dashboard when you create it:
*
*
* -
*
* AvailabilityStatus
for AdHocFilteringOption
- This status can be either
* ENABLED
or DISABLED
. When this is set to DISABLED
, Amazon QuickSight
* disables the left filter pane on the published dashboard, which can be used for ad hoc (one-time) filtering. This
* option is ENABLED
by default.
*
*
* -
*
* AvailabilityStatus
for ExportToCSVOption
- This status can be either
* ENABLED
or DISABLED
. The visual option to export data to .CSV format isn't enabled when
* this is set to DISABLED
. This option is ENABLED
by default.
*
*
* -
*
* VisibilityState
for SheetControlsOption
- This visibility state can be either
* COLLAPSED
or EXPANDED
. This option is COLLAPSED
by default.
*
*
*
*/
private DashboardPublishOptions dashboardPublishOptions;
/**
*
* The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. If you add a value for this
* field, it overrides the value that is used in the source entity. The theme ARN must exist in the same Amazon Web
* Services account where you create the dashboard.
*
*/
private String themeArn;
/**
*
* The definition of a dashboard.
*
*
* A definition is the data model of all features in a Dashboard, Template, or Analysis.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request to be
* valid.
*
*/
private DashboardVersionDefinition definition;
/**
*
* The ID of the Amazon Web Services account where you want to create the dashboard.
*
*
* @param awsAccountId
* The ID of the Amazon Web Services account where you want to create the dashboard.
*/
public void setAwsAccountId(String awsAccountId) {
this.awsAccountId = awsAccountId;
}
/**
*
* The ID of the Amazon Web Services account where you want to create the dashboard.
*
*
* @return The ID of the Amazon Web Services account where you want to create the dashboard.
*/
public String getAwsAccountId() {
return this.awsAccountId;
}
/**
*
* The ID of the Amazon Web Services account where you want to create the dashboard.
*
*
* @param awsAccountId
* The ID of the Amazon Web Services account 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 the IAM policy.
*
*
* @param dashboardId
* The ID for the dashboard, also added to the IAM policy.
*/
public void setDashboardId(String dashboardId) {
this.dashboardId = dashboardId;
}
/**
*
* The ID for the dashboard, also added to the IAM policy.
*
*
* @return The ID for the dashboard, also added to the IAM policy.
*/
public String getDashboardId() {
return this.dashboardId;
}
/**
*
* The ID for the dashboard, also added to the IAM policy.
*
*
* @param dashboardId
* The ID for the dashboard, also added to the 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;
}
/**
*
* The parameters for the creation of the dashboard, which you want to use to override the default settings. A
* dashboard can have any type of parameters, and some parameters might accept multiple values.
*
*
* @param parameters
* The parameters for the creation of the dashboard, which you want to use to override the default settings.
* A dashboard can have any type of parameters, and some parameters might accept multiple values.
*/
public void setParameters(Parameters parameters) {
this.parameters = parameters;
}
/**
*
* The parameters for the creation of the dashboard, which you want to use to override the default settings. A
* dashboard can have any type of parameters, and some parameters might accept multiple values.
*
*
* @return The parameters for the creation of the dashboard, which you want to use to override the default settings.
* A dashboard can have any type of parameters, and some parameters might accept multiple values.
*/
public Parameters getParameters() {
return this.parameters;
}
/**
*
* The parameters for the creation of the dashboard, which you want to use to override the default settings. A
* dashboard can have any type of parameters, and some parameters might accept multiple values.
*
*
* @param parameters
* The parameters for the creation of the dashboard, which you want to use to override the default settings.
* A dashboard can have any type of parameters, and some parameters might 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 structure for granting permissions
* by providing a list of IAM action information for each principal ARN.
*
*
* To specify no permissions, omit the permissions list.
*
*
* @return A structure that contains the permissions of the dashboard. You can use this structure for granting
* permissions by providing a list of IAM action information for each principal ARN.
*
* To specify no permissions, omit the permissions list.
*/
public java.util.List getPermissions() {
return permissions;
}
/**
*
* A structure that contains the permissions of the dashboard. You can use this structure for granting permissions
* by providing a list of IAM action information for each principal ARN.
*
*
* To specify no permissions, omit the permissions list.
*
*
* @param permissions
* A structure that contains the permissions of the dashboard. You can use this structure for granting
* permissions by providing a list of IAM action information for each principal ARN.
*
* To specify no permissions, omit the permissions list.
*/
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 structure for granting permissions
* by providing a list of IAM action information for each principal ARN.
*
*
* To specify no permissions, omit the permissions list.
*
*
* 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 structure for granting
* permissions by providing a list of IAM action information for each principal ARN.
*
* To specify no permissions, omit the permissions list.
* @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 structure for granting permissions
* by providing a list of IAM action information for each principal ARN.
*
*
* To specify no permissions, omit the permissions list.
*
*
* @param permissions
* A structure that contains the permissions of the dashboard. You can use this structure for granting
* permissions by providing a list of IAM action information for each principal ARN.
*
* To specify no permissions, omit the permissions list.
* @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;
}
/**
*
* The entity that you are using as a source when you create the dashboard. In SourceEntity
, you
* specify the type of object you're using as source. You can only create a dashboard from a template, so you use a
* SourceTemplate
entity. If you need to create a dashboard from an analysis, first convert the
* analysis to a template by using the
* CreateTemplate
* API operation. For SourceTemplate
, specify the Amazon Resource Name (ARN) of the source template.
* The SourceTemplate
ARN can contain any Amazon Web Services account and any Amazon
* QuickSight-supported Amazon Web Services Region.
*
*
* Use the DataSetReferences
entity within SourceTemplate
to list the replacement datasets
* for the placeholders listed in the original. The schema in each dataset must match its placeholder.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request to be
* valid.
*
*
* @param sourceEntity
* The entity that you are using as a source when you create the dashboard. In SourceEntity
, you
* specify the type of object you're using as source. You can only create a dashboard from a template, so you
* use a SourceTemplate
entity. If you need to create a dashboard from an analysis, first
* convert the analysis to a template by using the
* CreateTemplate
* API operation. For SourceTemplate
, specify the Amazon Resource Name (ARN) of the source
* template. The SourceTemplate
ARN can contain any Amazon Web Services account and any Amazon
* QuickSight-supported Amazon Web Services Region.
*
* Use the DataSetReferences
entity within SourceTemplate
to list the replacement
* datasets for the placeholders listed in the original. The schema in each dataset must match its
* placeholder.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request
* to be valid.
*/
public void setSourceEntity(DashboardSourceEntity sourceEntity) {
this.sourceEntity = sourceEntity;
}
/**
*
* The entity that you are using as a source when you create the dashboard. In SourceEntity
, you
* specify the type of object you're using as source. You can only create a dashboard from a template, so you use a
* SourceTemplate
entity. If you need to create a dashboard from an analysis, first convert the
* analysis to a template by using the
* CreateTemplate
* API operation. For SourceTemplate
, specify the Amazon Resource Name (ARN) of the source template.
* The SourceTemplate
ARN can contain any Amazon Web Services account and any Amazon
* QuickSight-supported Amazon Web Services Region.
*
*
* Use the DataSetReferences
entity within SourceTemplate
to list the replacement datasets
* for the placeholders listed in the original. The schema in each dataset must match its placeholder.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request to be
* valid.
*
*
* @return The entity that you are using as a source when you create the dashboard. In SourceEntity
,
* you specify the type of object you're using as source. You can only create a dashboard from a template,
* so you use a SourceTemplate
entity. If you need to create a dashboard from an analysis,
* first convert the analysis to a template by using the
* CreateTemplate
* API operation. For SourceTemplate
, specify the Amazon Resource Name (ARN) of the source
* template. The SourceTemplate
ARN can contain any Amazon Web Services account and any Amazon
* QuickSight-supported Amazon Web Services Region.
*
* Use the DataSetReferences
entity within SourceTemplate
to list the replacement
* datasets for the placeholders listed in the original. The schema in each dataset must match its
* placeholder.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request
* to be valid.
*/
public DashboardSourceEntity getSourceEntity() {
return this.sourceEntity;
}
/**
*
* The entity that you are using as a source when you create the dashboard. In SourceEntity
, you
* specify the type of object you're using as source. You can only create a dashboard from a template, so you use a
* SourceTemplate
entity. If you need to create a dashboard from an analysis, first convert the
* analysis to a template by using the
* CreateTemplate
* API operation. For SourceTemplate
, specify the Amazon Resource Name (ARN) of the source template.
* The SourceTemplate
ARN can contain any Amazon Web Services account and any Amazon
* QuickSight-supported Amazon Web Services Region.
*
*
* Use the DataSetReferences
entity within SourceTemplate
to list the replacement datasets
* for the placeholders listed in the original. The schema in each dataset must match its placeholder.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request to be
* valid.
*
*
* @param sourceEntity
* The entity that you are using as a source when you create the dashboard. In SourceEntity
, you
* specify the type of object you're using as source. You can only create a dashboard from a template, so you
* use a SourceTemplate
entity. If you need to create a dashboard from an analysis, first
* convert the analysis to a template by using the
* CreateTemplate
* API operation. For SourceTemplate
, specify the Amazon Resource Name (ARN) of the source
* template. The SourceTemplate
ARN can contain any Amazon Web Services account and any Amazon
* QuickSight-supported Amazon Web Services Region.
*
* Use the DataSetReferences
entity within SourceTemplate
to list the replacement
* datasets for the placeholders listed in the original. The schema in each dataset must match its
* placeholder.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request
* to be valid.
* @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;
}
/**
*
* Options for publishing the dashboard when you create it:
*
*
* -
*
* AvailabilityStatus
for AdHocFilteringOption
- This status can be either
* ENABLED
or DISABLED
. When this is set to DISABLED
, Amazon QuickSight
* disables the left filter pane on the published dashboard, which can be used for ad hoc (one-time) filtering. This
* option is ENABLED
by default.
*
*
* -
*
* AvailabilityStatus
for ExportToCSVOption
- This status can be either
* ENABLED
or DISABLED
. The visual option to export data to .CSV format isn't enabled when
* this is set to DISABLED
. This option is ENABLED
by default.
*
*
* -
*
* VisibilityState
for SheetControlsOption
- This visibility state can be either
* COLLAPSED
or EXPANDED
. This option is COLLAPSED
by default.
*
*
*
*
* @param dashboardPublishOptions
* Options for publishing the dashboard when you create it:
*
* -
*
* AvailabilityStatus
for AdHocFilteringOption
- This status can be either
* ENABLED
or DISABLED
. When this is set to DISABLED
, Amazon
* QuickSight disables the left filter pane on the published dashboard, which can be used for ad hoc
* (one-time) filtering. This option is ENABLED
by default.
*
*
* -
*
* AvailabilityStatus
for ExportToCSVOption
- This status can be either
* ENABLED
or DISABLED
. The visual option to export data to .CSV format isn't
* enabled when this is set to DISABLED
. This option is ENABLED
by default.
*
*
* -
*
* VisibilityState
for SheetControlsOption
- This visibility state can be either
* COLLAPSED
or EXPANDED
. This option is COLLAPSED
by default.
*
*
*/
public void setDashboardPublishOptions(DashboardPublishOptions dashboardPublishOptions) {
this.dashboardPublishOptions = dashboardPublishOptions;
}
/**
*
* Options for publishing the dashboard when you create it:
*
*
* -
*
* AvailabilityStatus
for AdHocFilteringOption
- This status can be either
* ENABLED
or DISABLED
. When this is set to DISABLED
, Amazon QuickSight
* disables the left filter pane on the published dashboard, which can be used for ad hoc (one-time) filtering. This
* option is ENABLED
by default.
*
*
* -
*
* AvailabilityStatus
for ExportToCSVOption
- This status can be either
* ENABLED
or DISABLED
. The visual option to export data to .CSV format isn't enabled when
* this is set to DISABLED
. This option is ENABLED
by default.
*
*
* -
*
* VisibilityState
for SheetControlsOption
- This visibility state can be either
* COLLAPSED
or EXPANDED
. This option is COLLAPSED
by default.
*
*
*
*
* @return Options for publishing the dashboard when you create it:
*
* -
*
* AvailabilityStatus
for AdHocFilteringOption
- This status can be either
* ENABLED
or DISABLED
. When this is set to DISABLED
, Amazon
* QuickSight disables the left filter pane on the published dashboard, which can be used for ad hoc
* (one-time) filtering. This option is ENABLED
by default.
*
*
* -
*
* AvailabilityStatus
for ExportToCSVOption
- This status can be either
* ENABLED
or DISABLED
. The visual option to export data to .CSV format isn't
* enabled when this is set to DISABLED
. This option is ENABLED
by default.
*
*
* -
*
* VisibilityState
for SheetControlsOption
- This visibility state can be either
* COLLAPSED
or EXPANDED
. This option is COLLAPSED
by default.
*
*
*/
public DashboardPublishOptions getDashboardPublishOptions() {
return this.dashboardPublishOptions;
}
/**
*
* Options for publishing the dashboard when you create it:
*
*
* -
*
* AvailabilityStatus
for AdHocFilteringOption
- This status can be either
* ENABLED
or DISABLED
. When this is set to DISABLED
, Amazon QuickSight
* disables the left filter pane on the published dashboard, which can be used for ad hoc (one-time) filtering. This
* option is ENABLED
by default.
*
*
* -
*
* AvailabilityStatus
for ExportToCSVOption
- This status can be either
* ENABLED
or DISABLED
. The visual option to export data to .CSV format isn't enabled when
* this is set to DISABLED
. This option is ENABLED
by default.
*
*
* -
*
* VisibilityState
for SheetControlsOption
- This visibility state can be either
* COLLAPSED
or EXPANDED
. This option is COLLAPSED
by default.
*
*
*
*
* @param dashboardPublishOptions
* Options for publishing the dashboard when you create it:
*
* -
*
* AvailabilityStatus
for AdHocFilteringOption
- This status can be either
* ENABLED
or DISABLED
. When this is set to DISABLED
, Amazon
* QuickSight disables the left filter pane on the published dashboard, which can be used for ad hoc
* (one-time) filtering. This option is ENABLED
by default.
*
*
* -
*
* AvailabilityStatus
for ExportToCSVOption
- This status can be either
* ENABLED
or DISABLED
. The visual option to export data to .CSV format isn't
* enabled when this is set to DISABLED
. This option is ENABLED
by default.
*
*
* -
*
* VisibilityState
for SheetControlsOption
- This visibility state can be either
* COLLAPSED
or EXPANDED
. This option is 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;
}
/**
*
* The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. If you add a value for this
* field, it overrides the value that is used in the source entity. The theme ARN must exist in the same Amazon Web
* Services account where you create the dashboard.
*
*
* @param themeArn
* The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. If you add a value for
* this field, it overrides the value that is used in the source entity. The theme ARN must exist in the same
* Amazon Web Services account where you create the dashboard.
*/
public void setThemeArn(String themeArn) {
this.themeArn = themeArn;
}
/**
*
* The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. If you add a value for this
* field, it overrides the value that is used in the source entity. The theme ARN must exist in the same Amazon Web
* Services account where you create the dashboard.
*
*
* @return The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. If you add a value for
* this field, it overrides the value that is used in the source entity. The theme ARN must exist in the
* same Amazon Web Services account where you create the dashboard.
*/
public String getThemeArn() {
return this.themeArn;
}
/**
*
* The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. If you add a value for this
* field, it overrides the value that is used in the source entity. The theme ARN must exist in the same Amazon Web
* Services account where you create the dashboard.
*
*
* @param themeArn
* The Amazon Resource Name (ARN) of the theme that is being used for this dashboard. If you add a value for
* this field, it overrides the value that is used in the source entity. The theme ARN must exist in the same
* Amazon Web Services account where you create the dashboard.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withThemeArn(String themeArn) {
setThemeArn(themeArn);
return this;
}
/**
*
* The definition of a dashboard.
*
*
* A definition is the data model of all features in a Dashboard, Template, or Analysis.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request to be
* valid.
*
*
* @param definition
* The definition of a dashboard.
*
* A definition is the data model of all features in a Dashboard, Template, or Analysis.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request
* to be valid.
*/
public void setDefinition(DashboardVersionDefinition definition) {
this.definition = definition;
}
/**
*
* The definition of a dashboard.
*
*
* A definition is the data model of all features in a Dashboard, Template, or Analysis.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request to be
* valid.
*
*
* @return The definition of a dashboard.
*
* A definition is the data model of all features in a Dashboard, Template, or Analysis.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request
* to be valid.
*/
public DashboardVersionDefinition getDefinition() {
return this.definition;
}
/**
*
* The definition of a dashboard.
*
*
* A definition is the data model of all features in a Dashboard, Template, or Analysis.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request to be
* valid.
*
*
* @param definition
* The definition of a dashboard.
*
* A definition is the data model of all features in a Dashboard, Template, or Analysis.
*
*
* Either a SourceEntity
or a Definition
must be provided in order for the request
* to be valid.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDashboardRequest withDefinition(DashboardVersionDefinition 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 (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()).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 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;
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 + ((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());
hashCode = prime * hashCode + ((getThemeArn() == null) ? 0 : getThemeArn().hashCode());
hashCode = prime * hashCode + ((getDefinition() == null) ? 0 : getDefinition().hashCode());
return hashCode;
}
@Override
public CreateDashboardRequest clone() {
return (CreateDashboardRequest) super.clone();
}
}