aws-sdk-quicksight 1.151.0 → 1.153.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f32d1c71f049b6e7c870a0c08cf3abb543ec0c24f90e8a6a428b6580f6596592
4
- data.tar.gz: 04b6a9538e515429228ac9cf57c7417a749d2bab22be08ad4b2d4e8f2e65efd5
3
+ metadata.gz: 569b2a81e327d34381f2795aef01f8adeb6ea9d6683c1f0dd1089180934f6bdf
4
+ data.tar.gz: 9b6b0d1882163aa8c8c42785600229b355a8d93d11de7a77c246f6e56a47d010
5
5
  SHA512:
6
- metadata.gz: f20adaf7f92f6449bc6c747739e3cac3cd9cf820c01161b3612b17f9f51b2945beb59da19da85307064cfbb4e140cb98f549faa51473e552e48988ff5bb4a884
7
- data.tar.gz: 96c05376ce033173228fd8b74d326c425b9ef1953e7b0163becdef37da7809d07ba682109d938cdaf1181bb029545d0c4a39366a17b9b485f41e1be48786db61
6
+ metadata.gz: 2d6b864b655453df97de943f66676b665bdb0b4f360f4e34d891c03f8dc1123f0d132024cf1a60e7e8be178c76b4da412ec309a9da7886f6fb7bfd5f3b5ac42d
7
+ data.tar.gz: 9df7a5b731aacc5ddad229fbe97f5df2f6e362a1f95a50ebe4d950072553553c530f05dde3fe01b4518f26784f1150aee0325a9a623fe7b836e664a01c596e48
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.153.0 (2025-07-31)
5
+ ------------------
6
+
7
+ * Feature - Added Impala connector support
8
+
9
+ 1.152.0 (2025-07-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.151.0 (2025-07-15)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.151.0
1
+ 1.153.0
@@ -95,7 +95,7 @@ module Aws::QuickSight
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::QuickSight
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::QuickSight
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::QuickSight
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::QuickSight
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -2762,6 +2772,12 @@ module Aws::QuickSight
2762
2772
  # project_id: "ProjectId", # required
2763
2773
  # data_set_region: "DataSetRegion",
2764
2774
  # },
2775
+ # impala_parameters: {
2776
+ # host: "Host", # required
2777
+ # port: 1, # required
2778
+ # database: "Database",
2779
+ # sql_endpoint_path: "SqlEndpointPath", # required
2780
+ # },
2765
2781
  # },
2766
2782
  # credentials: {
2767
2783
  # credential_pair: {
@@ -2920,6 +2936,12 @@ module Aws::QuickSight
2920
2936
  # project_id: "ProjectId", # required
2921
2937
  # data_set_region: "DataSetRegion",
2922
2938
  # },
2939
+ # impala_parameters: {
2940
+ # host: "Host", # required
2941
+ # port: 1, # required
2942
+ # database: "Database",
2943
+ # sql_endpoint_path: "SqlEndpointPath", # required
2944
+ # },
2923
2945
  # },
2924
2946
  # ],
2925
2947
  # },
@@ -6220,6 +6242,10 @@ module Aws::QuickSight
6220
6242
  # resp.override_parameters.data_sources[0].data_source_parameters.trino_parameters.catalog #=> String
6221
6243
  # resp.override_parameters.data_sources[0].data_source_parameters.big_query_parameters.project_id #=> String
6222
6244
  # resp.override_parameters.data_sources[0].data_source_parameters.big_query_parameters.data_set_region #=> String
6245
+ # resp.override_parameters.data_sources[0].data_source_parameters.impala_parameters.host #=> String
6246
+ # resp.override_parameters.data_sources[0].data_source_parameters.impala_parameters.port #=> Integer
6247
+ # resp.override_parameters.data_sources[0].data_source_parameters.impala_parameters.database #=> String
6248
+ # resp.override_parameters.data_sources[0].data_source_parameters.impala_parameters.sql_endpoint_path #=> String
6223
6249
  # resp.override_parameters.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
6224
6250
  # resp.override_parameters.data_sources[0].ssl_properties.disable_ssl #=> Boolean
6225
6251
  # resp.override_parameters.data_sources[0].credentials.credential_pair.username #=> String
@@ -7411,6 +7437,10 @@ module Aws::QuickSight
7411
7437
  # resp.data_source.data_source_parameters.trino_parameters.catalog #=> String
7412
7438
  # resp.data_source.data_source_parameters.big_query_parameters.project_id #=> String
7413
7439
  # resp.data_source.data_source_parameters.big_query_parameters.data_set_region #=> String
7440
+ # resp.data_source.data_source_parameters.impala_parameters.host #=> String
7441
+ # resp.data_source.data_source_parameters.impala_parameters.port #=> Integer
7442
+ # resp.data_source.data_source_parameters.impala_parameters.database #=> String
7443
+ # resp.data_source.data_source_parameters.impala_parameters.sql_endpoint_path #=> String
7414
7444
  # resp.data_source.alternate_data_source_parameters #=> Array
7415
7445
  # resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
7416
7446
  # resp.data_source.alternate_data_source_parameters[0].athena_parameters.work_group #=> String
@@ -7496,6 +7526,10 @@ module Aws::QuickSight
7496
7526
  # resp.data_source.alternate_data_source_parameters[0].trino_parameters.catalog #=> String
7497
7527
  # resp.data_source.alternate_data_source_parameters[0].big_query_parameters.project_id #=> String
7498
7528
  # resp.data_source.alternate_data_source_parameters[0].big_query_parameters.data_set_region #=> String
7529
+ # resp.data_source.alternate_data_source_parameters[0].impala_parameters.host #=> String
7530
+ # resp.data_source.alternate_data_source_parameters[0].impala_parameters.port #=> Integer
7531
+ # resp.data_source.alternate_data_source_parameters[0].impala_parameters.database #=> String
7532
+ # resp.data_source.alternate_data_source_parameters[0].impala_parameters.sql_endpoint_path #=> String
7499
7533
  # resp.data_source.vpc_connection_properties.vpc_connection_arn #=> String
7500
7534
  # resp.data_source.ssl_properties.disable_ssl #=> Boolean
7501
7535
  # resp.data_source.error_info.type #=> String, one of "ACCESS_DENIED", "COPY_SOURCE_NOT_FOUND", "TIMEOUT", "ENGINE_VERSION_NOT_SUPPORTED", "UNKNOWN_HOST", "GENERIC_SQL_FAILURE", "CONFLICT", "UNKNOWN"
@@ -10418,6 +10452,10 @@ module Aws::QuickSight
10418
10452
  # resp.data_sources[0].data_source_parameters.trino_parameters.catalog #=> String
10419
10453
  # resp.data_sources[0].data_source_parameters.big_query_parameters.project_id #=> String
10420
10454
  # resp.data_sources[0].data_source_parameters.big_query_parameters.data_set_region #=> String
10455
+ # resp.data_sources[0].data_source_parameters.impala_parameters.host #=> String
10456
+ # resp.data_sources[0].data_source_parameters.impala_parameters.port #=> Integer
10457
+ # resp.data_sources[0].data_source_parameters.impala_parameters.database #=> String
10458
+ # resp.data_sources[0].data_source_parameters.impala_parameters.sql_endpoint_path #=> String
10421
10459
  # resp.data_sources[0].alternate_data_source_parameters #=> Array
10422
10460
  # resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
10423
10461
  # resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.work_group #=> String
@@ -10503,6 +10541,10 @@ module Aws::QuickSight
10503
10541
  # resp.data_sources[0].alternate_data_source_parameters[0].trino_parameters.catalog #=> String
10504
10542
  # resp.data_sources[0].alternate_data_source_parameters[0].big_query_parameters.project_id #=> String
10505
10543
  # resp.data_sources[0].alternate_data_source_parameters[0].big_query_parameters.data_set_region #=> String
10544
+ # resp.data_sources[0].alternate_data_source_parameters[0].impala_parameters.host #=> String
10545
+ # resp.data_sources[0].alternate_data_source_parameters[0].impala_parameters.port #=> Integer
10546
+ # resp.data_sources[0].alternate_data_source_parameters[0].impala_parameters.database #=> String
10547
+ # resp.data_sources[0].alternate_data_source_parameters[0].impala_parameters.sql_endpoint_path #=> String
10506
10548
  # resp.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
10507
10549
  # resp.data_sources[0].ssl_properties.disable_ssl #=> Boolean
10508
10550
  # resp.data_sources[0].error_info.type #=> String, one of "ACCESS_DENIED", "COPY_SOURCE_NOT_FOUND", "TIMEOUT", "ENGINE_VERSION_NOT_SUPPORTED", "UNKNOWN_HOST", "GENERIC_SQL_FAILURE", "CONFLICT", "UNKNOWN"
@@ -13604,6 +13646,12 @@ module Aws::QuickSight
13604
13646
  # project_id: "ProjectId", # required
13605
13647
  # data_set_region: "DataSetRegion",
13606
13648
  # },
13649
+ # impala_parameters: {
13650
+ # host: "Host", # required
13651
+ # port: 1, # required
13652
+ # database: "Database",
13653
+ # sql_endpoint_path: "SqlEndpointPath", # required
13654
+ # },
13607
13655
  # },
13608
13656
  # vpc_connection_properties: {
13609
13657
  # vpc_connection_arn: "Arn", # required
@@ -15662,6 +15710,12 @@ module Aws::QuickSight
15662
15710
  # project_id: "ProjectId", # required
15663
15711
  # data_set_region: "DataSetRegion",
15664
15712
  # },
15713
+ # impala_parameters: {
15714
+ # host: "Host", # required
15715
+ # port: 1, # required
15716
+ # database: "Database",
15717
+ # sql_endpoint_path: "SqlEndpointPath", # required
15718
+ # },
15665
15719
  # },
15666
15720
  # credentials: {
15667
15721
  # credential_pair: {
@@ -15820,6 +15874,12 @@ module Aws::QuickSight
15820
15874
  # project_id: "ProjectId", # required
15821
15875
  # data_set_region: "DataSetRegion",
15822
15876
  # },
15877
+ # impala_parameters: {
15878
+ # host: "Host", # required
15879
+ # port: 1, # required
15880
+ # database: "Database",
15881
+ # sql_endpoint_path: "SqlEndpointPath", # required
15882
+ # },
15823
15883
  # },
15824
15884
  # ],
15825
15885
  # },
@@ -17735,7 +17795,7 @@ module Aws::QuickSight
17735
17795
  tracer: tracer
17736
17796
  )
17737
17797
  context[:gem_name] = 'aws-sdk-quicksight'
17738
- context[:gem_version] = '1.151.0'
17798
+ context[:gem_version] = '1.153.0'
17739
17799
  Seahorse::Client::Request.new(handlers, context)
17740
17800
  end
17741
17801
 
@@ -1070,6 +1070,7 @@ module Aws::QuickSight
1070
1070
  ImageSetConfiguration = Shapes::StructureShape.new(name: 'ImageSetConfiguration')
1071
1071
  ImageSource = Shapes::UnionShape.new(name: 'ImageSource')
1072
1072
  ImageStaticFile = Shapes::StructureShape.new(name: 'ImageStaticFile')
1073
+ ImpalaParameters = Shapes::StructureShape.new(name: 'ImpalaParameters')
1073
1074
  IncludeFolderMembers = Shapes::StringShape.new(name: 'IncludeFolderMembers')
1074
1075
  IncludeGeneratedAnswer = Shapes::StringShape.new(name: 'IncludeGeneratedAnswer')
1075
1076
  IncludeQuickSightQIndex = Shapes::StringShape.new(name: 'IncludeQuickSightQIndex')
@@ -4156,6 +4157,7 @@ module Aws::QuickSight
4156
4157
  DataSourceParameters.add_member(:starburst_parameters, Shapes::ShapeRef.new(shape: StarburstParameters, location_name: "StarburstParameters"))
4157
4158
  DataSourceParameters.add_member(:trino_parameters, Shapes::ShapeRef.new(shape: TrinoParameters, location_name: "TrinoParameters"))
4158
4159
  DataSourceParameters.add_member(:big_query_parameters, Shapes::ShapeRef.new(shape: BigQueryParameters, location_name: "BigQueryParameters"))
4160
+ DataSourceParameters.add_member(:impala_parameters, Shapes::ShapeRef.new(shape: ImpalaParameters, location_name: "ImpalaParameters"))
4159
4161
  DataSourceParameters.struct_class = Types::DataSourceParameters
4160
4162
 
4161
4163
  DataSourceParametersList.member = Shapes::ShapeRef.new(shape: DataSourceParameters)
@@ -6296,6 +6298,12 @@ module Aws::QuickSight
6296
6298
  ImageStaticFile.add_member(:source, Shapes::ShapeRef.new(shape: StaticFileSource, location_name: "Source"))
6297
6299
  ImageStaticFile.struct_class = Types::ImageStaticFile
6298
6300
 
6301
+ ImpalaParameters.add_member(:host, Shapes::ShapeRef.new(shape: Host, required: true, location_name: "Host"))
6302
+ ImpalaParameters.add_member(:port, Shapes::ShapeRef.new(shape: Port, required: true, location_name: "Port"))
6303
+ ImpalaParameters.add_member(:database, Shapes::ShapeRef.new(shape: Database, location_name: "Database"))
6304
+ ImpalaParameters.add_member(:sql_endpoint_path, Shapes::ShapeRef.new(shape: SqlEndpointPath, required: true, location_name: "SqlEndpointPath"))
6305
+ ImpalaParameters.struct_class = Types::ImpalaParameters
6306
+
6299
6307
  IncrementalRefresh.add_member(:lookback_window, Shapes::ShapeRef.new(shape: LookbackWindow, required: true, location_name: "LookbackWindow"))
6300
6308
  IncrementalRefresh.struct_class = Types::IncrementalRefresh
6301
6309
 
@@ -9675,6 +9675,10 @@ module Aws::QuickSight
9675
9675
  # data source.
9676
9676
  # @return [Types::BigQueryParameters]
9677
9677
  #
9678
+ # @!attribute [rw] impala_parameters
9679
+ # The parameters for Impala.
9680
+ # @return [Types::ImpalaParameters]
9681
+ #
9678
9682
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSourceParameters AWS API Documentation
9679
9683
  #
9680
9684
  class DataSourceParameters < Struct.new(
@@ -9703,7 +9707,8 @@ module Aws::QuickSight
9703
9707
  :databricks_parameters,
9704
9708
  :starburst_parameters,
9705
9709
  :trino_parameters,
9706
- :big_query_parameters)
9710
+ :big_query_parameters,
9711
+ :impala_parameters)
9707
9712
  SENSITIVE = []
9708
9713
  include Aws::Structure
9709
9714
  end
@@ -20068,6 +20073,35 @@ module Aws::QuickSight
20068
20073
  include Aws::Structure
20069
20074
  end
20070
20075
 
20076
+ # The parameters that are required to connect to a Impala data source.
20077
+ #
20078
+ # @!attribute [rw] host
20079
+ # The host name of the Impala data source.
20080
+ # @return [String]
20081
+ #
20082
+ # @!attribute [rw] port
20083
+ # The port of the Impala data source.
20084
+ # @return [Integer]
20085
+ #
20086
+ # @!attribute [rw] database
20087
+ # The database of the Impala data source.
20088
+ # @return [String]
20089
+ #
20090
+ # @!attribute [rw] sql_endpoint_path
20091
+ # The HTTP path of the Impala data source.
20092
+ # @return [String]
20093
+ #
20094
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ImpalaParameters AWS API Documentation
20095
+ #
20096
+ class ImpalaParameters < Struct.new(
20097
+ :host,
20098
+ :port,
20099
+ :database,
20100
+ :sql_endpoint_path)
20101
+ SENSITIVE = []
20102
+ include Aws::Structure
20103
+ end
20104
+
20071
20105
  # The incremental refresh configuration for a dataset.
20072
20106
  #
20073
20107
  # @!attribute [rw] lookback_window
@@ -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.151.0'
57
+ GEM_VERSION = '1.153.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -75826,6 +75827,12 @@ module Aws
75826
75827
  big_query_parameters: {
75827
75828
  project_id: ::String,
75828
75829
  data_set_region: ::String?
75830
+ }?,
75831
+ impala_parameters: {
75832
+ host: ::String,
75833
+ port: ::Integer,
75834
+ database: ::String?,
75835
+ sql_endpoint_path: ::String
75829
75836
  }?
75830
75837
  },
75831
75838
  ?credentials: {
@@ -75984,6 +75991,12 @@ module Aws
75984
75991
  big_query_parameters: {
75985
75992
  project_id: ::String,
75986
75993
  data_set_region: ::String?
75994
+ }?,
75995
+ impala_parameters: {
75996
+ host: ::String,
75997
+ port: ::Integer,
75998
+ database: ::String?,
75999
+ sql_endpoint_path: ::String
75987
76000
  }?
75988
76001
  },
75989
76002
  ]?
@@ -116253,6 +116266,12 @@ module Aws
116253
116266
  big_query_parameters: {
116254
116267
  project_id: ::String,
116255
116268
  data_set_region: ::String?
116269
+ }?,
116270
+ impala_parameters: {
116271
+ host: ::String,
116272
+ port: ::Integer,
116273
+ database: ::String?,
116274
+ sql_endpoint_path: ::String
116256
116275
  }?
116257
116276
  }?,
116258
116277
  vpc_connection_properties: {
@@ -191637,6 +191656,12 @@ module Aws
191637
191656
  big_query_parameters: {
191638
191657
  project_id: ::String,
191639
191658
  data_set_region: ::String?
191659
+ }?,
191660
+ impala_parameters: {
191661
+ host: ::String,
191662
+ port: ::Integer,
191663
+ database: ::String?,
191664
+ sql_endpoint_path: ::String
191640
191665
  }?
191641
191666
  },
191642
191667
  ?credentials: {
@@ -191795,6 +191820,12 @@ module Aws
191795
191820
  big_query_parameters: {
191796
191821
  project_id: ::String,
191797
191822
  data_set_region: ::String?
191823
+ }?,
191824
+ impala_parameters: {
191825
+ host: ::String,
191826
+ port: ::Integer,
191827
+ database: ::String?,
191828
+ sql_endpoint_path: ::String
191798
191829
  }?
191799
191830
  },
191800
191831
  ]?
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -2384,6 +2384,7 @@ module Aws::QuickSight
2384
2384
  attr_accessor starburst_parameters: Types::StarburstParameters
2385
2385
  attr_accessor trino_parameters: Types::TrinoParameters
2386
2386
  attr_accessor big_query_parameters: Types::BigQueryParameters
2387
+ attr_accessor impala_parameters: Types::ImpalaParameters
2387
2388
  SENSITIVE: []
2388
2389
  end
2389
2390
 
@@ -5165,6 +5166,14 @@ module Aws::QuickSight
5165
5166
  SENSITIVE: []
5166
5167
  end
5167
5168
 
5169
+ class ImpalaParameters
5170
+ attr_accessor host: ::String
5171
+ attr_accessor port: ::Integer
5172
+ attr_accessor database: ::String
5173
+ attr_accessor sql_endpoint_path: ::String
5174
+ SENSITIVE: []
5175
+ end
5176
+
5168
5177
  class IncrementalRefresh
5169
5178
  attr_accessor lookback_window: Types::LookbackWindow
5170
5179
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-quicksight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.151.0
4
+ version: 1.153.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.228.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.228.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement