aws-sdk-quicksight 1.135.0 → 1.136.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -901,6 +901,25 @@ module Aws::QuickSight
901
901
  include Aws::Structure
902
902
  end
903
903
 
904
+ # The application theme.
905
+ #
906
+ # @!attribute [rw] brand_color_palette
907
+ # The color palette.
908
+ # @return [Types::BrandColorPalette]
909
+ #
910
+ # @!attribute [rw] brand_element_style
911
+ # The element style.
912
+ # @return [Types::BrandElementStyle]
913
+ #
914
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ApplicationTheme AWS API Documentation
915
+ #
916
+ class ApplicationTheme < Struct.new(
917
+ :brand_color_palette,
918
+ :brand_element_style)
919
+ SENSITIVE = []
920
+ include Aws::Structure
921
+ end
922
+
904
923
  # The arc axis configuration of a `GaugeChartVisual`.
905
924
  #
906
925
  # @!attribute [rw] range
@@ -3504,6 +3523,202 @@ module Aws::QuickSight
3504
3523
  include Aws::Structure
3505
3524
  end
3506
3525
 
3526
+ # The color palette.
3527
+ #
3528
+ # @!attribute [rw] primary
3529
+ # The primary color.
3530
+ # @return [Types::Palette]
3531
+ #
3532
+ # @!attribute [rw] secondary
3533
+ # The secondary color.
3534
+ # @return [Types::Palette]
3535
+ #
3536
+ # @!attribute [rw] accent
3537
+ # The color that is used for accent elements.
3538
+ # @return [Types::Palette]
3539
+ #
3540
+ # @!attribute [rw] measure
3541
+ # The color that is used for measure elements.
3542
+ # @return [Types::Palette]
3543
+ #
3544
+ # @!attribute [rw] dimension
3545
+ # The color that is used for dimension elements.
3546
+ # @return [Types::Palette]
3547
+ #
3548
+ # @!attribute [rw] success
3549
+ # The color that is used for success elements.
3550
+ # @return [Types::Palette]
3551
+ #
3552
+ # @!attribute [rw] info
3553
+ # The color that is used for info elements.
3554
+ # @return [Types::Palette]
3555
+ #
3556
+ # @!attribute [rw] warning
3557
+ # The color that is used for warning elements.
3558
+ # @return [Types::Palette]
3559
+ #
3560
+ # @!attribute [rw] danger
3561
+ # The color that is used for danger elements.
3562
+ # @return [Types::Palette]
3563
+ #
3564
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BrandColorPalette AWS API Documentation
3565
+ #
3566
+ class BrandColorPalette < Struct.new(
3567
+ :primary,
3568
+ :secondary,
3569
+ :accent,
3570
+ :measure,
3571
+ :dimension,
3572
+ :success,
3573
+ :info,
3574
+ :warning,
3575
+ :danger)
3576
+ SENSITIVE = []
3577
+ include Aws::Structure
3578
+ end
3579
+
3580
+ # The definition of the brand.
3581
+ #
3582
+ # @!attribute [rw] brand_name
3583
+ # The name of the brand.
3584
+ # @return [String]
3585
+ #
3586
+ # @!attribute [rw] description
3587
+ # The description of the brand.
3588
+ # @return [String]
3589
+ #
3590
+ # @!attribute [rw] application_theme
3591
+ # The application theme of the brand.
3592
+ # @return [Types::ApplicationTheme]
3593
+ #
3594
+ # @!attribute [rw] logo_configuration
3595
+ # The logo configuration of the brand.
3596
+ # @return [Types::LogoConfiguration]
3597
+ #
3598
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BrandDefinition AWS API Documentation
3599
+ #
3600
+ class BrandDefinition < Struct.new(
3601
+ :brand_name,
3602
+ :description,
3603
+ :application_theme,
3604
+ :logo_configuration)
3605
+ SENSITIVE = []
3606
+ include Aws::Structure
3607
+ end
3608
+
3609
+ # The details of the brand.
3610
+ #
3611
+ # @!attribute [rw] brand_id
3612
+ # The ID of the Amazon QuickSight brand.
3613
+ # @return [String]
3614
+ #
3615
+ # @!attribute [rw] arn
3616
+ # The Amazon Resource Name (ARN) of the brand.
3617
+ # @return [String]
3618
+ #
3619
+ # @!attribute [rw] brand_status
3620
+ # The status of the brand.
3621
+ # @return [String]
3622
+ #
3623
+ # @!attribute [rw] created_time
3624
+ # The time that the brand was created.
3625
+ # @return [Time]
3626
+ #
3627
+ # @!attribute [rw] last_updated_time
3628
+ # The last time the brand was updated.
3629
+ # @return [Time]
3630
+ #
3631
+ # @!attribute [rw] version_id
3632
+ # The ID of the version.
3633
+ # @return [String]
3634
+ #
3635
+ # @!attribute [rw] version_status
3636
+ # The status of the version.
3637
+ # @return [String]
3638
+ #
3639
+ # @!attribute [rw] errors
3640
+ # A list of errors that occurred during the most recent brand
3641
+ # operation.
3642
+ # @return [Array<String>]
3643
+ #
3644
+ # @!attribute [rw] logo
3645
+ # The logo details.
3646
+ # @return [Types::Logo]
3647
+ #
3648
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BrandDetail AWS API Documentation
3649
+ #
3650
+ class BrandDetail < Struct.new(
3651
+ :brand_id,
3652
+ :arn,
3653
+ :brand_status,
3654
+ :created_time,
3655
+ :last_updated_time,
3656
+ :version_id,
3657
+ :version_status,
3658
+ :errors,
3659
+ :logo)
3660
+ SENSITIVE = []
3661
+ include Aws::Structure
3662
+ end
3663
+
3664
+ # The element style.
3665
+ #
3666
+ # @!attribute [rw] navbar_style
3667
+ # The navigation bar style.
3668
+ # @return [Types::NavbarStyle]
3669
+ #
3670
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BrandElementStyle AWS API Documentation
3671
+ #
3672
+ class BrandElementStyle < Struct.new(
3673
+ :navbar_style)
3674
+ SENSITIVE = []
3675
+ include Aws::Structure
3676
+ end
3677
+
3678
+ # A summary of the brand.
3679
+ #
3680
+ # @!attribute [rw] arn
3681
+ # The Amazon Resource Name (ARN) of the brand.
3682
+ # @return [String]
3683
+ #
3684
+ # @!attribute [rw] brand_id
3685
+ # The ID of the Amazon QuickSight brand.
3686
+ # @return [String]
3687
+ #
3688
+ # @!attribute [rw] brand_name
3689
+ # The name of the brand.
3690
+ # @return [String]
3691
+ #
3692
+ # @!attribute [rw] description
3693
+ # The description of the brand.
3694
+ # @return [String]
3695
+ #
3696
+ # @!attribute [rw] brand_status
3697
+ # The status of the brand.
3698
+ # @return [String]
3699
+ #
3700
+ # @!attribute [rw] created_time
3701
+ # The time that the brand was created.
3702
+ # @return [Time]
3703
+ #
3704
+ # @!attribute [rw] last_updated_time
3705
+ # The time when the brand was last updated.
3706
+ # @return [Time]
3707
+ #
3708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BrandSummary AWS API Documentation
3709
+ #
3710
+ class BrandSummary < Struct.new(
3711
+ :arn,
3712
+ :brand_id,
3713
+ :brand_name,
3714
+ :description,
3715
+ :brand_status,
3716
+ :created_time,
3717
+ :last_updated_time)
3718
+ SENSITIVE = []
3719
+ include Aws::Structure
3720
+ end
3721
+
3507
3722
  # A calculated column for a dataset.
3508
3723
  #
3509
3724
  # @!attribute [rw] column_name
@@ -3623,6 +3838,100 @@ module Aws::QuickSight
3623
3838
  include Aws::Structure
3624
3839
  end
3625
3840
 
3841
+ # A set of actions that correspond to Amazon QuickSight permissions.
3842
+ #
3843
+ # @!attribute [rw] export_to_csv
3844
+ # The ability to export to CSV files.
3845
+ # @return [String]
3846
+ #
3847
+ # @!attribute [rw] export_to_excel
3848
+ # The ability to export to Excel files.
3849
+ # @return [String]
3850
+ #
3851
+ # @!attribute [rw] create_and_update_themes
3852
+ # The ability to export to Create and Update themes.
3853
+ # @return [String]
3854
+ #
3855
+ # @!attribute [rw] add_or_run_anomaly_detection_for_analyses
3856
+ # The ability to add or run anomaly detection.
3857
+ # @return [String]
3858
+ #
3859
+ # @!attribute [rw] share_analyses
3860
+ # The ability to share analyses.
3861
+ # @return [String]
3862
+ #
3863
+ # @!attribute [rw] create_and_update_datasets
3864
+ # The ability to create and update datasets.
3865
+ # @return [String]
3866
+ #
3867
+ # @!attribute [rw] share_datasets
3868
+ # The ability to share datasets.
3869
+ # @return [String]
3870
+ #
3871
+ # @!attribute [rw] subscribe_dashboard_email_reports
3872
+ # The ability to subscribe to email reports.
3873
+ # @return [String]
3874
+ #
3875
+ # @!attribute [rw] create_and_update_dashboard_email_reports
3876
+ # The ability to create and update email reports.
3877
+ # @return [String]
3878
+ #
3879
+ # @!attribute [rw] share_dashboards
3880
+ # The ability to share dashboards.
3881
+ # @return [String]
3882
+ #
3883
+ # @!attribute [rw] create_and_update_threshold_alerts
3884
+ # The ability to create and update threshold alerts.
3885
+ # @return [String]
3886
+ #
3887
+ # @!attribute [rw] rename_shared_folders
3888
+ # The ability to rename shared folders.
3889
+ # @return [String]
3890
+ #
3891
+ # @!attribute [rw] create_shared_folders
3892
+ # The ability to create shared folders.
3893
+ # @return [String]
3894
+ #
3895
+ # @!attribute [rw] create_and_update_data_sources
3896
+ # The ability to create and update data sources.
3897
+ # @return [String]
3898
+ #
3899
+ # @!attribute [rw] share_data_sources
3900
+ # The ability to share data sources.
3901
+ # @return [String]
3902
+ #
3903
+ # @!attribute [rw] view_account_spice_capacity
3904
+ # The ability to view account SPICE capacity.
3905
+ # @return [String]
3906
+ #
3907
+ # @!attribute [rw] create_spice_dataset
3908
+ # The ability to create a SPICE dataset.
3909
+ # @return [String]
3910
+ #
3911
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Capabilities AWS API Documentation
3912
+ #
3913
+ class Capabilities < Struct.new(
3914
+ :export_to_csv,
3915
+ :export_to_excel,
3916
+ :create_and_update_themes,
3917
+ :add_or_run_anomaly_detection_for_analyses,
3918
+ :share_analyses,
3919
+ :create_and_update_datasets,
3920
+ :share_datasets,
3921
+ :subscribe_dashboard_email_reports,
3922
+ :create_and_update_dashboard_email_reports,
3923
+ :share_dashboards,
3924
+ :create_and_update_threshold_alerts,
3925
+ :rename_shared_folders,
3926
+ :create_shared_folders,
3927
+ :create_and_update_data_sources,
3928
+ :share_data_sources,
3929
+ :view_account_spice_capacity,
3930
+ :create_spice_dataset)
3931
+ SENSITIVE = []
3932
+ include Aws::Structure
3933
+ end
3934
+
3626
3935
  # The values that are displayed in a control can be configured to only
3627
3936
  # show values that are valid based on what's selected in other
3628
3937
  # controls.
@@ -5387,6 +5696,55 @@ module Aws::QuickSight
5387
5696
  include Aws::Structure
5388
5697
  end
5389
5698
 
5699
+ # @!attribute [rw] aws_account_id
5700
+ # The ID of the Amazon Web Services account that owns the brand.
5701
+ # @return [String]
5702
+ #
5703
+ # @!attribute [rw] brand_id
5704
+ # The ID of the Amazon QuickSight brand.
5705
+ # @return [String]
5706
+ #
5707
+ # @!attribute [rw] brand_definition
5708
+ # The definition of the brand.
5709
+ # @return [Types::BrandDefinition]
5710
+ #
5711
+ # @!attribute [rw] tags
5712
+ # A map of the key-value pairs that are assigned to the brand.
5713
+ # @return [Array<Types::Tag>]
5714
+ #
5715
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateBrandRequest AWS API Documentation
5716
+ #
5717
+ class CreateBrandRequest < Struct.new(
5718
+ :aws_account_id,
5719
+ :brand_id,
5720
+ :brand_definition,
5721
+ :tags)
5722
+ SENSITIVE = []
5723
+ include Aws::Structure
5724
+ end
5725
+
5726
+ # @!attribute [rw] request_id
5727
+ # The Amazon Web Services request ID for this operation.
5728
+ # @return [String]
5729
+ #
5730
+ # @!attribute [rw] brand_detail
5731
+ # The details of the brand.
5732
+ # @return [Types::BrandDetail]
5733
+ #
5734
+ # @!attribute [rw] brand_definition
5735
+ # The definition of the brand.
5736
+ # @return [Types::BrandDefinition]
5737
+ #
5738
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateBrandResponse AWS API Documentation
5739
+ #
5740
+ class CreateBrandResponse < Struct.new(
5741
+ :request_id,
5742
+ :brand_detail,
5743
+ :brand_definition)
5744
+ SENSITIVE = []
5745
+ include Aws::Structure
5746
+ end
5747
+
5390
5748
  # A transform operation that creates calculated columns. Columns created
5391
5749
  # in one such operation form a lexical closure.
5392
5750
  #
@@ -5402,6 +5760,56 @@ module Aws::QuickSight
5402
5760
  include Aws::Structure
5403
5761
  end
5404
5762
 
5763
+ # @!attribute [rw] aws_account_id
5764
+ # The ID of the Amazon Web Services account that you want to create
5765
+ # the custom permissions profile in.
5766
+ # @return [String]
5767
+ #
5768
+ # @!attribute [rw] custom_permissions_name
5769
+ # The name of the custom permissions profile that you want to create.
5770
+ # @return [String]
5771
+ #
5772
+ # @!attribute [rw] capabilities
5773
+ # A set of actions to include in the custom permissions profile.
5774
+ # @return [Types::Capabilities]
5775
+ #
5776
+ # @!attribute [rw] tags
5777
+ # The tags to associate with the custom permissions profile.
5778
+ # @return [Array<Types::Tag>]
5779
+ #
5780
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateCustomPermissionsRequest AWS API Documentation
5781
+ #
5782
+ class CreateCustomPermissionsRequest < Struct.new(
5783
+ :aws_account_id,
5784
+ :custom_permissions_name,
5785
+ :capabilities,
5786
+ :tags)
5787
+ SENSITIVE = []
5788
+ include Aws::Structure
5789
+ end
5790
+
5791
+ # @!attribute [rw] status
5792
+ # The HTTP status of the request.
5793
+ # @return [Integer]
5794
+ #
5795
+ # @!attribute [rw] arn
5796
+ # The Amazon Resource Name (ARN) of the custom permissions profile.
5797
+ # @return [String]
5798
+ #
5799
+ # @!attribute [rw] request_id
5800
+ # The Amazon Web Services request ID for this operation.
5801
+ # @return [String]
5802
+ #
5803
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateCustomPermissionsResponse AWS API Documentation
5804
+ #
5805
+ class CreateCustomPermissionsResponse < Struct.new(
5806
+ :status,
5807
+ :arn,
5808
+ :request_id)
5809
+ SENSITIVE = []
5810
+ include Aws::Structure
5811
+ end
5812
+
5405
5813
  # @!attribute [rw] aws_account_id
5406
5814
  # The ID of the Amazon Web Services account where you want to create
5407
5815
  # the dashboard.
@@ -7384,6 +7792,30 @@ module Aws::QuickSight
7384
7792
  include Aws::Structure
7385
7793
  end
7386
7794
 
7795
+ # The custom permissions profile.
7796
+ #
7797
+ # @!attribute [rw] arn
7798
+ # The Amazon Resource Name (ARN) of the custom permissions profile.
7799
+ # @return [String]
7800
+ #
7801
+ # @!attribute [rw] custom_permissions_name
7802
+ # The name of the custom permissions profile.
7803
+ # @return [String]
7804
+ #
7805
+ # @!attribute [rw] capabilities
7806
+ # A set of actions in the custom permissions profile.
7807
+ # @return [Types::Capabilities]
7808
+ #
7809
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomPermissions AWS API Documentation
7810
+ #
7811
+ class CustomPermissions < Struct.new(
7812
+ :arn,
7813
+ :custom_permissions_name,
7814
+ :capabilities)
7815
+ SENSITIVE = []
7816
+ include Aws::Structure
7817
+ end
7818
+
7387
7819
  # A physical table type built from the results of the custom SQL query.
7388
7820
  #
7389
7821
  # @!attribute [rw] data_source_arn
@@ -10220,6 +10652,100 @@ module Aws::QuickSight
10220
10652
  include Aws::Structure
10221
10653
  end
10222
10654
 
10655
+ # @!attribute [rw] aws_account_id
10656
+ # The ID of the Amazon Web Services account that owns the brand
10657
+ # assignment.
10658
+ # @return [String]
10659
+ #
10660
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteBrandAssignmentRequest AWS API Documentation
10661
+ #
10662
+ class DeleteBrandAssignmentRequest < Struct.new(
10663
+ :aws_account_id)
10664
+ SENSITIVE = []
10665
+ include Aws::Structure
10666
+ end
10667
+
10668
+ # @!attribute [rw] request_id
10669
+ # The Amazon Web Services request ID for this operation.
10670
+ # @return [String]
10671
+ #
10672
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteBrandAssignmentResponse AWS API Documentation
10673
+ #
10674
+ class DeleteBrandAssignmentResponse < Struct.new(
10675
+ :request_id)
10676
+ SENSITIVE = []
10677
+ include Aws::Structure
10678
+ end
10679
+
10680
+ # @!attribute [rw] aws_account_id
10681
+ # The ID of the Amazon Web Services account that owns the brand.
10682
+ # @return [String]
10683
+ #
10684
+ # @!attribute [rw] brand_id
10685
+ # The ID of the Amazon QuickSight brand.
10686
+ # @return [String]
10687
+ #
10688
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteBrandRequest AWS API Documentation
10689
+ #
10690
+ class DeleteBrandRequest < Struct.new(
10691
+ :aws_account_id,
10692
+ :brand_id)
10693
+ SENSITIVE = []
10694
+ include Aws::Structure
10695
+ end
10696
+
10697
+ # @!attribute [rw] request_id
10698
+ # The Amazon Web Services request ID for this operation.
10699
+ # @return [String]
10700
+ #
10701
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteBrandResponse AWS API Documentation
10702
+ #
10703
+ class DeleteBrandResponse < Struct.new(
10704
+ :request_id)
10705
+ SENSITIVE = []
10706
+ include Aws::Structure
10707
+ end
10708
+
10709
+ # @!attribute [rw] aws_account_id
10710
+ # The ID of the Amazon Web Services account that contains the custom
10711
+ # permissions profile that you want to delete.
10712
+ # @return [String]
10713
+ #
10714
+ # @!attribute [rw] custom_permissions_name
10715
+ # The name of the custom permissions profile that you want to delete.
10716
+ # @return [String]
10717
+ #
10718
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteCustomPermissionsRequest AWS API Documentation
10719
+ #
10720
+ class DeleteCustomPermissionsRequest < Struct.new(
10721
+ :aws_account_id,
10722
+ :custom_permissions_name)
10723
+ SENSITIVE = []
10724
+ include Aws::Structure
10725
+ end
10726
+
10727
+ # @!attribute [rw] status
10728
+ # The HTTP status of the request.
10729
+ # @return [Integer]
10730
+ #
10731
+ # @!attribute [rw] arn
10732
+ # The Amazon Resource Name (ARN) of the custom permissions profile.
10733
+ # @return [String]
10734
+ #
10735
+ # @!attribute [rw] request_id
10736
+ # The Amazon Web Services request ID for this operation.
10737
+ # @return [String]
10738
+ #
10739
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteCustomPermissionsResponse AWS API Documentation
10740
+ #
10741
+ class DeleteCustomPermissionsResponse < Struct.new(
10742
+ :status,
10743
+ :arn,
10744
+ :request_id)
10745
+ SENSITIVE = []
10746
+ include Aws::Structure
10747
+ end
10748
+
10223
10749
  # @!attribute [rw] aws_account_id
10224
10750
  # The ID of the Amazon Web Services account that contains the
10225
10751
  # dashboard that you're deleting.
@@ -11190,6 +11716,47 @@ module Aws::QuickSight
11190
11716
  include Aws::Structure
11191
11717
  end
11192
11718
 
11719
+ # @!attribute [rw] user_name
11720
+ # The username of the user that you want to remove custom permissions
11721
+ # from.
11722
+ # @return [String]
11723
+ #
11724
+ # @!attribute [rw] aws_account_id
11725
+ # The ID of the Amazon Web Services account that contains the custom
11726
+ # permission configuration that you want to delete.
11727
+ # @return [String]
11728
+ #
11729
+ # @!attribute [rw] namespace
11730
+ # The namespace that the user belongs to.
11731
+ # @return [String]
11732
+ #
11733
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteUserCustomPermissionRequest AWS API Documentation
11734
+ #
11735
+ class DeleteUserCustomPermissionRequest < Struct.new(
11736
+ :user_name,
11737
+ :aws_account_id,
11738
+ :namespace)
11739
+ SENSITIVE = []
11740
+ include Aws::Structure
11741
+ end
11742
+
11743
+ # @!attribute [rw] request_id
11744
+ # The Amazon Web Services request ID for this operation.
11745
+ # @return [String]
11746
+ #
11747
+ # @!attribute [rw] status
11748
+ # The HTTP status of the request.
11749
+ # @return [Integer]
11750
+ #
11751
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteUserCustomPermissionResponse AWS API Documentation
11752
+ #
11753
+ class DeleteUserCustomPermissionResponse < Struct.new(
11754
+ :request_id,
11755
+ :status)
11756
+ SENSITIVE = []
11757
+ include Aws::Structure
11758
+ end
11759
+
11193
11760
  # @!attribute [rw] user_name
11194
11761
  # The name of the user that you want to delete.
11195
11762
  # @return [String]
@@ -11916,6 +12483,160 @@ module Aws::QuickSight
11916
12483
  include Aws::Structure
11917
12484
  end
11918
12485
 
12486
+ # @!attribute [rw] aws_account_id
12487
+ # The ID of the Amazon Web Services account that owns the brand
12488
+ # assignment.
12489
+ # @return [String]
12490
+ #
12491
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrandAssignmentRequest AWS API Documentation
12492
+ #
12493
+ class DescribeBrandAssignmentRequest < Struct.new(
12494
+ :aws_account_id)
12495
+ SENSITIVE = []
12496
+ include Aws::Structure
12497
+ end
12498
+
12499
+ # @!attribute [rw] request_id
12500
+ # The Amazon Web Services request ID for this operation.
12501
+ # @return [String]
12502
+ #
12503
+ # @!attribute [rw] brand_arn
12504
+ # The Amazon Resource Name (ARN) of the brand.
12505
+ # @return [String]
12506
+ #
12507
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrandAssignmentResponse AWS API Documentation
12508
+ #
12509
+ class DescribeBrandAssignmentResponse < Struct.new(
12510
+ :request_id,
12511
+ :brand_arn)
12512
+ SENSITIVE = []
12513
+ include Aws::Structure
12514
+ end
12515
+
12516
+ # @!attribute [rw] aws_account_id
12517
+ # The ID of the Amazon Web Services account that owns the brand.
12518
+ # @return [String]
12519
+ #
12520
+ # @!attribute [rw] brand_id
12521
+ # The ID of the Amazon QuickSight brand.
12522
+ # @return [String]
12523
+ #
12524
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrandPublishedVersionRequest AWS API Documentation
12525
+ #
12526
+ class DescribeBrandPublishedVersionRequest < Struct.new(
12527
+ :aws_account_id,
12528
+ :brand_id)
12529
+ SENSITIVE = []
12530
+ include Aws::Structure
12531
+ end
12532
+
12533
+ # @!attribute [rw] request_id
12534
+ # The Amazon Web Services request ID for this operation.
12535
+ # @return [String]
12536
+ #
12537
+ # @!attribute [rw] brand_detail
12538
+ # The details of the brand.
12539
+ # @return [Types::BrandDetail]
12540
+ #
12541
+ # @!attribute [rw] brand_definition
12542
+ # The definition of the brand.
12543
+ # @return [Types::BrandDefinition]
12544
+ #
12545
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrandPublishedVersionResponse AWS API Documentation
12546
+ #
12547
+ class DescribeBrandPublishedVersionResponse < Struct.new(
12548
+ :request_id,
12549
+ :brand_detail,
12550
+ :brand_definition)
12551
+ SENSITIVE = []
12552
+ include Aws::Structure
12553
+ end
12554
+
12555
+ # @!attribute [rw] aws_account_id
12556
+ # The ID of the Amazon Web Services account that owns the brand.
12557
+ # @return [String]
12558
+ #
12559
+ # @!attribute [rw] brand_id
12560
+ # The ID of the Amazon QuickSight brand.
12561
+ # @return [String]
12562
+ #
12563
+ # @!attribute [rw] version_id
12564
+ # The ID of the specific version. The default value is the latest
12565
+ # version.
12566
+ # @return [String]
12567
+ #
12568
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrandRequest AWS API Documentation
12569
+ #
12570
+ class DescribeBrandRequest < Struct.new(
12571
+ :aws_account_id,
12572
+ :brand_id,
12573
+ :version_id)
12574
+ SENSITIVE = []
12575
+ include Aws::Structure
12576
+ end
12577
+
12578
+ # @!attribute [rw] request_id
12579
+ # The Amazon Web Services request ID for this operation.
12580
+ # @return [String]
12581
+ #
12582
+ # @!attribute [rw] brand_detail
12583
+ # The details of the brand.
12584
+ # @return [Types::BrandDetail]
12585
+ #
12586
+ # @!attribute [rw] brand_definition
12587
+ # The definition of the brand.
12588
+ # @return [Types::BrandDefinition]
12589
+ #
12590
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeBrandResponse AWS API Documentation
12591
+ #
12592
+ class DescribeBrandResponse < Struct.new(
12593
+ :request_id,
12594
+ :brand_detail,
12595
+ :brand_definition)
12596
+ SENSITIVE = []
12597
+ include Aws::Structure
12598
+ end
12599
+
12600
+ # @!attribute [rw] aws_account_id
12601
+ # The ID of the Amazon Web Services account that contains the custom
12602
+ # permissions profile that you want described.
12603
+ # @return [String]
12604
+ #
12605
+ # @!attribute [rw] custom_permissions_name
12606
+ # The name of the custom permissions profile to describe.
12607
+ # @return [String]
12608
+ #
12609
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeCustomPermissionsRequest AWS API Documentation
12610
+ #
12611
+ class DescribeCustomPermissionsRequest < Struct.new(
12612
+ :aws_account_id,
12613
+ :custom_permissions_name)
12614
+ SENSITIVE = []
12615
+ include Aws::Structure
12616
+ end
12617
+
12618
+ # @!attribute [rw] status
12619
+ # The HTTP status of the request.
12620
+ # @return [Integer]
12621
+ #
12622
+ # @!attribute [rw] custom_permissions
12623
+ # The custom permissions profile.
12624
+ # @return [Types::CustomPermissions]
12625
+ #
12626
+ # @!attribute [rw] request_id
12627
+ # The Amazon Web Services request ID for this operation.
12628
+ # @return [String]
12629
+ #
12630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeCustomPermissionsResponse AWS API Documentation
12631
+ #
12632
+ class DescribeCustomPermissionsResponse < Struct.new(
12633
+ :status,
12634
+ :custom_permissions,
12635
+ :request_id)
12636
+ SENSITIVE = []
12637
+ include Aws::Structure
12638
+ end
12639
+
11919
12640
  # @!attribute [rw] aws_account_id
11920
12641
  # The ID of the Amazon Web Services account that contains the
11921
12642
  # dashboard that you're describing.
@@ -17890,6 +18611,106 @@ module Aws::QuickSight
17890
18611
  include Aws::Structure
17891
18612
  end
17892
18613
 
18614
+ # The logo image.
18615
+ #
18616
+ # @!attribute [rw] source
18617
+ # The source of the logo image.
18618
+ # @return [Types::ImageSource]
18619
+ #
18620
+ # @!attribute [rw] generated_image_url
18621
+ # The URL that points to the generated logo image.
18622
+ # @return [String]
18623
+ #
18624
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Image AWS API Documentation
18625
+ #
18626
+ class Image < Struct.new(
18627
+ :source,
18628
+ :generated_image_url)
18629
+ SENSITIVE = []
18630
+ include Aws::Structure
18631
+ end
18632
+
18633
+ # The logo image configuration.
18634
+ #
18635
+ # @!attribute [rw] source
18636
+ # The source of the image.
18637
+ # @return [Types::ImageSource]
18638
+ #
18639
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageConfiguration AWS API Documentation
18640
+ #
18641
+ class ImageConfiguration < Struct.new(
18642
+ :source)
18643
+ SENSITIVE = []
18644
+ include Aws::Structure
18645
+ end
18646
+
18647
+ # The image set.
18648
+ #
18649
+ # @!attribute [rw] original
18650
+ # The original image.
18651
+ # @return [Types::Image]
18652
+ #
18653
+ # @!attribute [rw] height_64
18654
+ # The image with the height set to 64 pixels.
18655
+ # @return [Types::Image]
18656
+ #
18657
+ # @!attribute [rw] height_32
18658
+ # The image with the height set to 32 pixels.
18659
+ # @return [Types::Image]
18660
+ #
18661
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageSet AWS API Documentation
18662
+ #
18663
+ class ImageSet < Struct.new(
18664
+ :original,
18665
+ :height_64,
18666
+ :height_32)
18667
+ SENSITIVE = []
18668
+ include Aws::Structure
18669
+ end
18670
+
18671
+ # The image set configuration.
18672
+ #
18673
+ # @!attribute [rw] original
18674
+ # The original image.
18675
+ # @return [Types::ImageConfiguration]
18676
+ #
18677
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageSetConfiguration AWS API Documentation
18678
+ #
18679
+ class ImageSetConfiguration < Struct.new(
18680
+ :original)
18681
+ SENSITIVE = []
18682
+ include Aws::Structure
18683
+ end
18684
+
18685
+ # The source of the image.
18686
+ #
18687
+ # @note ImageSource is a union - when making an API calls you must set exactly one of the members.
18688
+ #
18689
+ # @note ImageSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ImageSource corresponding to the set member.
18690
+ #
18691
+ # @!attribute [rw] public_url
18692
+ # The public URL that points to the source image.
18693
+ # @return [String]
18694
+ #
18695
+ # @!attribute [rw] s3_uri
18696
+ # The Amazon S3 URI that points to the source image.
18697
+ # @return [String]
18698
+ #
18699
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImageSource AWS API Documentation
18700
+ #
18701
+ class ImageSource < Struct.new(
18702
+ :public_url,
18703
+ :s3_uri,
18704
+ :unknown)
18705
+ SENSITIVE = []
18706
+ include Aws::Structure
18707
+ include Aws::Structure::Union
18708
+
18709
+ class PublicUrl < ImageSource; end
18710
+ class S3Uri < ImageSource; end
18711
+ class Unknown < ImageSource; end
18712
+ end
18713
+
17893
18714
  # The incremental refresh configuration for a dataset.
17894
18715
  #
17895
18716
  # @!attribute [rw] lookback_window
@@ -18250,6 +19071,19 @@ module Aws::QuickSight
18250
19071
  include Aws::Structure
18251
19072
  end
18252
19073
 
19074
+ # An internal service exception.
19075
+ #
19076
+ # @!attribute [rw] message
19077
+ # @return [String]
19078
+ #
19079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InternalServerException AWS API Documentation
19080
+ #
19081
+ class InternalServerException < Struct.new(
19082
+ :message)
19083
+ SENSITIVE = []
19084
+ include Aws::Structure
19085
+ end
19086
+
18253
19087
  # The `NextToken` value isn't valid.
18254
19088
  #
18255
19089
  # @!attribute [rw] message
@@ -19483,6 +20317,49 @@ module Aws::QuickSight
19483
20317
  include Aws::Structure
19484
20318
  end
19485
20319
 
20320
+ # @!attribute [rw] aws_account_id
20321
+ # The ID of the Amazon Web Services account that owns the brands that
20322
+ # you want to list.
20323
+ # @return [String]
20324
+ #
20325
+ # @!attribute [rw] max_results
20326
+ # The maximum number of results to be returned in a single request.
20327
+ # @return [Integer]
20328
+ #
20329
+ # @!attribute [rw] next_token
20330
+ # The token for the next set of results, or null if there are no more
20331
+ # results.
20332
+ # @return [String]
20333
+ #
20334
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListBrandsRequest AWS API Documentation
20335
+ #
20336
+ class ListBrandsRequest < Struct.new(
20337
+ :aws_account_id,
20338
+ :max_results,
20339
+ :next_token)
20340
+ SENSITIVE = []
20341
+ include Aws::Structure
20342
+ end
20343
+
20344
+ # @!attribute [rw] next_token
20345
+ # The token for the next set of results, or null if there are no more
20346
+ # results.
20347
+ # @return [String]
20348
+ #
20349
+ # @!attribute [rw] brands
20350
+ # A list of all brands in your Amazon Web Services account. This
20351
+ # structure provides basic information about each brand.
20352
+ # @return [Array<Types::BrandSummary>]
20353
+ #
20354
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListBrandsResponse AWS API Documentation
20355
+ #
20356
+ class ListBrandsResponse < Struct.new(
20357
+ :next_token,
20358
+ :brands)
20359
+ SENSITIVE = []
20360
+ include Aws::Structure
20361
+ end
20362
+
19486
20363
  # The display options of a control.
19487
20364
  #
19488
20365
  # @!attribute [rw] search_options
@@ -19542,6 +20419,58 @@ module Aws::QuickSight
19542
20419
  include Aws::Structure
19543
20420
  end
19544
20421
 
20422
+ # @!attribute [rw] aws_account_id
20423
+ # The ID of the Amazon Web Services account that contains the custom
20424
+ # permissions profiles that you want to list.
20425
+ # @return [String]
20426
+ #
20427
+ # @!attribute [rw] max_results
20428
+ # The maximum number of results to return.
20429
+ # @return [Integer]
20430
+ #
20431
+ # @!attribute [rw] next_token
20432
+ # The token for the next set of results, or null if there are no more
20433
+ # results.
20434
+ # @return [String]
20435
+ #
20436
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListCustomPermissionsRequest AWS API Documentation
20437
+ #
20438
+ class ListCustomPermissionsRequest < Struct.new(
20439
+ :aws_account_id,
20440
+ :max_results,
20441
+ :next_token)
20442
+ SENSITIVE = []
20443
+ include Aws::Structure
20444
+ end
20445
+
20446
+ # @!attribute [rw] status
20447
+ # The HTTP status of the request.
20448
+ # @return [Integer]
20449
+ #
20450
+ # @!attribute [rw] custom_permissions_list
20451
+ # A list of custom permissions profiles.
20452
+ # @return [Array<Types::CustomPermissions>]
20453
+ #
20454
+ # @!attribute [rw] next_token
20455
+ # The token for the next set of results, or null if there are no more
20456
+ # results.
20457
+ # @return [String]
20458
+ #
20459
+ # @!attribute [rw] request_id
20460
+ # The Amazon Web Services request ID for this operation.
20461
+ # @return [String]
20462
+ #
20463
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListCustomPermissionsResponse AWS API Documentation
20464
+ #
20465
+ class ListCustomPermissionsResponse < Struct.new(
20466
+ :status,
20467
+ :custom_permissions_list,
20468
+ :next_token,
20469
+ :request_id)
20470
+ SENSITIVE = []
20471
+ include Aws::Structure
20472
+ end
20473
+
19545
20474
  # @!attribute [rw] aws_account_id
19546
20475
  # The ID of the Amazon Web Services account that contains the
19547
20476
  # dashboard that you're listing versions for.
@@ -21238,6 +22167,82 @@ module Aws::QuickSight
21238
22167
  include Aws::Structure
21239
22168
  end
21240
22169
 
22170
+ # The logo configuration.
22171
+ #
22172
+ # @!attribute [rw] alt_text
22173
+ # The alt text for the logo.
22174
+ # @return [String]
22175
+ #
22176
+ # @!attribute [rw] logo_set
22177
+ # A set of configured logos.
22178
+ # @return [Types::LogoSet]
22179
+ #
22180
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Logo AWS API Documentation
22181
+ #
22182
+ class Logo < Struct.new(
22183
+ :alt_text,
22184
+ :logo_set)
22185
+ SENSITIVE = []
22186
+ include Aws::Structure
22187
+ end
22188
+
22189
+ # The logo configuration.
22190
+ #
22191
+ # @!attribute [rw] alt_text
22192
+ # The alt text for the logo.
22193
+ # @return [String]
22194
+ #
22195
+ # @!attribute [rw] logo_set
22196
+ # A set of configured logos.
22197
+ # @return [Types::LogoSetConfiguration]
22198
+ #
22199
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LogoConfiguration AWS API Documentation
22200
+ #
22201
+ class LogoConfiguration < Struct.new(
22202
+ :alt_text,
22203
+ :logo_set)
22204
+ SENSITIVE = []
22205
+ include Aws::Structure
22206
+ end
22207
+
22208
+ # A set of logos.
22209
+ #
22210
+ # @!attribute [rw] primary
22211
+ # The primary logo.
22212
+ # @return [Types::ImageSet]
22213
+ #
22214
+ # @!attribute [rw] favicon
22215
+ # The favicon logo.
22216
+ # @return [Types::ImageSet]
22217
+ #
22218
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LogoSet AWS API Documentation
22219
+ #
22220
+ class LogoSet < Struct.new(
22221
+ :primary,
22222
+ :favicon)
22223
+ SENSITIVE = []
22224
+ include Aws::Structure
22225
+ end
22226
+
22227
+ # The logo set configuration.
22228
+ #
22229
+ # @!attribute [rw] primary
22230
+ # The primary logo.
22231
+ # @return [Types::ImageSetConfiguration]
22232
+ #
22233
+ # @!attribute [rw] favicon
22234
+ # The favicon logo.
22235
+ # @return [Types::ImageSetConfiguration]
22236
+ #
22237
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/LogoSetConfiguration AWS API Documentation
22238
+ #
22239
+ class LogoSetConfiguration < Struct.new(
22240
+ :primary,
22241
+ :favicon)
22242
+ SENSITIVE = []
22243
+ include Aws::Structure
22244
+ end
22245
+
21241
22246
  # The text format for a subtitle.
21242
22247
  #
21243
22248
  # This is a union type structure. For this structure to be valid, only
@@ -21691,6 +22696,25 @@ module Aws::QuickSight
21691
22696
  include Aws::Structure
21692
22697
  end
21693
22698
 
22699
+ # The navigation bar style.
22700
+ #
22701
+ # @!attribute [rw] global_navbar
22702
+ # The global navigation bar style.
22703
+ # @return [Types::Palette]
22704
+ #
22705
+ # @!attribute [rw] contextual_navbar
22706
+ # The contextual navigation bar style.
22707
+ # @return [Types::Palette]
22708
+ #
22709
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/NavbarStyle AWS API Documentation
22710
+ #
22711
+ class NavbarStyle < Struct.new(
22712
+ :global_navbar,
22713
+ :contextual_navbar)
22714
+ SENSITIVE = []
22715
+ include Aws::Structure
22716
+ end
22717
+
21694
22718
  # A structure that represents a negative format.
21695
22719
  #
21696
22720
  # @!attribute [rw] prefix
@@ -22374,6 +23398,25 @@ module Aws::QuickSight
22374
23398
  include Aws::Structure
22375
23399
  end
22376
23400
 
23401
+ # The color palette.
23402
+ #
23403
+ # @!attribute [rw] foreground
23404
+ # The foreground color.
23405
+ # @return [String]
23406
+ #
23407
+ # @!attribute [rw] background
23408
+ # The background color.
23409
+ # @return [String]
23410
+ #
23411
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Palette AWS API Documentation
23412
+ #
23413
+ class Palette < Struct.new(
23414
+ :foreground,
23415
+ :background)
23416
+ SENSITIVE = []
23417
+ include Aws::Structure
23418
+ end
23419
+
22377
23420
  # A collection of options that configure how each panel displays in a
22378
23421
  # small multiples chart.
22379
23422
  #
@@ -32602,6 +33645,169 @@ module Aws::QuickSight
32602
33645
  include Aws::Structure
32603
33646
  end
32604
33647
 
33648
+ # @!attribute [rw] aws_account_id
33649
+ # The ID of the Amazon Web Services account that owns the brand
33650
+ # assignment.
33651
+ # @return [String]
33652
+ #
33653
+ # @!attribute [rw] brand_arn
33654
+ # The Amazon Resource Name (ARN) of the brand.
33655
+ # @return [String]
33656
+ #
33657
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrandAssignmentRequest AWS API Documentation
33658
+ #
33659
+ class UpdateBrandAssignmentRequest < Struct.new(
33660
+ :aws_account_id,
33661
+ :brand_arn)
33662
+ SENSITIVE = []
33663
+ include Aws::Structure
33664
+ end
33665
+
33666
+ # @!attribute [rw] request_id
33667
+ # The Amazon Web Services request ID for this operation.
33668
+ # @return [String]
33669
+ #
33670
+ # @!attribute [rw] brand_arn
33671
+ # The Amazon Resource Name (ARN) of the brand.
33672
+ # @return [String]
33673
+ #
33674
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrandAssignmentResponse AWS API Documentation
33675
+ #
33676
+ class UpdateBrandAssignmentResponse < Struct.new(
33677
+ :request_id,
33678
+ :brand_arn)
33679
+ SENSITIVE = []
33680
+ include Aws::Structure
33681
+ end
33682
+
33683
+ # @!attribute [rw] aws_account_id
33684
+ # The ID of the Amazon Web Services account that owns the brand.
33685
+ # @return [String]
33686
+ #
33687
+ # @!attribute [rw] brand_id
33688
+ # The ID of the Amazon QuickSight brand.
33689
+ # @return [String]
33690
+ #
33691
+ # @!attribute [rw] version_id
33692
+ # The ID of the published version.
33693
+ # @return [String]
33694
+ #
33695
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrandPublishedVersionRequest AWS API Documentation
33696
+ #
33697
+ class UpdateBrandPublishedVersionRequest < Struct.new(
33698
+ :aws_account_id,
33699
+ :brand_id,
33700
+ :version_id)
33701
+ SENSITIVE = []
33702
+ include Aws::Structure
33703
+ end
33704
+
33705
+ # @!attribute [rw] request_id
33706
+ # The Amazon Web Services request ID for this operation.
33707
+ # @return [String]
33708
+ #
33709
+ # @!attribute [rw] version_id
33710
+ # The ID of the published version.
33711
+ # @return [String]
33712
+ #
33713
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrandPublishedVersionResponse AWS API Documentation
33714
+ #
33715
+ class UpdateBrandPublishedVersionResponse < Struct.new(
33716
+ :request_id,
33717
+ :version_id)
33718
+ SENSITIVE = []
33719
+ include Aws::Structure
33720
+ end
33721
+
33722
+ # @!attribute [rw] aws_account_id
33723
+ # The ID of the Amazon Web Services account that owns the brand.
33724
+ # @return [String]
33725
+ #
33726
+ # @!attribute [rw] brand_id
33727
+ # The ID of the Amazon QuickSight brand.
33728
+ # @return [String]
33729
+ #
33730
+ # @!attribute [rw] brand_definition
33731
+ # The definition of the brand.
33732
+ # @return [Types::BrandDefinition]
33733
+ #
33734
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrandRequest AWS API Documentation
33735
+ #
33736
+ class UpdateBrandRequest < Struct.new(
33737
+ :aws_account_id,
33738
+ :brand_id,
33739
+ :brand_definition)
33740
+ SENSITIVE = []
33741
+ include Aws::Structure
33742
+ end
33743
+
33744
+ # @!attribute [rw] request_id
33745
+ # The Amazon Web Services request ID for this operation.
33746
+ # @return [String]
33747
+ #
33748
+ # @!attribute [rw] brand_detail
33749
+ # The details of the brand.
33750
+ # @return [Types::BrandDetail]
33751
+ #
33752
+ # @!attribute [rw] brand_definition
33753
+ # The definition of the brand.
33754
+ # @return [Types::BrandDefinition]
33755
+ #
33756
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateBrandResponse AWS API Documentation
33757
+ #
33758
+ class UpdateBrandResponse < Struct.new(
33759
+ :request_id,
33760
+ :brand_detail,
33761
+ :brand_definition)
33762
+ SENSITIVE = []
33763
+ include Aws::Structure
33764
+ end
33765
+
33766
+ # @!attribute [rw] aws_account_id
33767
+ # The ID of the Amazon Web Services account that contains the custom
33768
+ # permissions profile that you want to update.
33769
+ # @return [String]
33770
+ #
33771
+ # @!attribute [rw] custom_permissions_name
33772
+ # The name of the custom permissions profile that you want to update.
33773
+ # @return [String]
33774
+ #
33775
+ # @!attribute [rw] capabilities
33776
+ # A set of actions to include in the custom permissions profile.
33777
+ # @return [Types::Capabilities]
33778
+ #
33779
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateCustomPermissionsRequest AWS API Documentation
33780
+ #
33781
+ class UpdateCustomPermissionsRequest < Struct.new(
33782
+ :aws_account_id,
33783
+ :custom_permissions_name,
33784
+ :capabilities)
33785
+ SENSITIVE = []
33786
+ include Aws::Structure
33787
+ end
33788
+
33789
+ # @!attribute [rw] status
33790
+ # The HTTP status of the request.
33791
+ # @return [Integer]
33792
+ #
33793
+ # @!attribute [rw] arn
33794
+ # The Amazon Resource Name (ARN) of the custom permissions profile.
33795
+ # @return [String]
33796
+ #
33797
+ # @!attribute [rw] request_id
33798
+ # The Amazon Web Services request ID for this operation.
33799
+ # @return [String]
33800
+ #
33801
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateCustomPermissionsResponse AWS API Documentation
33802
+ #
33803
+ class UpdateCustomPermissionsResponse < Struct.new(
33804
+ :status,
33805
+ :arn,
33806
+ :request_id)
33807
+ SENSITIVE = []
33808
+ include Aws::Structure
33809
+ end
33810
+
32605
33811
  # @!attribute [rw] aws_account_id
32606
33812
  # The ID of the Amazon Web Services account that contains the
32607
33813
  # dashboard whose links you want to update.
@@ -34446,6 +35652,52 @@ module Aws::QuickSight
34446
35652
  include Aws::Structure
34447
35653
  end
34448
35654
 
35655
+ # @!attribute [rw] user_name
35656
+ # The username of the user that you want to update custom permissions
35657
+ # for.
35658
+ # @return [String]
35659
+ #
35660
+ # @!attribute [rw] aws_account_id
35661
+ # The ID of the Amazon Web Services account that contains the custom
35662
+ # permission configuration that you want to update.
35663
+ # @return [String]
35664
+ #
35665
+ # @!attribute [rw] namespace
35666
+ # The namespace that the user belongs to.
35667
+ # @return [String]
35668
+ #
35669
+ # @!attribute [rw] custom_permissions_name
35670
+ # The name of the custom permissions that you want to update.
35671
+ # @return [String]
35672
+ #
35673
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateUserCustomPermissionRequest AWS API Documentation
35674
+ #
35675
+ class UpdateUserCustomPermissionRequest < Struct.new(
35676
+ :user_name,
35677
+ :aws_account_id,
35678
+ :namespace,
35679
+ :custom_permissions_name)
35680
+ SENSITIVE = []
35681
+ include Aws::Structure
35682
+ end
35683
+
35684
+ # @!attribute [rw] request_id
35685
+ # The Amazon Web Services request ID for this operation.
35686
+ # @return [String]
35687
+ #
35688
+ # @!attribute [rw] status
35689
+ # The HTTP status of the request.
35690
+ # @return [Integer]
35691
+ #
35692
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateUserCustomPermissionResponse AWS API Documentation
35693
+ #
35694
+ class UpdateUserCustomPermissionResponse < Struct.new(
35695
+ :request_id,
35696
+ :status)
35697
+ SENSITIVE = []
35698
+ include Aws::Structure
35699
+ end
35700
+
34449
35701
  # @!attribute [rw] user_name
34450
35702
  # The Amazon QuickSight user name that you want to update.
34451
35703
  # @return [String]