NAME

Paws::Quicksight::UpdateDashboard - Arguments for method UpdateDashboard on Paws::Quicksight

DESCRIPTION

This class represents the parameters used for calling the method UpdateDashboard on the Amazon QuickSight service. Use the attributes of this class as arguments to method UpdateDashboard.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateDashboard.

SYNOPSIS

my $quicksight = Paws->service('Quicksight');
my $UpdateDashboardResponse = $quicksight->UpdateDashboard(
  AwsAccountId => 'MyAwsAccountId',
  DashboardId  => 'MyRestrictiveResourceId',
  Name         => 'MyDashboardName',
  SourceEntity => {
    SourceTemplate => {
      Arn               => 'MyArn',
      DataSetReferences => [
        {
          DataSetArn         => 'MyArn',
          DataSetPlaceholder => 'MyNonEmptyString',

        },
        ...
      ],    # min: 1

    },    # OPTIONAL
  },
  DashboardPublishOptions => {
    AdHocFilteringOption => {
      AvailabilityStatus => 'ENABLED', # values: ENABLED, DISABLED; OPTIONAL
    },    # OPTIONAL
    ExportToCSVOption => {
      AvailabilityStatus => 'ENABLED', # values: ENABLED, DISABLED; OPTIONAL
    },    # OPTIONAL
    SheetControlsOption => {
      VisibilityState => 'EXPANDED', # values: EXPANDED, COLLAPSED; OPTIONAL
    },    # OPTIONAL
  },    # OPTIONAL
  Parameters => {
    DateTimeParameters => [
      {
        Name   => 'MyNonEmptyString',
        Values => [ '1970-01-01T01:00:00', ... ],

      },
      ...
    ],    # max: 100; OPTIONAL
    DecimalParameters => [
      {
        Name   => 'MyNonEmptyString',
        Values => [ 1, ... ],

      },
      ...
    ],    # max: 100; OPTIONAL
    IntegerParameters => [
      {
        Name   => 'MyNonEmptyString',
        Values => [ 1, ... ],

      },
      ...
    ],    # max: 100; OPTIONAL
    StringParameters => [
      {
        Name   => 'MyNonEmptyString',
        Values => [ 'MyString', ... ],

      },
      ...
    ],    # max: 100; OPTIONAL
  },    # OPTIONAL
  VersionDescription => 'MyVersionDescription',    # OPTIONAL
);

# Results:
my $Arn            = $UpdateDashboardResponse->Arn;
my $CreationStatus = $UpdateDashboardResponse->CreationStatus;
my $DashboardId    = $UpdateDashboardResponse->DashboardId;
my $RequestId      = $UpdateDashboardResponse->RequestId;
my $Status         = $UpdateDashboardResponse->Status;
my $VersionArn     = $UpdateDashboardResponse->VersionArn;

# Returns a L<Paws::Quicksight::UpdateDashboardResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/quicksight/UpdateDashboard

ATTRIBUTES

REQUIRED AwsAccountId => Str

The ID of the AWS account that contains the dashboard that you're updating.

REQUIRED DashboardId => Str

The ID for the dashboard.

DashboardPublishOptions => Paws::Quicksight::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, 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. The sheet controls pane is collapsed by default when set to true. This option is COLLAPSED by default.

REQUIRED Name => Str

The display name of the dashboard.

Parameters => Paws::Quicksight::Parameters

A structure that contains the parameters of the dashboard.

REQUIRED SourceEntity => Paws::Quicksight::DashboardSourceEntity

The template or analysis from which the dashboard is created. The SouceTemplate entity accepts the Amazon Resource Name (ARN) of the template and also references to 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.

VersionDescription => Str

A description for the first version of the dashboard being created.

SEE ALSO

This class forms part of Paws, documenting arguments for method UpdateDashboard in Paws::Quicksight

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues