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.
@@ -54,7 +54,7 @@ module Aws::QuickSight
54
54
  autoload :EndpointProvider, 'aws-sdk-quicksight/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-quicksight/endpoints'
56
56
 
57
- GEM_VERSION = '1.135.0'
57
+ GEM_VERSION = '1.136.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -34703,6 +34703,140 @@ module Aws
34703
34703
  ) -> _CreateAnalysisResponseSuccess
34704
34704
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAnalysisResponseSuccess
34705
34705
 
34706
+ interface _CreateBrandResponseSuccess
34707
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateBrandResponse]
34708
+ def request_id: () -> ::String
34709
+ def brand_detail: () -> Types::BrandDetail
34710
+ def brand_definition: () -> Types::BrandDefinition
34711
+ end
34712
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#create_brand-instance_method
34713
+ def create_brand: (
34714
+ aws_account_id: ::String,
34715
+ brand_id: ::String,
34716
+ ?brand_definition: {
34717
+ brand_name: ::String,
34718
+ description: ::String?,
34719
+ application_theme: {
34720
+ brand_color_palette: {
34721
+ primary: {
34722
+ foreground: ::String?,
34723
+ background: ::String?
34724
+ }?,
34725
+ secondary: {
34726
+ foreground: ::String?,
34727
+ background: ::String?
34728
+ }?,
34729
+ accent: {
34730
+ foreground: ::String?,
34731
+ background: ::String?
34732
+ }?,
34733
+ measure: {
34734
+ foreground: ::String?,
34735
+ background: ::String?
34736
+ }?,
34737
+ dimension: {
34738
+ foreground: ::String?,
34739
+ background: ::String?
34740
+ }?,
34741
+ success: {
34742
+ foreground: ::String?,
34743
+ background: ::String?
34744
+ }?,
34745
+ info: {
34746
+ foreground: ::String?,
34747
+ background: ::String?
34748
+ }?,
34749
+ warning: {
34750
+ foreground: ::String?,
34751
+ background: ::String?
34752
+ }?,
34753
+ danger: {
34754
+ foreground: ::String?,
34755
+ background: ::String?
34756
+ }?
34757
+ }?,
34758
+ brand_element_style: {
34759
+ navbar_style: {
34760
+ global_navbar: {
34761
+ foreground: ::String?,
34762
+ background: ::String?
34763
+ }?,
34764
+ contextual_navbar: {
34765
+ foreground: ::String?,
34766
+ background: ::String?
34767
+ }?
34768
+ }?
34769
+ }?
34770
+ }?,
34771
+ logo_configuration: {
34772
+ alt_text: ::String,
34773
+ logo_set: {
34774
+ primary: {
34775
+ original: {
34776
+ source: {
34777
+ public_url: ::String?,
34778
+ s3_uri: ::String?
34779
+ }?
34780
+ }
34781
+ },
34782
+ favicon: {
34783
+ original: {
34784
+ source: {
34785
+ public_url: ::String?,
34786
+ s3_uri: ::String?
34787
+ }?
34788
+ }
34789
+ }?
34790
+ }
34791
+ }?
34792
+ },
34793
+ ?tags: Array[
34794
+ {
34795
+ key: ::String,
34796
+ value: ::String
34797
+ },
34798
+ ]
34799
+ ) -> _CreateBrandResponseSuccess
34800
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBrandResponseSuccess
34801
+
34802
+ interface _CreateCustomPermissionsResponseSuccess
34803
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCustomPermissionsResponse]
34804
+ def status: () -> ::Integer
34805
+ def arn: () -> ::String
34806
+ def request_id: () -> ::String
34807
+ end
34808
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#create_custom_permissions-instance_method
34809
+ def create_custom_permissions: (
34810
+ aws_account_id: ::String,
34811
+ custom_permissions_name: ::String,
34812
+ ?capabilities: {
34813
+ export_to_csv: ("DENY")?,
34814
+ export_to_excel: ("DENY")?,
34815
+ create_and_update_themes: ("DENY")?,
34816
+ add_or_run_anomaly_detection_for_analyses: ("DENY")?,
34817
+ share_analyses: ("DENY")?,
34818
+ create_and_update_datasets: ("DENY")?,
34819
+ share_datasets: ("DENY")?,
34820
+ subscribe_dashboard_email_reports: ("DENY")?,
34821
+ create_and_update_dashboard_email_reports: ("DENY")?,
34822
+ share_dashboards: ("DENY")?,
34823
+ create_and_update_threshold_alerts: ("DENY")?,
34824
+ rename_shared_folders: ("DENY")?,
34825
+ create_shared_folders: ("DENY")?,
34826
+ create_and_update_data_sources: ("DENY")?,
34827
+ share_data_sources: ("DENY")?,
34828
+ view_account_spice_capacity: ("DENY")?,
34829
+ create_spice_dataset: ("DENY")?
34830
+ },
34831
+ ?tags: Array[
34832
+ {
34833
+ key: ::String,
34834
+ value: ::String
34835
+ },
34836
+ ]
34837
+ ) -> _CreateCustomPermissionsResponseSuccess
34838
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomPermissionsResponseSuccess
34839
+
34706
34840
  interface _CreateDashboardResponseSuccess
34707
34841
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateDashboardResponse]
34708
34842
  def arn: () -> ::String
@@ -103494,6 +103628,40 @@ module Aws
103494
103628
  ) -> _DeleteAnalysisResponseSuccess
103495
103629
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAnalysisResponseSuccess
103496
103630
 
103631
+ interface _DeleteBrandResponseSuccess
103632
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBrandResponse]
103633
+ def request_id: () -> ::String
103634
+ end
103635
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#delete_brand-instance_method
103636
+ def delete_brand: (
103637
+ aws_account_id: ::String,
103638
+ brand_id: ::String
103639
+ ) -> _DeleteBrandResponseSuccess
103640
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBrandResponseSuccess
103641
+
103642
+ interface _DeleteBrandAssignmentResponseSuccess
103643
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBrandAssignmentResponse]
103644
+ def request_id: () -> ::String
103645
+ end
103646
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#delete_brand_assignment-instance_method
103647
+ def delete_brand_assignment: (
103648
+ aws_account_id: ::String
103649
+ ) -> _DeleteBrandAssignmentResponseSuccess
103650
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBrandAssignmentResponseSuccess
103651
+
103652
+ interface _DeleteCustomPermissionsResponseSuccess
103653
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCustomPermissionsResponse]
103654
+ def status: () -> ::Integer
103655
+ def arn: () -> ::String
103656
+ def request_id: () -> ::String
103657
+ end
103658
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#delete_custom_permissions-instance_method
103659
+ def delete_custom_permissions: (
103660
+ aws_account_id: ::String,
103661
+ custom_permissions_name: ::String
103662
+ ) -> _DeleteCustomPermissionsResponseSuccess
103663
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCustomPermissionsResponseSuccess
103664
+
103497
103665
  interface _DeleteDashboardResponseSuccess
103498
103666
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDashboardResponse]
103499
103667
  def status: () -> ::Integer
@@ -103802,6 +103970,19 @@ module Aws
103802
103970
  ) -> _DeleteUserByPrincipalIdResponseSuccess
103803
103971
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteUserByPrincipalIdResponseSuccess
103804
103972
 
103973
+ interface _DeleteUserCustomPermissionResponseSuccess
103974
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteUserCustomPermissionResponse]
103975
+ def request_id: () -> ::String
103976
+ def status: () -> ::Integer
103977
+ end
103978
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#delete_user_custom_permission-instance_method
103979
+ def delete_user_custom_permission: (
103980
+ user_name: ::String,
103981
+ aws_account_id: ::String,
103982
+ namespace: ::String
103983
+ ) -> _DeleteUserCustomPermissionResponseSuccess
103984
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteUserCustomPermissionResponseSuccess
103985
+
103805
103986
  interface _DeleteVPCConnectionResponseSuccess
103806
103987
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVPCConnectionResponse]
103807
103988
  def arn: () -> ::String
@@ -103960,6 +104141,57 @@ module Aws
103960
104141
  ) -> _DescribeAssetBundleImportJobResponseSuccess
103961
104142
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAssetBundleImportJobResponseSuccess
103962
104143
 
104144
+ interface _DescribeBrandResponseSuccess
104145
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBrandResponse]
104146
+ def request_id: () -> ::String
104147
+ def brand_detail: () -> Types::BrandDetail
104148
+ def brand_definition: () -> Types::BrandDefinition
104149
+ end
104150
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_brand-instance_method
104151
+ def describe_brand: (
104152
+ aws_account_id: ::String,
104153
+ brand_id: ::String,
104154
+ ?version_id: ::String
104155
+ ) -> _DescribeBrandResponseSuccess
104156
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBrandResponseSuccess
104157
+
104158
+ interface _DescribeBrandAssignmentResponseSuccess
104159
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBrandAssignmentResponse]
104160
+ def request_id: () -> ::String
104161
+ def brand_arn: () -> ::String
104162
+ end
104163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_brand_assignment-instance_method
104164
+ def describe_brand_assignment: (
104165
+ aws_account_id: ::String
104166
+ ) -> _DescribeBrandAssignmentResponseSuccess
104167
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBrandAssignmentResponseSuccess
104168
+
104169
+ interface _DescribeBrandPublishedVersionResponseSuccess
104170
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBrandPublishedVersionResponse]
104171
+ def request_id: () -> ::String
104172
+ def brand_detail: () -> Types::BrandDetail
104173
+ def brand_definition: () -> Types::BrandDefinition
104174
+ end
104175
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_brand_published_version-instance_method
104176
+ def describe_brand_published_version: (
104177
+ aws_account_id: ::String,
104178
+ brand_id: ::String
104179
+ ) -> _DescribeBrandPublishedVersionResponseSuccess
104180
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBrandPublishedVersionResponseSuccess
104181
+
104182
+ interface _DescribeCustomPermissionsResponseSuccess
104183
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCustomPermissionsResponse]
104184
+ def status: () -> ::Integer
104185
+ def custom_permissions: () -> Types::CustomPermissions
104186
+ def request_id: () -> ::String
104187
+ end
104188
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#describe_custom_permissions-instance_method
104189
+ def describe_custom_permissions: (
104190
+ aws_account_id: ::String,
104191
+ custom_permissions_name: ::String
104192
+ ) -> _DescribeCustomPermissionsResponseSuccess
104193
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCustomPermissionsResponseSuccess
104194
+
103963
104195
  interface _DescribeDashboardResponseSuccess
103964
104196
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDashboardResponse]
103965
104197
  def dashboard: () -> Types::Dashboard
@@ -104694,6 +104926,34 @@ module Aws
104694
104926
  ) -> _ListAssetBundleImportJobsResponseSuccess
104695
104927
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetBundleImportJobsResponseSuccess
104696
104928
 
104929
+ interface _ListBrandsResponseSuccess
104930
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBrandsResponse]
104931
+ def next_token: () -> ::String
104932
+ def brands: () -> ::Array[Types::BrandSummary]
104933
+ end
104934
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#list_brands-instance_method
104935
+ def list_brands: (
104936
+ aws_account_id: ::String,
104937
+ ?max_results: ::Integer,
104938
+ ?next_token: ::String
104939
+ ) -> _ListBrandsResponseSuccess
104940
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBrandsResponseSuccess
104941
+
104942
+ interface _ListCustomPermissionsResponseSuccess
104943
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCustomPermissionsResponse]
104944
+ def status: () -> ::Integer
104945
+ def custom_permissions_list: () -> ::Array[Types::CustomPermissions]
104946
+ def next_token: () -> ::String
104947
+ def request_id: () -> ::String
104948
+ end
104949
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#list_custom_permissions-instance_method
104950
+ def list_custom_permissions: (
104951
+ aws_account_id: ::String,
104952
+ ?max_results: ::Integer,
104953
+ ?next_token: ::String
104954
+ ) -> _ListCustomPermissionsResponseSuccess
104955
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomPermissionsResponseSuccess
104956
+
104697
104957
  interface _ListDashboardVersionsResponseSuccess
104698
104958
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDashboardVersionsResponse]
104699
104959
  def dashboard_version_summary_list: () -> ::Array[Types::DashboardVersionSummary]
@@ -139761,6 +140021,153 @@ module Aws
139761
140021
  ) -> _UpdateAnalysisPermissionsResponseSuccess
139762
140022
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnalysisPermissionsResponseSuccess
139763
140023
 
140024
+ interface _UpdateBrandResponseSuccess
140025
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrandResponse]
140026
+ def request_id: () -> ::String
140027
+ def brand_detail: () -> Types::BrandDetail
140028
+ def brand_definition: () -> Types::BrandDefinition
140029
+ end
140030
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_brand-instance_method
140031
+ def update_brand: (
140032
+ aws_account_id: ::String,
140033
+ brand_id: ::String,
140034
+ ?brand_definition: {
140035
+ brand_name: ::String,
140036
+ description: ::String?,
140037
+ application_theme: {
140038
+ brand_color_palette: {
140039
+ primary: {
140040
+ foreground: ::String?,
140041
+ background: ::String?
140042
+ }?,
140043
+ secondary: {
140044
+ foreground: ::String?,
140045
+ background: ::String?
140046
+ }?,
140047
+ accent: {
140048
+ foreground: ::String?,
140049
+ background: ::String?
140050
+ }?,
140051
+ measure: {
140052
+ foreground: ::String?,
140053
+ background: ::String?
140054
+ }?,
140055
+ dimension: {
140056
+ foreground: ::String?,
140057
+ background: ::String?
140058
+ }?,
140059
+ success: {
140060
+ foreground: ::String?,
140061
+ background: ::String?
140062
+ }?,
140063
+ info: {
140064
+ foreground: ::String?,
140065
+ background: ::String?
140066
+ }?,
140067
+ warning: {
140068
+ foreground: ::String?,
140069
+ background: ::String?
140070
+ }?,
140071
+ danger: {
140072
+ foreground: ::String?,
140073
+ background: ::String?
140074
+ }?
140075
+ }?,
140076
+ brand_element_style: {
140077
+ navbar_style: {
140078
+ global_navbar: {
140079
+ foreground: ::String?,
140080
+ background: ::String?
140081
+ }?,
140082
+ contextual_navbar: {
140083
+ foreground: ::String?,
140084
+ background: ::String?
140085
+ }?
140086
+ }?
140087
+ }?
140088
+ }?,
140089
+ logo_configuration: {
140090
+ alt_text: ::String,
140091
+ logo_set: {
140092
+ primary: {
140093
+ original: {
140094
+ source: {
140095
+ public_url: ::String?,
140096
+ s3_uri: ::String?
140097
+ }?
140098
+ }
140099
+ },
140100
+ favicon: {
140101
+ original: {
140102
+ source: {
140103
+ public_url: ::String?,
140104
+ s3_uri: ::String?
140105
+ }?
140106
+ }
140107
+ }?
140108
+ }
140109
+ }?
140110
+ }
140111
+ ) -> _UpdateBrandResponseSuccess
140112
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrandResponseSuccess
140113
+
140114
+ interface _UpdateBrandAssignmentResponseSuccess
140115
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrandAssignmentResponse]
140116
+ def request_id: () -> ::String
140117
+ def brand_arn: () -> ::String
140118
+ end
140119
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_brand_assignment-instance_method
140120
+ def update_brand_assignment: (
140121
+ aws_account_id: ::String,
140122
+ brand_arn: ::String
140123
+ ) -> _UpdateBrandAssignmentResponseSuccess
140124
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrandAssignmentResponseSuccess
140125
+
140126
+ interface _UpdateBrandPublishedVersionResponseSuccess
140127
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrandPublishedVersionResponse]
140128
+ def request_id: () -> ::String
140129
+ def version_id: () -> ::String
140130
+ end
140131
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_brand_published_version-instance_method
140132
+ def update_brand_published_version: (
140133
+ aws_account_id: ::String,
140134
+ brand_id: ::String,
140135
+ version_id: ::String
140136
+ ) -> _UpdateBrandPublishedVersionResponseSuccess
140137
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrandPublishedVersionResponseSuccess
140138
+
140139
+ interface _UpdateCustomPermissionsResponseSuccess
140140
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCustomPermissionsResponse]
140141
+ def status: () -> ::Integer
140142
+ def arn: () -> ::String
140143
+ def request_id: () -> ::String
140144
+ end
140145
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_custom_permissions-instance_method
140146
+ def update_custom_permissions: (
140147
+ aws_account_id: ::String,
140148
+ custom_permissions_name: ::String,
140149
+ ?capabilities: {
140150
+ export_to_csv: ("DENY")?,
140151
+ export_to_excel: ("DENY")?,
140152
+ create_and_update_themes: ("DENY")?,
140153
+ add_or_run_anomaly_detection_for_analyses: ("DENY")?,
140154
+ share_analyses: ("DENY")?,
140155
+ create_and_update_datasets: ("DENY")?,
140156
+ share_datasets: ("DENY")?,
140157
+ subscribe_dashboard_email_reports: ("DENY")?,
140158
+ create_and_update_dashboard_email_reports: ("DENY")?,
140159
+ share_dashboards: ("DENY")?,
140160
+ create_and_update_threshold_alerts: ("DENY")?,
140161
+ rename_shared_folders: ("DENY")?,
140162
+ create_shared_folders: ("DENY")?,
140163
+ create_and_update_data_sources: ("DENY")?,
140164
+ share_data_sources: ("DENY")?,
140165
+ view_account_spice_capacity: ("DENY")?,
140166
+ create_spice_dataset: ("DENY")?
140167
+ }
140168
+ ) -> _UpdateCustomPermissionsResponseSuccess
140169
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCustomPermissionsResponseSuccess
140170
+
139764
140171
  interface _UpdateDashboardResponseSuccess
139765
140172
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDashboardResponse]
139766
140173
  def arn: () -> ::String
@@ -208654,6 +209061,20 @@ module Aws
208654
209061
  ) -> _UpdateUserResponseSuccess
208655
209062
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserResponseSuccess
208656
209063
 
209064
+ interface _UpdateUserCustomPermissionResponseSuccess
209065
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateUserCustomPermissionResponse]
209066
+ def request_id: () -> ::String
209067
+ def status: () -> ::Integer
209068
+ end
209069
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QuickSight/Client.html#update_user_custom_permission-instance_method
209070
+ def update_user_custom_permission: (
209071
+ user_name: ::String,
209072
+ aws_account_id: ::String,
209073
+ namespace: ::String,
209074
+ custom_permissions_name: ::String
209075
+ ) -> _UpdateUserCustomPermissionResponseSuccess
209076
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserCustomPermissionResponseSuccess
209077
+
208657
209078
  interface _UpdateVPCConnectionResponseSuccess
208658
209079
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVPCConnectionResponse]
208659
209080
  def arn: () -> ::String
data/sig/errors.rbs CHANGED
@@ -39,6 +39,9 @@ module Aws
39
39
  def message: () -> ::String
40
40
  def request_id: () -> ::String
41
41
  end
42
+ class InternalServerException < ::Aws::Errors::ServiceError
43
+ def message: () -> ::String
44
+ end
42
45
  class InvalidNextTokenException < ::Aws::Errors::ServiceError
43
46
  def message: () -> ::String
44
47
  def request_id: () -> ::String