Amazon QuickSight

2023/07/24 - Amazon QuickSight - 3 new 9 updated api methods

Changes  This release launches new Snapshot APIs for CSV and PDF exports, adds support for info icon for filters and parameters in Exploration APIs, adds modeled exception to the DeleteAccountCustomization API, and introduces AttributeAggregationFunction's ability to add UNIQUE_VALUE aggregation in tooltips.

DescribeDashboardSnapshotJobResult (new) Link ¶

Describes the result of an existing snapshot job that has finished running.

A finished snapshot job will return a COMPLETED or FAILED status when you poll the job with a DescribeDashboardSnapshotJob API call.

If the job has not finished running, this operation returns a message that says Dashboard Snapshot Job with id <SnapshotjobId> has not reached a terminal state. .

See also: AWS API Documentation

Request Syntax

client.describe_dashboard_snapshot_job_result(
    AwsAccountId='string',
    DashboardId='string',
    SnapshotJobId='string'
)
type AwsAccountId

string

param AwsAccountId

[REQUIRED]

The ID of the Amazon Web Services account that the dashboard snapshot job is executed in.

type DashboardId

string

param DashboardId

[REQUIRED]

The ID of the dashboard that you have started a snapshot job for.

type SnapshotJobId

string

param SnapshotJobId

[REQUIRED]

The ID of the job to be described. The job ID is set when you start a new job with a StartDashboardSnapshotJob API call.

rtype

dict

returns

Response Syntax

{
    'Arn': 'string',
    'JobStatus': 'QUEUED'|'RUNNING'|'COMPLETED'|'FAILED',
    'CreatedTime': datetime(2015, 1, 1),
    'LastUpdatedTime': datetime(2015, 1, 1),
    'Result': {
        'AnonymousUsers': [
            {
                'FileGroups': [
                    {
                        'Files': [
                            {
                                'SheetSelections': [
                                    {
                                        'SheetId': 'string',
                                        'SelectionScope': 'ALL_VISUALS'|'SELECTED_VISUALS',
                                        'VisualIds': [
                                            'string',
                                        ]
                                    },
                                ],
                                'FormatType': 'CSV'|'PDF'
                            },
                        ],
                        'S3Results': [
                            {
                                'S3DestinationConfiguration': {
                                    'BucketConfiguration': {
                                        'BucketName': 'string',
                                        'BucketPrefix': 'string',
                                        'BucketRegion': 'string'
                                    }
                                },
                                'S3Uri': 'string',
                                'ErrorInfo': [
                                    {
                                        'ErrorMessage': 'string',
                                        'ErrorType': 'string'
                                    },
                                ]
                            },
                        ]
                    },
                ]
            },
        ]
    },
    'ErrorInfo': {
        'ErrorMessage': 'string',
        'ErrorType': 'string'
    },
    'RequestId': 'string',
    'Status': 123
}

Response Structure

  • (dict) --

    • Arn (string) --

      The Amazon Resource Name (ARN) for the snapshot job. The job ARN is generated when you start a new job with a StartDashboardSnapshotJob API call.

    • JobStatus (string) --

      Indicates the status of a job after it has reached a terminal state. A finished snapshot job will retuen a COMPLETED or FAILED status.

    • CreatedTime (datetime) --

      The time that a snapshot job was created.

    • LastUpdatedTime (datetime) --

      The time that a snapshot job status was last updated.

    • Result (dict) --

      The result of the snapshot job. Jobs that have successfully completed will return the S3Uri where they are located. Jobs that have failedwill return information on the error that caused the job to fail.

      • AnonymousUsers (list) --

        A list of AnonymousUserSnapshotJobResult objects that contain information on anonymous users and their user configurations. This data provided by you when you make a StartDashboardSnapshotJob API call.

        • (dict) --

          A structure that contains the file groups that are requested for the artifact generation in a StartDashboardSnapshotJob API call.

          • FileGroups (list) --

            A list of SnapshotJobResultFileGroup objects that contain information on the files that are requested during a StartDashboardSnapshotJob API call. If the job succeeds, these objects contain the location where the snapshot artifacts are stored. If the job fails, the objects contain information about the error that caused the job to fail.

            • (dict) --

              A structure that contains information on the generated snapshot file groups.

              • Files (list) --

                A list of SnapshotFile objects.

                • (dict) --

                  A structure that contains the information for the snapshot that you want to generate. This information is provided by you when you start a new snapshot job.

                  • SheetSelections (list) --

                    A list of SnapshotFileSheetSelection objects that contain information on the dashboard sheet that is exported. These objects provide information about the snapshot artifacts that are generated during the job. This structure can hold a maximum of 5 CSV configurations or 1 configuration for PDF.

                    • (dict) --

                      A structure that contains information that identifies the snapshot that needs to be generated.

                      • SheetId (string) --

                        The sheet ID of the dashboard to generate the snapshot artifact from. This value is required for CSV or PDF format types.

                      • SelectionScope (string) --

                        The selection scope of the visuals on a sheet of a dashboard that you are generating a snapthot of. You can choose one of the following options.

                        • ALL_VISUALS - Selects all visuals that are on the sheet. This value is required if the snapshot is a PDF.

                        • SELECTED_VISUALS - Select the visual that you want to add to the snapshot. This value is required if the snapshot is a CSV.

                      • VisualIds (list) --

                        A structure that lists the IDs of the visuals in the selected sheet. Supported visual types are table, pivot table visuals. This value is required if you are generating a CSV. This value supports a maximum of 1 visual ID.

                        • (string) --

                  • FormatType (string) --

                    The format of the snapshot file to be generated. You can choose between CSV and PDF .

              • S3Results (list) --

                A list of SnapshotJobS3Result objects.

                • (dict) --

                  The Amazon S3 result from the snapshot job. The result includes the DestinationConfiguration and the Amazon S3 Uri. If an error occured during the job, the result returns information on the error.

                  • S3DestinationConfiguration (dict) --

                    A list of Amazon S3 bucket configurations that are provided when you make a StartDashboardSnapshotJob API call.

                    • BucketConfiguration (dict) --

                      A structure that contains details about the Amazon S3 bucket that the generated dashboard snapshot is saved in.

                      • BucketName (string) --

                        The name of an existing Amazon S3 bucket where the generated snapshot artifacts are sent.

                      • BucketPrefix (string) --

                        The prefix of the Amazon S3 bucket that the generated snapshots are stored in.

                      • BucketRegion (string) --

                        The region that the Amazon S3 bucket is located in. The bucket must be located in the same region that the StartDashboardSnapshotJob API call is made.

                  • S3Uri (string) --

                    The Amazon S3 Uri.

                  • ErrorInfo (list) --

                    An array of error records that describe any failures that occur while the dashboard snapshot job runs.

                    • (dict) --

                      Information on the error that caused the snapshot job to fail.

                      • ErrorMessage (string) --

                        The error message.

                      • ErrorType (string) --

                        The error type.

    • ErrorInfo (dict) --

      Displays information for the error that caused a job to fail.

      • ErrorMessage (string) --

        The error message.

      • ErrorType (string) --

        The error type.

    • RequestId (string) --

      The Amazon Web Services request ID for this operation.

    • Status (integer) --

      The HTTP status of the request

StartDashboardSnapshotJob (new) Link ¶

Starts an asynchronous job that generates a dashboard snapshot. You can request up to one paginated PDF and up to five CSVs per API call.

Poll job descriptions with a DescribeDashboardSnapshotJob API call. Once the job succeeds, use the DescribeDashboardSnapshotJobResult API to obtain the download URIs that the job generates.

See also: AWS API Documentation

Request Syntax

client.start_dashboard_snapshot_job(
    AwsAccountId='string',
    DashboardId='string',
    SnapshotJobId='string',
    UserConfiguration={
        'AnonymousUsers': [
            {
                'RowLevelPermissionTags': [
                    {
                        'Key': 'string',
                        'Value': 'string'
                    },
                ]
            },
        ]
    },
    SnapshotConfiguration={
        'FileGroups': [
            {
                'Files': [
                    {
                        'SheetSelections': [
                            {
                                'SheetId': 'string',
                                'SelectionScope': 'ALL_VISUALS'|'SELECTED_VISUALS',
                                'VisualIds': [
                                    'string',
                                ]
                            },
                        ],
                        'FormatType': 'CSV'|'PDF'
                    },
                ]
            },
        ],
        'DestinationConfiguration': {
            'S3Destinations': [
                {
                    'BucketConfiguration': {
                        'BucketName': 'string',
                        'BucketPrefix': 'string',
                        'BucketRegion': 'string'
                    }
                },
            ]
        },
        'Parameters': {
            'StringParameters': [
                {
                    'Name': 'string',
                    'Values': [
                        'string',
                    ]
                },
            ],
            'IntegerParameters': [
                {
                    'Name': 'string',
                    'Values': [
                        123,
                    ]
                },
            ],
            'DecimalParameters': [
                {
                    'Name': 'string',
                    'Values': [
                        123.0,
                    ]
                },
            ],
            'DateTimeParameters': [
                {
                    'Name': 'string',
                    'Values': [
                        datetime(2015, 1, 1),
                    ]
                },
            ]
        }
    }
)
type AwsAccountId

string

param AwsAccountId

[REQUIRED]

The ID of the Amazon Web Services account that the dashboard snapshot job is executed in.

type DashboardId

string

param DashboardId

[REQUIRED]

The ID of the dashboard that you want to start a snapshot job for.

type SnapshotJobId

string

param SnapshotJobId

[REQUIRED]

An ID for the dashboard snapshot job. This ID is unique to the dashboard while the job is running. This ID can be used to poll the status of a job with a DescribeDashboardSnapshotJob while the job runs. You can reuse this ID for another job 24 hours after the current job is completed.

type UserConfiguration

dict

param UserConfiguration

[REQUIRED]

A structure that contains information about the anonymous users that the generated snapshot is for. This API will not return information about registered Amazon QuickSight.

  • AnonymousUsers (list) --

    An array of records that describe the anonymous users that the dashboard snapshot is generated for.

    • (dict) --

      A structure that contains information on the anonymous user configuration.

      • RowLevelPermissionTags (list) --

        The tags to be used for row-level security (RLS). Make sure that the relevant datasets have RLS tags configured before you start a snapshot export job. You can configure the RLS tags of a dataset with a DataSet$RowLevelPermissionTagConfiguration API call.

        These are not the tags that are used for Amazon Web Services resource tagging. For more information on row level security in Amazon QuickSight, see Using Row-Level Security (RLS) with Tags in the Amazon QuickSight User Guide .

        • (dict) --

          The key-value pair used for the row-level security tags feature.

          • Key (string) -- [REQUIRED]

            The key for the tag.

          • Value (string) -- [REQUIRED]

            The value that you want to assign the tag.

type SnapshotConfiguration

dict

param SnapshotConfiguration

[REQUIRED]

A structure that describes the configuration of the dashboard snapshot.

  • FileGroups (list) -- [REQUIRED]

    A list of SnapshotJobResultFileGroup objects that contain information about the snapshot that is generated. This list can hold a maximum of 6 FileGroup configurations.

    • (dict) --

      A structure that contains the information on the snapshot files.

      • Files (list) --

        A list of SnapshotFile objects that contain the information on the snapshot files that need to be generated. This structure can hold 1 configuration at a time.

        • (dict) --

          A structure that contains the information for the snapshot that you want to generate. This information is provided by you when you start a new snapshot job.

          • SheetSelections (list) -- [REQUIRED]

            A list of SnapshotFileSheetSelection objects that contain information on the dashboard sheet that is exported. These objects provide information about the snapshot artifacts that are generated during the job. This structure can hold a maximum of 5 CSV configurations or 1 configuration for PDF.

            • (dict) --

              A structure that contains information that identifies the snapshot that needs to be generated.

              • SheetId (string) -- [REQUIRED]

                The sheet ID of the dashboard to generate the snapshot artifact from. This value is required for CSV or PDF format types.

              • SelectionScope (string) -- [REQUIRED]

                The selection scope of the visuals on a sheet of a dashboard that you are generating a snapthot of. You can choose one of the following options.

                • ALL_VISUALS - Selects all visuals that are on the sheet. This value is required if the snapshot is a PDF.

                • SELECTED_VISUALS - Select the visual that you want to add to the snapshot. This value is required if the snapshot is a CSV.

              • VisualIds (list) --

                A structure that lists the IDs of the visuals in the selected sheet. Supported visual types are table, pivot table visuals. This value is required if you are generating a CSV. This value supports a maximum of 1 visual ID.

                • (string) --

          • FormatType (string) -- [REQUIRED]

            The format of the snapshot file to be generated. You can choose between CSV and PDF .

  • DestinationConfiguration (dict) --

    A structure that contains information on the Amazon S3 bucket that the generated snapshot is stored in.

    • S3Destinations (list) --

      A list of SnapshotS3DestinationConfiguration objects that contain Amazon S3 destination configurations. This structure can hold a maximum of 1 S3DestinationConfiguration .

      • (dict) --

        A structure that describes the Amazon S3 settings to use to save the generated dashboard snapshot.

        • BucketConfiguration (dict) --

          A structure that contains details about the Amazon S3 bucket that the generated dashboard snapshot is saved in.

          • BucketName (string) -- [REQUIRED]

            The name of an existing Amazon S3 bucket where the generated snapshot artifacts are sent.

          • BucketPrefix (string) -- [REQUIRED]

            The prefix of the Amazon S3 bucket that the generated snapshots are stored in.

          • BucketRegion (string) -- [REQUIRED]

            The region that the Amazon S3 bucket is located in. The bucket must be located in the same region that the StartDashboardSnapshotJob API call is made.

  • Parameters (dict) --

    A list of Amazon QuickSight parameters and the list's override values.

    • StringParameters (list) --

      The parameters that have a data type of string.

      • (dict) --

        A string parameter.

        • Name (string) -- [REQUIRED]

          A display name for a string parameter.

        • Values (list) -- [REQUIRED]

          The values of a string parameter.

          • (string) --

    • IntegerParameters (list) --

      The parameters that have a data type of integer.

      • (dict) --

        An integer parameter.

        • Name (string) -- [REQUIRED]

          The name of the integer parameter.

        • Values (list) -- [REQUIRED]

          The values for the integer parameter.

          • (integer) --

    • DecimalParameters (list) --

      The parameters that have a data type of decimal.

      • (dict) --

        A decimal parameter.

        • Name (string) -- [REQUIRED]

          A display name for the decimal parameter.

        • Values (list) -- [REQUIRED]

          The values for the decimal parameter.

          • (float) --

    • DateTimeParameters (list) --

      The parameters that have a data type of date-time.

      • (dict) --

        A date-time parameter.

        • Name (string) -- [REQUIRED]

          A display name for the date-time parameter.

        • Values (list) -- [REQUIRED]

          The values for the date-time parameter.

          • (datetime) --

rtype

dict

returns

Response Syntax

{
    'Arn': 'string',
    'SnapshotJobId': 'string',
    'RequestId': 'string',
    'Status': 123
}

Response Structure

  • (dict) --

    • Arn (string) --

      The Amazon Resource Name (ARN) for the dashboard snapshot job.

    • SnapshotJobId (string) --

      The ID of the job. The job ID is set when you start a new job with a StartDashboardSnapshotJob API call.

    • RequestId (string) --

      The Amazon Web Services request ID for this operation.

    • Status (integer) --

      The HTTP status of the request

DescribeDashboardSnapshotJob (new) Link ¶

Describes an existing snapshot job.

Poll job descriptions after a job starts to know the status of the job. For information on available status codes, see JobStatus .

See also: AWS API Documentation

Request Syntax

client.describe_dashboard_snapshot_job(
    AwsAccountId='string',
    DashboardId='string',
    SnapshotJobId='string'
)
type AwsAccountId

string

param AwsAccountId

[REQUIRED]

The ID of the Amazon Web Services account that the dashboard snapshot job is executed in.

type DashboardId

string

param DashboardId

[REQUIRED]

The ID of the dashboard that you have started a snapshot job for.

type SnapshotJobId

string

param SnapshotJobId

[REQUIRED]

The ID of the job to be described. The job ID is set when you start a new job with a StartDashboardSnapshotJob API call.

rtype

dict

returns

Response Syntax

{
    'AwsAccountId': 'string',
    'DashboardId': 'string',
    'SnapshotJobId': 'string',
    'UserConfiguration': {
        'AnonymousUsers': [
            {
                'RowLevelPermissionTagKeys': [
                    'string',
                ]
            },
        ]
    },
    'SnapshotConfiguration': {
        'FileGroups': [
            {
                'Files': [
                    {
                        'SheetSelections': [
                            {
                                'SheetId': 'string',
                                'SelectionScope': 'ALL_VISUALS'|'SELECTED_VISUALS',
                                'VisualIds': [
                                    'string',
                                ]
                            },
                        ],
                        'FormatType': 'CSV'|'PDF'
                    },
                ]
            },
        ],
        'DestinationConfiguration': {
            'S3Destinations': [
                {
                    'BucketConfiguration': {
                        'BucketName': 'string',
                        'BucketPrefix': 'string',
                        'BucketRegion': 'string'
                    }
                },
            ]
        },
        'Parameters': {
            'StringParameters': [
                {
                    'Name': 'string',
                    'Values': [
                        'string',
                    ]
                },
            ],
            'IntegerParameters': [
                {
                    'Name': 'string',
                    'Values': [
                        123,
                    ]
                },
            ],
            'DecimalParameters': [
                {
                    'Name': 'string',
                    'Values': [
                        123.0,
                    ]
                },
            ],
            'DateTimeParameters': [
                {
                    'Name': 'string',
                    'Values': [
                        datetime(2015, 1, 1),
                    ]
                },
            ]
        }
    },
    'Arn': 'string',
    'JobStatus': 'QUEUED'|'RUNNING'|'COMPLETED'|'FAILED',
    'CreatedTime': datetime(2015, 1, 1),
    'LastUpdatedTime': datetime(2015, 1, 1),
    'RequestId': 'string',
    'Status': 123
}

Response Structure

  • (dict) --

    • AwsAccountId (string) --

      The ID of the Amazon Web Services account that the dashboard snapshot job is executed in.

    • DashboardId (string) --

      The ID of the dashboard that you have started a snapshot job for.

    • SnapshotJobId (string) --

      The ID of the job to be described. The job ID is set when you start a new job with a StartDashboardSnapshotJob API call.

    • UserConfiguration (dict) --

      The user configuration for the snapshot job. This information is provided when you make a StartDashboardSnapshotJob API call.

      • AnonymousUsers (list) --

        An array of records that describe anonymous users that the dashboard snapshot is generated for. Sensitive user information is excluded.

        • (dict) --

          Use this structure to redact sensitive information that you provide about an anonymous user from the snapshot.

          • RowLevelPermissionTagKeys (list) --

            The tag keys for the RowLevelPermissionTags .

            • (string) --

    • SnapshotConfiguration (dict) --

      The snapshot configuration of the job. This information is provided when you make a StartDashboardSnapshotJob API call.

      • FileGroups (list) --

        A list of SnapshotJobResultFileGroup objects that contain information about the snapshot that is generated. This list can hold a maximum of 6 FileGroup configurations.

        • (dict) --

          A structure that contains the information on the snapshot files.

          • Files (list) --

            A list of SnapshotFile objects that contain the information on the snapshot files that need to be generated. This structure can hold 1 configuration at a time.

            • (dict) --

              A structure that contains the information for the snapshot that you want to generate. This information is provided by you when you start a new snapshot job.

              • SheetSelections (list) --

                A list of SnapshotFileSheetSelection objects that contain information on the dashboard sheet that is exported. These objects provide information about the snapshot artifacts that are generated during the job. This structure can hold a maximum of 5 CSV configurations or 1 configuration for PDF.

                • (dict) --

                  A structure that contains information that identifies the snapshot that needs to be generated.

                  • SheetId (string) --

                    The sheet ID of the dashboard to generate the snapshot artifact from. This value is required for CSV or PDF format types.

                  • SelectionScope (string) --

                    The selection scope of the visuals on a sheet of a dashboard that you are generating a snapthot of. You can choose one of the following options.

                    • ALL_VISUALS - Selects all visuals that are on the sheet. This value is required if the snapshot is a PDF.

                    • SELECTED_VISUALS - Select the visual that you want to add to the snapshot. This value is required if the snapshot is a CSV.

                  • VisualIds (list) --

                    A structure that lists the IDs of the visuals in the selected sheet. Supported visual types are table, pivot table visuals. This value is required if you are generating a CSV. This value supports a maximum of 1 visual ID.

                    • (string) --

              • FormatType (string) --

                The format of the snapshot file to be generated. You can choose between CSV and PDF .

      • DestinationConfiguration (dict) --

        A structure that contains information on the Amazon S3 bucket that the generated snapshot is stored in.

        • S3Destinations (list) --

          A list of SnapshotS3DestinationConfiguration objects that contain Amazon S3 destination configurations. This structure can hold a maximum of 1 S3DestinationConfiguration .

          • (dict) --

            A structure that describes the Amazon S3 settings to use to save the generated dashboard snapshot.

            • BucketConfiguration (dict) --

              A structure that contains details about the Amazon S3 bucket that the generated dashboard snapshot is saved in.

              • BucketName (string) --

                The name of an existing Amazon S3 bucket where the generated snapshot artifacts are sent.

              • BucketPrefix (string) --

                The prefix of the Amazon S3 bucket that the generated snapshots are stored in.

              • BucketRegion (string) --

                The region that the Amazon S3 bucket is located in. The bucket must be located in the same region that the StartDashboardSnapshotJob API call is made.

      • Parameters (dict) --

        A list of Amazon QuickSight parameters and the list's override values.

        • StringParameters (list) --

          The parameters that have a data type of string.

          • (dict) --

            A string parameter.

            • Name (string) --

              A display name for a string parameter.

            • Values (list) --

              The values of a string parameter.

              • (string) --

        • IntegerParameters (list) --

          The parameters that have a data type of integer.

          • (dict) --

            An integer parameter.

            • Name (string) --

              The name of the integer parameter.

            • Values (list) --

              The values for the integer parameter.

              • (integer) --

        • DecimalParameters (list) --

          The parameters that have a data type of decimal.

          • (dict) --

            A decimal parameter.

            • Name (string) --

              A display name for the decimal parameter.

            • Values (list) --

              The values for the decimal parameter.

              • (float) --

        • DateTimeParameters (list) --

          The parameters that have a data type of date-time.

          • (dict) --

            A date-time parameter.

            • Name (string) --

              A display name for the date-time parameter.

            • Values (list) --

              The values for the date-time parameter.

              • (datetime) --

    • Arn (string) --

      The Amazon Resource Name (ARN) for the snapshot job. The job ARN is generated when you start a new job with a StartDashboardSnapshotJob API call.

    • JobStatus (string) --

      Indicates the status of a job. The status updates as the job executes. This shows one of the following values.

      • COMPLETED - The job was completed successfully.

      • FAILED - The job failed to execute.

      • QUEUED - The job is queued and hasn't started yet.

      • RUNNING - The job is still running.

    • CreatedTime (datetime) --

      The time that the snapshot job was created.

    • LastUpdatedTime (datetime) --

      The time that the snapshot job status was last updated.

    • RequestId (string) --

      The Amazon Web Services request ID for this operation.

    • Status (integer) --

      The HTTP status of the request

CreateAnalysis (updated) Link ¶
Changes (request)
{'Definition': {'FilterGroups': {'Filters': {'NumericEqualityFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                'ValueForMultipleValues': 'string'}}},
                                             'NumericRangeFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                             'ValueForMultipleValues': 'string'}}},
                                             'TopBottomFilter': {'AggregationSortConfigurations': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}},
                'Sheets': {'FilterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                             'Visibility': 'HIDDEN '
                                                                                                                           '| '
                                                                                                                           'VISIBLE'}}},
                                              'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                   'Visibility': 'HIDDEN '
                                                                                                                 '| '
                                                                                                                 'VISIBLE'}}},
                                              'RelativeDateTime': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                               'Visibility': 'HIDDEN '
                                                                                                                             '| '
                                                                                                                             'VISIBLE'}}},
                                              'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                     'Visibility': 'HIDDEN '
                                                                                                                   '| '
                                                                                                                   'VISIBLE'}}},
                                              'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}}},
                           'ParameterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                                'Visibility': 'HIDDEN '
                                                                                                                              '| '
                                                                                                                              'VISIBLE'}}},
                                                 'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                      'Visibility': 'HIDDEN '
                                                                                                                    '| '
                                                                                                                    'VISIBLE'}}},
                                                 'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}},
                                                 'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                           'Visibility': 'HIDDEN '
                                                                                                                         '| '
                                                                                                                         'VISIBLE'}}}},
                           'Visuals': {'BarChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                 'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'BoxPlotVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}}},
                                                                                'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'ComboChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}},
                                                                                   'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                   'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FilledMapVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FunnelChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                    'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GaugeChartVisual': {'ChartConfiguration': {'TooltipOptions': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GeospatialMapVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HeatMapVisual': {'ChartConfiguration': {'SortConfiguration': {'HeatMapColumnSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}},
                                                                                                      'HeatMapRowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HistogramVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'KPIVisual': {'ChartConfiguration': {'SortConfiguration': {'TrendGroupSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}},
                                       'LineChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}}},
                                                                                  'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}},
                                                                                                        'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                       'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PieChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PivotTableVisual': {'ChartConfiguration': {'SortConfiguration': {'FieldSortOptions': {'SortBy': {'Column': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'RadarChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}},
                                       'SankeyDiagramVisual': {'ChartConfiguration': {'SortConfiguration': {'WeightSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}}}},
                                       'ScatterPlotVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'TableVisual': {'ChartConfiguration': {'SortConfiguration': {'RowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                        'ValueForMultipleValues': 'string'}}}}}}},
                                       'TreeMapVisual': {'ChartConfiguration': {'SortConfiguration': {'TreeMapSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'WaterfallVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}},
                                       'WordCloudVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}}}}}

Creates an analysis in Amazon QuickSight. Analyses can be created either from a template or from an AnalysisDefinition .

See also: AWS API Documentation

Request Syntax

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

Parameters

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

rtype

dict

returns

Response Syntax

{
    'Arn': 'string',
    'AnalysisId': 'string',
    'CreationStatus': 'CREATION_IN_PROGRESS'|'CREATION_SUCCESSFUL'|'CREATION_FAILED'|'UPDATE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_FAILED'|'DELETED',
    'Status': 123,
    'RequestId': 'string'
}

Response Structure

  • (dict) --

    • Arn (string) --

      The ARN for the analysis.

    • AnalysisId (string) --

      The ID of the analysis.

    • CreationStatus (string) --

      The status of the creation of the analysis.

    • Status (integer) --

      The HTTP status of the request.

    • RequestId (string) --

      The Amazon Web Services request ID for this operation.

CreateDashboard (updated) Link ¶
Changes (request)
{'Definition': {'FilterGroups': {'Filters': {'NumericEqualityFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                'ValueForMultipleValues': 'string'}}},
                                             'NumericRangeFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                             'ValueForMultipleValues': 'string'}}},
                                             'TopBottomFilter': {'AggregationSortConfigurations': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}},
                'Sheets': {'FilterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                             'Visibility': 'HIDDEN '
                                                                                                                           '| '
                                                                                                                           'VISIBLE'}}},
                                              'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                   'Visibility': 'HIDDEN '
                                                                                                                 '| '
                                                                                                                 'VISIBLE'}}},
                                              'RelativeDateTime': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                               'Visibility': 'HIDDEN '
                                                                                                                             '| '
                                                                                                                             'VISIBLE'}}},
                                              'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                     'Visibility': 'HIDDEN '
                                                                                                                   '| '
                                                                                                                   'VISIBLE'}}},
                                              'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}}},
                           'ParameterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                                'Visibility': 'HIDDEN '
                                                                                                                              '| '
                                                                                                                              'VISIBLE'}}},
                                                 'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                      'Visibility': 'HIDDEN '
                                                                                                                    '| '
                                                                                                                    'VISIBLE'}}},
                                                 'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}},
                                                 'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                           'Visibility': 'HIDDEN '
                                                                                                                         '| '
                                                                                                                         'VISIBLE'}}}},
                           'Visuals': {'BarChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                 'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'BoxPlotVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}}},
                                                                                'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'ComboChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}},
                                                                                   'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                   'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FilledMapVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FunnelChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                    'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GaugeChartVisual': {'ChartConfiguration': {'TooltipOptions': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GeospatialMapVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HeatMapVisual': {'ChartConfiguration': {'SortConfiguration': {'HeatMapColumnSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}},
                                                                                                      'HeatMapRowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HistogramVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'KPIVisual': {'ChartConfiguration': {'SortConfiguration': {'TrendGroupSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}},
                                       'LineChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}}},
                                                                                  'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}},
                                                                                                        'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                       'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PieChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PivotTableVisual': {'ChartConfiguration': {'SortConfiguration': {'FieldSortOptions': {'SortBy': {'Column': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'RadarChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}},
                                       'SankeyDiagramVisual': {'ChartConfiguration': {'SortConfiguration': {'WeightSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}}}},
                                       'ScatterPlotVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'TableVisual': {'ChartConfiguration': {'SortConfiguration': {'RowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                        'ValueForMultipleValues': 'string'}}}}}}},
                                       'TreeMapVisual': {'ChartConfiguration': {'SortConfiguration': {'TreeMapSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'WaterfallVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}},
                                       'WordCloudVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}}}}}

Creates a dashboard from either a template or directly with a DashboardDefinition . To first create a template, see the CreateTemplate API operation.

A dashboard is an entity in Amazon QuickSight that identifies Amazon QuickSight reports, created from analyses. You can share Amazon QuickSight dashboards. With the right permissions, you can create scheduled email reports from them. If you have the correct permissions, you can create a dashboard from a template that exists in a different Amazon Web Services account.

See also: AWS API Documentation

Request Syntax

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

Parameters

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

rtype

dict

returns

Response Syntax

{
    'Arn': 'string',
    'VersionArn': 'string',
    'DashboardId': 'string',
    'CreationStatus': 'CREATION_IN_PROGRESS'|'CREATION_SUCCESSFUL'|'CREATION_FAILED'|'UPDATE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_FAILED'|'DELETED',
    'Status': 123,
    'RequestId': 'string'
}

Response Structure

  • (dict) --

    • Arn (string) --

      The ARN of the dashboard.

    • VersionArn (string) --

      The ARN of the dashboard, including the version number of the first version that is created.

    • DashboardId (string) --

      The ID for the dashboard.

    • CreationStatus (string) --

      The status of the dashboard creation request.

    • Status (integer) --

      The HTTP status of the request.

    • RequestId (string) --

      The Amazon Web Services request ID for this operation.

CreateTemplate (updated) Link ¶
Changes (request)
{'Definition': {'FilterGroups': {'Filters': {'NumericEqualityFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                'ValueForMultipleValues': 'string'}}},
                                             'NumericRangeFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                             'ValueForMultipleValues': 'string'}}},
                                             'TopBottomFilter': {'AggregationSortConfigurations': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}},
                'Sheets': {'FilterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                             'Visibility': 'HIDDEN '
                                                                                                                           '| '
                                                                                                                           'VISIBLE'}}},
                                              'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                   'Visibility': 'HIDDEN '
                                                                                                                 '| '
                                                                                                                 'VISIBLE'}}},
                                              'RelativeDateTime': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                               'Visibility': 'HIDDEN '
                                                                                                                             '| '
                                                                                                                             'VISIBLE'}}},
                                              'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                     'Visibility': 'HIDDEN '
                                                                                                                   '| '
                                                                                                                   'VISIBLE'}}},
                                              'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}}},
                           'ParameterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                                'Visibility': 'HIDDEN '
                                                                                                                              '| '
                                                                                                                              'VISIBLE'}}},
                                                 'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                      'Visibility': 'HIDDEN '
                                                                                                                    '| '
                                                                                                                    'VISIBLE'}}},
                                                 'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}},
                                                 'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                           'Visibility': 'HIDDEN '
                                                                                                                         '| '
                                                                                                                         'VISIBLE'}}}},
                           'Visuals': {'BarChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                 'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'BoxPlotVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}}},
                                                                                'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'ComboChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}},
                                                                                   'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                   'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FilledMapVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FunnelChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                    'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GaugeChartVisual': {'ChartConfiguration': {'TooltipOptions': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GeospatialMapVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HeatMapVisual': {'ChartConfiguration': {'SortConfiguration': {'HeatMapColumnSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}},
                                                                                                      'HeatMapRowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HistogramVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'KPIVisual': {'ChartConfiguration': {'SortConfiguration': {'TrendGroupSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}},
                                       'LineChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}}},
                                                                                  'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}},
                                                                                                        'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                       'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PieChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PivotTableVisual': {'ChartConfiguration': {'SortConfiguration': {'FieldSortOptions': {'SortBy': {'Column': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'RadarChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}},
                                       'SankeyDiagramVisual': {'ChartConfiguration': {'SortConfiguration': {'WeightSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}}}},
                                       'ScatterPlotVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'TableVisual': {'ChartConfiguration': {'SortConfiguration': {'RowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                        'ValueForMultipleValues': 'string'}}}}}}},
                                       'TreeMapVisual': {'ChartConfiguration': {'SortConfiguration': {'TreeMapSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'WaterfallVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}},
                                       'WordCloudVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}}}}}

Creates a template either from a TemplateDefinition or from an existing Amazon QuickSight analysis or template. You can use the resulting template to create additional dashboards, templates, or analyses.

A template is an entity in Amazon QuickSight that encapsulates the metadata required to create an analysis and that you can use to create s dashboard. A template adds a layer of abstraction by using placeholders to replace the dataset associated with the analysis. You can use templates to create dashboards by replacing dataset placeholders with datasets that follow the same schema that was used to create the source analysis and template.

See also: AWS API Documentation

Request Syntax

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

Parameters

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

rtype

dict

returns

Response Syntax

{
    'Arn': 'string',
    'VersionArn': 'string',
    'TemplateId': 'string',
    'CreationStatus': 'CREATION_IN_PROGRESS'|'CREATION_SUCCESSFUL'|'CREATION_FAILED'|'UPDATE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_FAILED'|'DELETED',
    'Status': 123,
    'RequestId': 'string'
}

Response Structure

  • (dict) --

    • Arn (string) --

      The ARN for the template.

    • VersionArn (string) --

      The ARN for the template, including the version information of the first version.

    • TemplateId (string) --

      The ID of the template.

    • CreationStatus (string) --

      The template creation status.

    • Status (integer) --

      The HTTP status of the request.

    • RequestId (string) --

      The Amazon Web Services request ID for this operation.

DescribeAnalysisDefinition (updated) Link ¶
Changes (response)
{'Definition': {'FilterGroups': {'Filters': {'NumericEqualityFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                'ValueForMultipleValues': 'string'}}},
                                             'NumericRangeFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                             'ValueForMultipleValues': 'string'}}},
                                             'TopBottomFilter': {'AggregationSortConfigurations': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}},
                'Sheets': {'FilterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                             'Visibility': 'HIDDEN '
                                                                                                                           '| '
                                                                                                                           'VISIBLE'}}},
                                              'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                   'Visibility': 'HIDDEN '
                                                                                                                 '| '
                                                                                                                 'VISIBLE'}}},
                                              'RelativeDateTime': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                               'Visibility': 'HIDDEN '
                                                                                                                             '| '
                                                                                                                             'VISIBLE'}}},
                                              'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                     'Visibility': 'HIDDEN '
                                                                                                                   '| '
                                                                                                                   'VISIBLE'}}},
                                              'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}}},
                           'ParameterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                                'Visibility': 'HIDDEN '
                                                                                                                              '| '
                                                                                                                              'VISIBLE'}}},
                                                 'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                      'Visibility': 'HIDDEN '
                                                                                                                    '| '
                                                                                                                    'VISIBLE'}}},
                                                 'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}},
                                                 'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                           'Visibility': 'HIDDEN '
                                                                                                                         '| '
                                                                                                                         'VISIBLE'}}}},
                           'Visuals': {'BarChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                 'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'BoxPlotVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}}},
                                                                                'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'ComboChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}},
                                                                                   'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                   'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FilledMapVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FunnelChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                    'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GaugeChartVisual': {'ChartConfiguration': {'TooltipOptions': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GeospatialMapVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HeatMapVisual': {'ChartConfiguration': {'SortConfiguration': {'HeatMapColumnSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}},
                                                                                                      'HeatMapRowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HistogramVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'KPIVisual': {'ChartConfiguration': {'SortConfiguration': {'TrendGroupSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}},
                                       'LineChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}}},
                                                                                  'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}},
                                                                                                        'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                       'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PieChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PivotTableVisual': {'ChartConfiguration': {'SortConfiguration': {'FieldSortOptions': {'SortBy': {'Column': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'RadarChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}},
                                       'SankeyDiagramVisual': {'ChartConfiguration': {'SortConfiguration': {'WeightSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}}}},
                                       'ScatterPlotVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'TableVisual': {'ChartConfiguration': {'SortConfiguration': {'RowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                        'ValueForMultipleValues': 'string'}}}}}}},
                                       'TreeMapVisual': {'ChartConfiguration': {'SortConfiguration': {'TreeMapSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'WaterfallVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}},
                                       'WordCloudVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}}}}}

Provides a detailed description of the definition of an analysis.

Note

If you do not need to know details about the content of an Analysis, for instance if you are trying to check the status of a recently created or updated Analysis, use the DescribeAnalysis instead.

See also: AWS API Documentation

Request Syntax

client.describe_analysis_definition(
    AwsAccountId='string',
    AnalysisId='string'
)
type AwsAccountId

string

param AwsAccountId

[REQUIRED]

The ID of the Amazon Web Services account that contains the analysis. You must be using the Amazon Web Services account that the analysis is in.

type AnalysisId

string

param AnalysisId

[REQUIRED]

The ID of the analysis that you're describing. The ID is part of the URL of the analysis.

rtype

dict

returns

Response Syntax

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

Response Structure

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

DescribeDashboardDefinition (updated) Link ¶
Changes (response)
{'Definition': {'FilterGroups': {'Filters': {'NumericEqualityFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                'ValueForMultipleValues': 'string'}}},
                                             'NumericRangeFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                             'ValueForMultipleValues': 'string'}}},
                                             'TopBottomFilter': {'AggregationSortConfigurations': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}},
                'Sheets': {'FilterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                             'Visibility': 'HIDDEN '
                                                                                                                           '| '
                                                                                                                           'VISIBLE'}}},
                                              'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                   'Visibility': 'HIDDEN '
                                                                                                                 '| '
                                                                                                                 'VISIBLE'}}},
                                              'RelativeDateTime': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                               'Visibility': 'HIDDEN '
                                                                                                                             '| '
                                                                                                                             'VISIBLE'}}},
                                              'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                     'Visibility': 'HIDDEN '
                                                                                                                   '| '
                                                                                                                   'VISIBLE'}}},
                                              'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}}},
                           'ParameterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                                'Visibility': 'HIDDEN '
                                                                                                                              '| '
                                                                                                                              'VISIBLE'}}},
                                                 'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                      'Visibility': 'HIDDEN '
                                                                                                                    '| '
                                                                                                                    'VISIBLE'}}},
                                                 'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}},
                                                 'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                           'Visibility': 'HIDDEN '
                                                                                                                         '| '
                                                                                                                         'VISIBLE'}}}},
                           'Visuals': {'BarChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                 'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'BoxPlotVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}}},
                                                                                'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'ComboChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}},
                                                                                   'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                   'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FilledMapVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FunnelChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                    'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GaugeChartVisual': {'ChartConfiguration': {'TooltipOptions': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GeospatialMapVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HeatMapVisual': {'ChartConfiguration': {'SortConfiguration': {'HeatMapColumnSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}},
                                                                                                      'HeatMapRowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HistogramVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'KPIVisual': {'ChartConfiguration': {'SortConfiguration': {'TrendGroupSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}},
                                       'LineChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}}},
                                                                                  'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}},
                                                                                                        'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                       'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PieChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PivotTableVisual': {'ChartConfiguration': {'SortConfiguration': {'FieldSortOptions': {'SortBy': {'Column': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'RadarChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}},
                                       'SankeyDiagramVisual': {'ChartConfiguration': {'SortConfiguration': {'WeightSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}}}},
                                       'ScatterPlotVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'TableVisual': {'ChartConfiguration': {'SortConfiguration': {'RowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                        'ValueForMultipleValues': 'string'}}}}}}},
                                       'TreeMapVisual': {'ChartConfiguration': {'SortConfiguration': {'TreeMapSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'WaterfallVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}},
                                       'WordCloudVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}}}}}

Provides a detailed description of the definition of a dashboard.

Note

If you do not need to know details about the content of a dashboard, for instance if you are trying to check the status of a recently created or updated dashboard, use the DescribeDashboard instead.

See also: AWS API Documentation

Request Syntax

client.describe_dashboard_definition(
    AwsAccountId='string',
    DashboardId='string',
    VersionNumber=123,
    AliasName='string'
)
type AwsAccountId

string

param AwsAccountId

[REQUIRED]

The ID of the Amazon Web Services account that contains the dashboard that you're describing.

type DashboardId

string

param DashboardId

[REQUIRED]

The ID for the dashboard.

type VersionNumber

integer

param VersionNumber

The version number for the dashboard. If a version number isn't passed, the latest published dashboard version is described.

type AliasName

string

param AliasName

The alias name.

rtype

dict

returns

Response Syntax

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

Response Structure

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

DescribeTemplateDefinition (updated) Link ¶
Changes (response)
{'Definition': {'FilterGroups': {'Filters': {'NumericEqualityFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                'ValueForMultipleValues': 'string'}}},
                                             'NumericRangeFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                             'ValueForMultipleValues': 'string'}}},
                                             'TopBottomFilter': {'AggregationSortConfigurations': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}},
                'Sheets': {'FilterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                             'Visibility': 'HIDDEN '
                                                                                                                           '| '
                                                                                                                           'VISIBLE'}}},
                                              'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                   'Visibility': 'HIDDEN '
                                                                                                                 '| '
                                                                                                                 'VISIBLE'}}},
                                              'RelativeDateTime': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                               'Visibility': 'HIDDEN '
                                                                                                                             '| '
                                                                                                                             'VISIBLE'}}},
                                              'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                     'Visibility': 'HIDDEN '
                                                                                                                   '| '
                                                                                                                   'VISIBLE'}}},
                                              'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}}},
                           'ParameterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                                'Visibility': 'HIDDEN '
                                                                                                                              '| '
                                                                                                                              'VISIBLE'}}},
                                                 'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                      'Visibility': 'HIDDEN '
                                                                                                                    '| '
                                                                                                                    'VISIBLE'}}},
                                                 'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}},
                                                 'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                           'Visibility': 'HIDDEN '
                                                                                                                         '| '
                                                                                                                         'VISIBLE'}}}},
                           'Visuals': {'BarChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                 'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'BoxPlotVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}}},
                                                                                'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'ComboChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}},
                                                                                   'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                   'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FilledMapVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FunnelChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                    'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GaugeChartVisual': {'ChartConfiguration': {'TooltipOptions': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GeospatialMapVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HeatMapVisual': {'ChartConfiguration': {'SortConfiguration': {'HeatMapColumnSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}},
                                                                                                      'HeatMapRowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HistogramVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'KPIVisual': {'ChartConfiguration': {'SortConfiguration': {'TrendGroupSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}},
                                       'LineChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}}},
                                                                                  'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}},
                                                                                                        'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                       'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PieChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PivotTableVisual': {'ChartConfiguration': {'SortConfiguration': {'FieldSortOptions': {'SortBy': {'Column': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'RadarChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}},
                                       'SankeyDiagramVisual': {'ChartConfiguration': {'SortConfiguration': {'WeightSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}}}},
                                       'ScatterPlotVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'TableVisual': {'ChartConfiguration': {'SortConfiguration': {'RowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                        'ValueForMultipleValues': 'string'}}}}}}},
                                       'TreeMapVisual': {'ChartConfiguration': {'SortConfiguration': {'TreeMapSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'WaterfallVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}},
                                       'WordCloudVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}}}}}

Provides a detailed description of the definition of a template.

Note

If you do not need to know details about the content of a template, for instance if you are trying to check the status of a recently created or updated template, use the DescribeTemplate instead.

See also: AWS API Documentation

Request Syntax

client.describe_template_definition(
    AwsAccountId='string',
    TemplateId='string',
    VersionNumber=123,
    AliasName='string'
)
type AwsAccountId

string

param AwsAccountId

[REQUIRED]

The ID of the Amazon Web Services account that contains the template. You must be using the Amazon Web Services account that the template is in.

type TemplateId

string

param TemplateId

[REQUIRED]

The ID of the template that you're describing.

type VersionNumber

integer

param VersionNumber

The version number of the template.

type AliasName

string

param AliasName

The alias of the template that you want to describe. If you name a specific alias, you describe the version that the alias points to. You can specify the latest version of the template by providing the keyword $LATEST in the AliasName parameter. The keyword $PUBLISHED doesn't apply to templates.

rtype

dict

returns

Response Syntax

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

Response Structure

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

UpdateAnalysis (updated) Link ¶
Changes (request)
{'Definition': {'FilterGroups': {'Filters': {'NumericEqualityFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                'ValueForMultipleValues': 'string'}}},
                                             'NumericRangeFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                             'ValueForMultipleValues': 'string'}}},
                                             'TopBottomFilter': {'AggregationSortConfigurations': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}},
                'Sheets': {'FilterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                             'Visibility': 'HIDDEN '
                                                                                                                           '| '
                                                                                                                           'VISIBLE'}}},
                                              'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                   'Visibility': 'HIDDEN '
                                                                                                                 '| '
                                                                                                                 'VISIBLE'}}},
                                              'RelativeDateTime': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                               'Visibility': 'HIDDEN '
                                                                                                                             '| '
                                                                                                                             'VISIBLE'}}},
                                              'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                     'Visibility': 'HIDDEN '
                                                                                                                   '| '
                                                                                                                   'VISIBLE'}}},
                                              'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}}},
                           'ParameterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                                'Visibility': 'HIDDEN '
                                                                                                                              '| '
                                                                                                                              'VISIBLE'}}},
                                                 'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                      'Visibility': 'HIDDEN '
                                                                                                                    '| '
                                                                                                                    'VISIBLE'}}},
                                                 'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}},
                                                 'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                           'Visibility': 'HIDDEN '
                                                                                                                         '| '
                                                                                                                         'VISIBLE'}}}},
                           'Visuals': {'BarChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                 'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'BoxPlotVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}}},
                                                                                'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'ComboChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}},
                                                                                   'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                   'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FilledMapVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FunnelChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                    'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GaugeChartVisual': {'ChartConfiguration': {'TooltipOptions': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GeospatialMapVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HeatMapVisual': {'ChartConfiguration': {'SortConfiguration': {'HeatMapColumnSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}},
                                                                                                      'HeatMapRowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HistogramVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'KPIVisual': {'ChartConfiguration': {'SortConfiguration': {'TrendGroupSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}},
                                       'LineChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}}},
                                                                                  'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}},
                                                                                                        'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                       'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PieChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PivotTableVisual': {'ChartConfiguration': {'SortConfiguration': {'FieldSortOptions': {'SortBy': {'Column': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'RadarChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}},
                                       'SankeyDiagramVisual': {'ChartConfiguration': {'SortConfiguration': {'WeightSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}}}},
                                       'ScatterPlotVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'TableVisual': {'ChartConfiguration': {'SortConfiguration': {'RowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                        'ValueForMultipleValues': 'string'}}}}}}},
                                       'TreeMapVisual': {'ChartConfiguration': {'SortConfiguration': {'TreeMapSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'WaterfallVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}},
                                       'WordCloudVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}}}}}

Updates an analysis in Amazon QuickSight

See also: AWS API Documentation

Request Syntax

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

Parameters

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

rtype

dict

returns

Response Syntax

{
    'Arn': 'string',
    'AnalysisId': 'string',
    'UpdateStatus': 'CREATION_IN_PROGRESS'|'CREATION_SUCCESSFUL'|'CREATION_FAILED'|'UPDATE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_FAILED'|'DELETED',
    'Status': 123,
    'RequestId': 'string'
}

Response Structure

  • (dict) --

    • Arn (string) --

      The ARN of the analysis that you're updating.

    • AnalysisId (string) --

      The ID of the analysis.

    • UpdateStatus (string) --

      The update status of the last update that was made to the analysis.

    • Status (integer) --

      The HTTP status of the request.

    • RequestId (string) --

      The Amazon Web Services request ID for this operation.

UpdateDashboard (updated) Link ¶
Changes (request)
{'Definition': {'FilterGroups': {'Filters': {'NumericEqualityFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                'ValueForMultipleValues': 'string'}}},
                                             'NumericRangeFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                             'ValueForMultipleValues': 'string'}}},
                                             'TopBottomFilter': {'AggregationSortConfigurations': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}},
                'Sheets': {'FilterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                             'Visibility': 'HIDDEN '
                                                                                                                           '| '
                                                                                                                           'VISIBLE'}}},
                                              'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                   'Visibility': 'HIDDEN '
                                                                                                                 '| '
                                                                                                                 'VISIBLE'}}},
                                              'RelativeDateTime': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                               'Visibility': 'HIDDEN '
                                                                                                                             '| '
                                                                                                                             'VISIBLE'}}},
                                              'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                     'Visibility': 'HIDDEN '
                                                                                                                   '| '
                                                                                                                   'VISIBLE'}}},
                                              'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}}},
                           'ParameterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                                'Visibility': 'HIDDEN '
                                                                                                                              '| '
                                                                                                                              'VISIBLE'}}},
                                                 'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                      'Visibility': 'HIDDEN '
                                                                                                                    '| '
                                                                                                                    'VISIBLE'}}},
                                                 'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}},
                                                 'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                           'Visibility': 'HIDDEN '
                                                                                                                         '| '
                                                                                                                         'VISIBLE'}}}},
                           'Visuals': {'BarChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                 'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'BoxPlotVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}}},
                                                                                'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'ComboChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}},
                                                                                   'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                   'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FilledMapVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FunnelChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                    'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GaugeChartVisual': {'ChartConfiguration': {'TooltipOptions': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GeospatialMapVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HeatMapVisual': {'ChartConfiguration': {'SortConfiguration': {'HeatMapColumnSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}},
                                                                                                      'HeatMapRowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HistogramVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'KPIVisual': {'ChartConfiguration': {'SortConfiguration': {'TrendGroupSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}},
                                       'LineChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}}},
                                                                                  'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}},
                                                                                                        'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                       'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PieChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PivotTableVisual': {'ChartConfiguration': {'SortConfiguration': {'FieldSortOptions': {'SortBy': {'Column': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'RadarChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}},
                                       'SankeyDiagramVisual': {'ChartConfiguration': {'SortConfiguration': {'WeightSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}}}},
                                       'ScatterPlotVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'TableVisual': {'ChartConfiguration': {'SortConfiguration': {'RowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                        'ValueForMultipleValues': 'string'}}}}}}},
                                       'TreeMapVisual': {'ChartConfiguration': {'SortConfiguration': {'TreeMapSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'WaterfallVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}},
                                       'WordCloudVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}}}}}

Updates a dashboard in an Amazon Web Services account.

Note

Updating a Dashboard creates a new dashboard version but does not immediately publish the new version. You can update the published version of a dashboard by using the UpdateDashboardPublishedVersion API operation.

See also: AWS API Documentation

Request Syntax

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

Parameters

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

rtype

dict

returns

Response Syntax

{
    'Arn': 'string',
    'VersionArn': 'string',
    'DashboardId': 'string',
    'CreationStatus': 'CREATION_IN_PROGRESS'|'CREATION_SUCCESSFUL'|'CREATION_FAILED'|'UPDATE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_FAILED'|'DELETED',
    'Status': 123,
    'RequestId': 'string'
}

Response Structure

  • (dict) --

    • Arn (string) --

      The Amazon Resource Name (ARN) of the resource.

    • VersionArn (string) --

      The ARN of the dashboard, including the version number.

    • DashboardId (string) --

      The ID for the dashboard.

    • CreationStatus (string) --

      The creation status of the request.

    • Status (integer) --

      The HTTP status of the request.

    • RequestId (string) --

      The Amazon Web Services request ID for this operation.

UpdateTemplate (updated) Link ¶
Changes (request)
{'Definition': {'FilterGroups': {'Filters': {'NumericEqualityFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                'ValueForMultipleValues': 'string'}}},
                                             'NumericRangeFilter': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                             'ValueForMultipleValues': 'string'}}},
                                             'TopBottomFilter': {'AggregationSortConfigurations': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}},
                'Sheets': {'FilterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                             'Visibility': 'HIDDEN '
                                                                                                                           '| '
                                                                                                                           'VISIBLE'}}},
                                              'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                   'Visibility': 'HIDDEN '
                                                                                                                 '| '
                                                                                                                 'VISIBLE'}}},
                                              'RelativeDateTime': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                               'Visibility': 'HIDDEN '
                                                                                                                             '| '
                                                                                                                             'VISIBLE'}}},
                                              'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                     'Visibility': 'HIDDEN '
                                                                                                                   '| '
                                                                                                                   'VISIBLE'}}},
                                              'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                       'Visibility': 'HIDDEN '
                                                                                                                     '| '
                                                                                                                     'VISIBLE'}}},
                                              'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}}},
                           'ParameterControls': {'DateTimePicker': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                                'Visibility': 'HIDDEN '
                                                                                                                              '| '
                                                                                                                              'VISIBLE'}}},
                                                 'Dropdown': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'List': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                      'Visibility': 'HIDDEN '
                                                                                                                    '| '
                                                                                                                    'VISIBLE'}}},
                                                 'Slider': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                        'Visibility': 'HIDDEN '
                                                                                                                      '| '
                                                                                                                      'VISIBLE'}}},
                                                 'TextArea': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                          'Visibility': 'HIDDEN '
                                                                                                                        '| '
                                                                                                                        'VISIBLE'}}},
                                                 'TextField': {'DisplayOptions': {'InfoIconLabelOptions': {'InfoIconText': 'string',
                                                                                                           'Visibility': 'HIDDEN '
                                                                                                                         '| '
                                                                                                                         'VISIBLE'}}}},
                           'Visuals': {'BarChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                 'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'BoxPlotVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}}},
                                                                                'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'ComboChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}},
                                                                                   'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}},
                                                                                   'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FilledMapVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'FunnelChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}},
                                                                                    'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GaugeChartVisual': {'ChartConfiguration': {'TooltipOptions': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                     'ValueForMultipleValues': 'string'}}}}}}}},
                                       'GeospatialMapVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HeatMapVisual': {'ChartConfiguration': {'SortConfiguration': {'HeatMapColumnSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}},
                                                                                                      'HeatMapRowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'HistogramVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'KPIVisual': {'ChartConfiguration': {'SortConfiguration': {'TrendGroupSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}},
                                       'LineChartVisual': {'ChartConfiguration': {'ReferenceLines': {'DataConfiguration': {'DynamicConfiguration': {'MeasureAggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                                    'ValueForMultipleValues': 'string'}}}}},
                                                                                  'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}},
                                                                                                        'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                       'ValueForMultipleValues': 'string'}}}}},
                                                                                  'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PieChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                'ValueForMultipleValues': 'string'}}}},
                                                                                                       'SmallMultiplesSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                      'ValueForMultipleValues': 'string'}}}}},
                                                                                 'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                            'ValueForMultipleValues': 'string'}}}}}}}},
                                       'PivotTableVisual': {'ChartConfiguration': {'SortConfiguration': {'FieldSortOptions': {'SortBy': {'Column': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                             'ValueForMultipleValues': 'string'}}}}}}}},
                                       'RadarChartVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                  'ValueForMultipleValues': 'string'}}}},
                                                                                                         'ColorSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}},
                                       'SankeyDiagramVisual': {'ChartConfiguration': {'SortConfiguration': {'WeightSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                   'ValueForMultipleValues': 'string'}}}}}}},
                                       'ScatterPlotVisual': {'ChartConfiguration': {'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                               'ValueForMultipleValues': 'string'}}}}}}}},
                                       'TableVisual': {'ChartConfiguration': {'SortConfiguration': {'RowSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                        'ValueForMultipleValues': 'string'}}}}}}},
                                       'TreeMapVisual': {'ChartConfiguration': {'SortConfiguration': {'TreeMapSort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                              'ValueForMultipleValues': 'string'}}}}},
                                                                                'Tooltip': {'FieldBasedTooltip': {'TooltipFields': {'ColumnTooltipItem': {'Aggregation': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                           'ValueForMultipleValues': 'string'}}}}}}}},
                                       'WaterfallVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}},
                                       'WordCloudVisual': {'ChartConfiguration': {'SortConfiguration': {'CategorySort': {'ColumnSort': {'AggregationFunction': {'AttributeAggregationFunction': {'SimpleAttributeAggregation': 'UNIQUE_VALUE',
                                                                                                                                                                                                 'ValueForMultipleValues': 'string'}}}}}}}}}}}

Updates a template from an existing Amazon QuickSight analysis or another template.

See also: AWS API Documentation

Request Syntax

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

Parameters

# This section is too large to render.
# Please see the AWS API Documentation linked below.

AWS API Documentation

rtype

dict

returns

Response Syntax

{
    'TemplateId': 'string',
    'Arn': 'string',
    'VersionArn': 'string',
    'CreationStatus': 'CREATION_IN_PROGRESS'|'CREATION_SUCCESSFUL'|'CREATION_FAILED'|'UPDATE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_FAILED'|'DELETED',
    'Status': 123,
    'RequestId': 'string'
}

Response Structure

  • (dict) --

    • TemplateId (string) --

      The ID for the template.

    • Arn (string) --

      The Amazon Resource Name (ARN) for the template.

    • VersionArn (string) --

      The ARN for the template, including the version information of the first version.

    • CreationStatus (string) --

      The creation status of the template.

    • Status (integer) --

      The HTTP status of the request.

    • RequestId (string) --

      The Amazon Web Services request ID for this operation.