aws-sdk-redshift 1.56.0 → 1.61.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: 4859a7b969cfe49e8abdbc2f213c09766a54fad921fca3c7052b7a99b432b9af
4
- data.tar.gz: 51743202e7d2781f21641f990d36fbe2a9f3ecca8125f1faedd72ff139aa2455
3
+ metadata.gz: c542840eaf2d52f2f757823892da7b621780fb0b69dbd76444cc036dae81ac22
4
+ data.tar.gz: 1af5522002d64fb9fde0d32f9439ea29daee2574b343fde73d7342ea12d6441e
5
5
  SHA512:
6
- metadata.gz: 1810da5e6a4141e86b9396371315fa7553cd2dca5bc66585586c039b4077c5e1fb79104a131ceae49c33ce830410c4fa0ee4820272f3e561fc140e5e8429a186
7
- data.tar.gz: 5e8ae6e0df8573bcd99cb6c4bcb57e205e116e92b6e0b36d66261371e01f11fd841ad32a6155c210bf171743b82cdc14399a5bfa60047d5a9189c9348293549b
6
+ metadata.gz: 433ffe4e03a9e79d5bf34fb25285a247a9e81f921eff58fc52dc573de7720954bbed33f3fef0d02733df8db240badfd7285fd40e917b8bf22fa3319610d4cea4
7
+ data.tar.gz: b9b5d242f52ffd4f1a1cd1620f84f1cd686711bd7386d873308d1feeeb9df349054956252e69d1eb05f38f7f428cf52eb564f04bd4163bb42cfd79074b0cc2a3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,31 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2021-04-13)
5
+ ------------------
6
+
7
+ * Feature - Added support to enable AQUA in Amazon Redshift clusters.
8
+
9
+ 1.60.0 (2021-04-09)
10
+ ------------------
11
+
12
+ * Feature - Add support for case sensitive table level restore
13
+
14
+ 1.59.0 (2021-03-31)
15
+ ------------------
16
+
17
+ * Feature - Enable customers to share access to their Redshift clusters from other VPCs (including VPCs from other accounts).
18
+
19
+ 1.58.0 (2021-03-23)
20
+ ------------------
21
+
22
+ * Feature - Removed APIs to control AQUA on clusters.
23
+
24
+ 1.57.0 (2021-03-22)
25
+ ------------------
26
+
27
+ * Feature - Added support to enable AQUA in Amazon Redshift clusters.
28
+
4
29
  1.56.0 (2021-03-18)
5
30
  ------------------
6
31
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.61.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-redshift/customizations'
49
49
  # @!group service
50
50
  module Aws::Redshift
51
51
 
52
- GEM_VERSION = '1.56.0'
52
+ GEM_VERSION = '1.61.0'
53
53
 
54
54
  end
@@ -464,6 +464,59 @@ module Aws::Redshift
464
464
  req.send_request(options)
465
465
  end
466
466
 
467
+ # Grants access to a cluster.
468
+ #
469
+ # @option params [String] :cluster_identifier
470
+ # The cluster identifier of the cluster to grant access to.
471
+ #
472
+ # @option params [required, String] :account
473
+ # The AWS account ID to grant access to.
474
+ #
475
+ # @option params [Array<String>] :vpc_ids
476
+ # The virtual private cloud (VPC) identifiers to grant access to.
477
+ #
478
+ # @return [Types::EndpointAuthorization] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
479
+ #
480
+ # * {Types::EndpointAuthorization#grantor #grantor} => String
481
+ # * {Types::EndpointAuthorization#grantee #grantee} => String
482
+ # * {Types::EndpointAuthorization#cluster_identifier #cluster_identifier} => String
483
+ # * {Types::EndpointAuthorization#authorize_time #authorize_time} => Time
484
+ # * {Types::EndpointAuthorization#cluster_status #cluster_status} => String
485
+ # * {Types::EndpointAuthorization#status #status} => String
486
+ # * {Types::EndpointAuthorization#allowed_all_vp_cs #allowed_all_vp_cs} => Boolean
487
+ # * {Types::EndpointAuthorization#allowed_vp_cs #allowed_vp_cs} => Array&lt;String&gt;
488
+ # * {Types::EndpointAuthorization#endpoint_count #endpoint_count} => Integer
489
+ #
490
+ # @example Request syntax with placeholder values
491
+ #
492
+ # resp = client.authorize_endpoint_access({
493
+ # cluster_identifier: "String",
494
+ # account: "String", # required
495
+ # vpc_ids: ["String"],
496
+ # })
497
+ #
498
+ # @example Response structure
499
+ #
500
+ # resp.grantor #=> String
501
+ # resp.grantee #=> String
502
+ # resp.cluster_identifier #=> String
503
+ # resp.authorize_time #=> Time
504
+ # resp.cluster_status #=> String
505
+ # resp.status #=> String, one of "Authorized", "Revoking"
506
+ # resp.allowed_all_vp_cs #=> Boolean
507
+ # resp.allowed_vp_cs #=> Array
508
+ # resp.allowed_vp_cs[0] #=> String
509
+ # resp.endpoint_count #=> Integer
510
+ #
511
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeEndpointAccess AWS API Documentation
512
+ #
513
+ # @overload authorize_endpoint_access(params = {})
514
+ # @param [Hash] params ({})
515
+ def authorize_endpoint_access(params = {}, options = {})
516
+ req = build_request(:authorize_endpoint_access, params)
517
+ req.send_request(options)
518
+ end
519
+
467
520
  # Authorizes the specified AWS customer account to restore the specified
468
521
  # snapshot.
469
522
  #
@@ -1172,6 +1225,18 @@ module Aws::Redshift
1172
1225
  # The option to enable relocation for an Amazon Redshift cluster between
1173
1226
  # Availability Zones after the cluster is created.
1174
1227
  #
1228
+ # @option params [String] :aqua_configuration_status
1229
+ # The value represents how the cluster is configured to use AQUA
1230
+ # (Advanced Query Accelerator) when it is created. Possible values
1231
+ # include the following.
1232
+ #
1233
+ # * enabled - Use AQUA if it is available for the current AWS Region and
1234
+ # Amazon Redshift node type.
1235
+ #
1236
+ # * disabled - Don't use AQUA.
1237
+ #
1238
+ # * auto - Amazon Redshift determines whether to use AQUA.
1239
+ #
1175
1240
  # @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1176
1241
  #
1177
1242
  # * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
@@ -1215,6 +1280,7 @@ module Aws::Redshift
1215
1280
  # maintenance_track_name: "String",
1216
1281
  # snapshot_schedule_identifier: "String",
1217
1282
  # availability_zone_relocation: false,
1283
+ # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
1218
1284
  # })
1219
1285
  #
1220
1286
  # @example Response structure
@@ -1325,6 +1391,8 @@ module Aws::Redshift
1325
1391
  # resp.cluster.availability_zone_relocation_status #=> String
1326
1392
  # resp.cluster.cluster_namespace_arn #=> String
1327
1393
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
1394
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
1395
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
1328
1396
  #
1329
1397
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
1330
1398
  #
@@ -1692,6 +1760,83 @@ module Aws::Redshift
1692
1760
  req.send_request(options)
1693
1761
  end
1694
1762
 
1763
+ # Creates a Redshift-managed VPC endpoint.
1764
+ #
1765
+ # @option params [String] :cluster_identifier
1766
+ # The cluster identifier of the cluster to access.
1767
+ #
1768
+ # @option params [String] :resource_owner
1769
+ # The AWS account ID of the owner of the cluster. This is only required
1770
+ # if the cluster is in another AWS account.
1771
+ #
1772
+ # @option params [required, String] :endpoint_name
1773
+ # The Redshift-managed VPC endpoint name.
1774
+ #
1775
+ # An endpoint name must contain 1-30 characters. Valid characters are
1776
+ # A-Z, a-z, 0-9, and hyphen(-). The first character must be a letter.
1777
+ # The name can't contain two consecutive hyphens or end with a hyphen.
1778
+ #
1779
+ # @option params [required, String] :subnet_group_name
1780
+ # The subnet group from which Amazon Redshift chooses the subnet to
1781
+ # deploy the endpoint.
1782
+ #
1783
+ # @option params [Array<String>] :vpc_security_group_ids
1784
+ # The security group that defines the ports, protocols, and sources for
1785
+ # inbound traffic that you are authorizing into your endpoint.
1786
+ #
1787
+ # @return [Types::EndpointAccess] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1788
+ #
1789
+ # * {Types::EndpointAccess#cluster_identifier #cluster_identifier} => String
1790
+ # * {Types::EndpointAccess#resource_owner #resource_owner} => String
1791
+ # * {Types::EndpointAccess#subnet_group_name #subnet_group_name} => String
1792
+ # * {Types::EndpointAccess#endpoint_status #endpoint_status} => String
1793
+ # * {Types::EndpointAccess#endpoint_name #endpoint_name} => String
1794
+ # * {Types::EndpointAccess#endpoint_create_time #endpoint_create_time} => Time
1795
+ # * {Types::EndpointAccess#port #port} => Integer
1796
+ # * {Types::EndpointAccess#address #address} => String
1797
+ # * {Types::EndpointAccess#vpc_security_groups #vpc_security_groups} => Array&lt;Types::VpcSecurityGroupMembership&gt;
1798
+ # * {Types::EndpointAccess#vpc_endpoint #vpc_endpoint} => Types::VpcEndpoint
1799
+ #
1800
+ # @example Request syntax with placeholder values
1801
+ #
1802
+ # resp = client.create_endpoint_access({
1803
+ # cluster_identifier: "String",
1804
+ # resource_owner: "String",
1805
+ # endpoint_name: "String", # required
1806
+ # subnet_group_name: "String", # required
1807
+ # vpc_security_group_ids: ["String"],
1808
+ # })
1809
+ #
1810
+ # @example Response structure
1811
+ #
1812
+ # resp.cluster_identifier #=> String
1813
+ # resp.resource_owner #=> String
1814
+ # resp.subnet_group_name #=> String
1815
+ # resp.endpoint_status #=> String
1816
+ # resp.endpoint_name #=> String
1817
+ # resp.endpoint_create_time #=> Time
1818
+ # resp.port #=> Integer
1819
+ # resp.address #=> String
1820
+ # resp.vpc_security_groups #=> Array
1821
+ # resp.vpc_security_groups[0].vpc_security_group_id #=> String
1822
+ # resp.vpc_security_groups[0].status #=> String
1823
+ # resp.vpc_endpoint.vpc_endpoint_id #=> String
1824
+ # resp.vpc_endpoint.vpc_id #=> String
1825
+ # resp.vpc_endpoint.network_interfaces #=> Array
1826
+ # resp.vpc_endpoint.network_interfaces[0].network_interface_id #=> String
1827
+ # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
1828
+ # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
1829
+ # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
1830
+ #
1831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateEndpointAccess AWS API Documentation
1832
+ #
1833
+ # @overload create_endpoint_access(params = {})
1834
+ # @param [Hash] params ({})
1835
+ def create_endpoint_access(params = {}, options = {})
1836
+ req = build_request(:create_endpoint_access, params)
1837
+ req.send_request(options)
1838
+ end
1839
+
1695
1840
  # Creates an Amazon Redshift event notification subscription. This
1696
1841
  # action requires an ARN (Amazon Resource Name) of an Amazon SNS topic
1697
1842
  # created by either the Amazon Redshift console, the Amazon SNS console,
@@ -1833,12 +1978,12 @@ module Aws::Redshift
1833
1978
  # addition to creating the HSM certificate, you must create an Amazon
1834
1979
  # Redshift HSM configuration that provides a cluster the information
1835
1980
  # needed to store and use encryption keys in the HSM. For more
1836
- # information, go to [Hardware Security Modules][1] in the Amazon
1837
- # Redshift Cluster Management Guide.
1981
+ # information, go to [Hardware Security Modules][1] in the *Amazon
1982
+ # Redshift Cluster Management Guide*.
1838
1983
  #
1839
1984
  #
1840
1985
  #
1841
- # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-HSM.html
1986
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html#working-with-HSM
1842
1987
  #
1843
1988
  # @option params [required, String] :hsm_client_certificate_identifier
1844
1989
  # The identifier to be assigned to the new HSM client certificate that
@@ -2528,6 +2673,8 @@ module Aws::Redshift
2528
2673
  # resp.cluster.availability_zone_relocation_status #=> String
2529
2674
  # resp.cluster.cluster_namespace_arn #=> String
2530
2675
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
2676
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
2677
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
2531
2678
  #
2532
2679
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
2533
2680
  #
@@ -2715,6 +2862,60 @@ module Aws::Redshift
2715
2862
  req.send_request(options)
2716
2863
  end
2717
2864
 
2865
+ # Deletes a Redshift-managed VPC endpoint.
2866
+ #
2867
+ # @option params [required, String] :endpoint_name
2868
+ # The Redshift-managed VPC endpoint to delete.
2869
+ #
2870
+ # @return [Types::EndpointAccess] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2871
+ #
2872
+ # * {Types::EndpointAccess#cluster_identifier #cluster_identifier} => String
2873
+ # * {Types::EndpointAccess#resource_owner #resource_owner} => String
2874
+ # * {Types::EndpointAccess#subnet_group_name #subnet_group_name} => String
2875
+ # * {Types::EndpointAccess#endpoint_status #endpoint_status} => String
2876
+ # * {Types::EndpointAccess#endpoint_name #endpoint_name} => String
2877
+ # * {Types::EndpointAccess#endpoint_create_time #endpoint_create_time} => Time
2878
+ # * {Types::EndpointAccess#port #port} => Integer
2879
+ # * {Types::EndpointAccess#address #address} => String
2880
+ # * {Types::EndpointAccess#vpc_security_groups #vpc_security_groups} => Array&lt;Types::VpcSecurityGroupMembership&gt;
2881
+ # * {Types::EndpointAccess#vpc_endpoint #vpc_endpoint} => Types::VpcEndpoint
2882
+ #
2883
+ # @example Request syntax with placeholder values
2884
+ #
2885
+ # resp = client.delete_endpoint_access({
2886
+ # endpoint_name: "String", # required
2887
+ # })
2888
+ #
2889
+ # @example Response structure
2890
+ #
2891
+ # resp.cluster_identifier #=> String
2892
+ # resp.resource_owner #=> String
2893
+ # resp.subnet_group_name #=> String
2894
+ # resp.endpoint_status #=> String
2895
+ # resp.endpoint_name #=> String
2896
+ # resp.endpoint_create_time #=> Time
2897
+ # resp.port #=> Integer
2898
+ # resp.address #=> String
2899
+ # resp.vpc_security_groups #=> Array
2900
+ # resp.vpc_security_groups[0].vpc_security_group_id #=> String
2901
+ # resp.vpc_security_groups[0].status #=> String
2902
+ # resp.vpc_endpoint.vpc_endpoint_id #=> String
2903
+ # resp.vpc_endpoint.vpc_id #=> String
2904
+ # resp.vpc_endpoint.network_interfaces #=> Array
2905
+ # resp.vpc_endpoint.network_interfaces[0].network_interface_id #=> String
2906
+ # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
2907
+ # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
2908
+ # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
2909
+ #
2910
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteEndpointAccess AWS API Documentation
2911
+ #
2912
+ # @overload delete_endpoint_access(params = {})
2913
+ # @param [Hash] params ({})
2914
+ def delete_endpoint_access(params = {}, options = {})
2915
+ req = build_request(:delete_endpoint_access, params)
2916
+ req.send_request(options)
2917
+ end
2918
+
2718
2919
  # Deletes an Amazon Redshift event notification subscription.
2719
2920
  #
2720
2921
  # @option params [required, String] :subscription_name
@@ -3945,6 +4146,8 @@ module Aws::Redshift
3945
4146
  # resp.clusters[0].availability_zone_relocation_status #=> String
3946
4147
  # resp.clusters[0].cluster_namespace_arn #=> String
3947
4148
  # resp.clusters[0].total_storage_capacity_in_mega_bytes #=> Integer
4149
+ # resp.clusters[0].aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
4150
+ # resp.clusters[0].aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
3948
4151
  #
3949
4152
  #
3950
4153
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4034,6 +4237,135 @@ module Aws::Redshift
4034
4237
  req.send_request(options)
4035
4238
  end
4036
4239
 
4240
+ # Describes a Redshift-managed VPC endpoint.
4241
+ #
4242
+ # @option params [String] :cluster_identifier
4243
+ # The cluster identifier associated with the described endpoint.
4244
+ #
4245
+ # @option params [String] :resource_owner
4246
+ # The AWS account ID of the owner of the cluster.
4247
+ #
4248
+ # @option params [String] :endpoint_name
4249
+ # The name of the endpoint to be described.
4250
+ #
4251
+ # @option params [String] :vpc_id
4252
+ # The virtual private cloud (VPC) identifier with access to the cluster.
4253
+ #
4254
+ # @option params [Integer] :max_records
4255
+ # Reserved for Amazon Redshift internal use.
4256
+ #
4257
+ # @option params [String] :marker
4258
+ # Reserved for Amazon Redshift internal use.
4259
+ #
4260
+ # @return [Types::EndpointAccessList] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4261
+ #
4262
+ # * {Types::EndpointAccessList#endpoint_access_list #endpoint_access_list} => Array&lt;Types::EndpointAccess&gt;
4263
+ # * {Types::EndpointAccessList#marker #marker} => String
4264
+ #
4265
+ # @example Request syntax with placeholder values
4266
+ #
4267
+ # resp = client.describe_endpoint_access({
4268
+ # cluster_identifier: "String",
4269
+ # resource_owner: "String",
4270
+ # endpoint_name: "String",
4271
+ # vpc_id: "String",
4272
+ # max_records: 1,
4273
+ # marker: "String",
4274
+ # })
4275
+ #
4276
+ # @example Response structure
4277
+ #
4278
+ # resp.endpoint_access_list #=> Array
4279
+ # resp.endpoint_access_list[0].cluster_identifier #=> String
4280
+ # resp.endpoint_access_list[0].resource_owner #=> String
4281
+ # resp.endpoint_access_list[0].subnet_group_name #=> String
4282
+ # resp.endpoint_access_list[0].endpoint_status #=> String
4283
+ # resp.endpoint_access_list[0].endpoint_name #=> String
4284
+ # resp.endpoint_access_list[0].endpoint_create_time #=> Time
4285
+ # resp.endpoint_access_list[0].port #=> Integer
4286
+ # resp.endpoint_access_list[0].address #=> String
4287
+ # resp.endpoint_access_list[0].vpc_security_groups #=> Array
4288
+ # resp.endpoint_access_list[0].vpc_security_groups[0].vpc_security_group_id #=> String
4289
+ # resp.endpoint_access_list[0].vpc_security_groups[0].status #=> String
4290
+ # resp.endpoint_access_list[0].vpc_endpoint.vpc_endpoint_id #=> String
4291
+ # resp.endpoint_access_list[0].vpc_endpoint.vpc_id #=> String
4292
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces #=> Array
4293
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].network_interface_id #=> String
4294
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].subnet_id #=> String
4295
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].private_ip_address #=> String
4296
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].availability_zone #=> String
4297
+ # resp.marker #=> String
4298
+ #
4299
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAccess AWS API Documentation
4300
+ #
4301
+ # @overload describe_endpoint_access(params = {})
4302
+ # @param [Hash] params ({})
4303
+ def describe_endpoint_access(params = {}, options = {})
4304
+ req = build_request(:describe_endpoint_access, params)
4305
+ req.send_request(options)
4306
+ end
4307
+
4308
+ # Describes an endpoint authorization.
4309
+ #
4310
+ # @option params [String] :cluster_identifier
4311
+ # The cluster identifier of the cluster to access.
4312
+ #
4313
+ # @option params [String] :account
4314
+ # The AWS account ID of either the cluster owner (grantor) or grantee.
4315
+ # If `Grantee` parameter is true, then the `Account` value is of the
4316
+ # grantor.
4317
+ #
4318
+ # @option params [Boolean] :grantee
4319
+ # Indicates whether to check authorization from a grantor or grantee
4320
+ # point of view. If true, Amazon Redshift returns endpoint
4321
+ # authorizations that you've been granted. If false (default), checks
4322
+ # authorization from a grantor point of view.
4323
+ #
4324
+ # @option params [Integer] :max_records
4325
+ # Reserved for Amazon Redshift internal use.
4326
+ #
4327
+ # @option params [String] :marker
4328
+ # Reserved for Amazon Redshift internal use.
4329
+ #
4330
+ # @return [Types::EndpointAuthorizationList] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4331
+ #
4332
+ # * {Types::EndpointAuthorizationList#endpoint_authorization_list #endpoint_authorization_list} => Array&lt;Types::EndpointAuthorization&gt;
4333
+ # * {Types::EndpointAuthorizationList#marker #marker} => String
4334
+ #
4335
+ # @example Request syntax with placeholder values
4336
+ #
4337
+ # resp = client.describe_endpoint_authorization({
4338
+ # cluster_identifier: "String",
4339
+ # account: "String",
4340
+ # grantee: false,
4341
+ # max_records: 1,
4342
+ # marker: "String",
4343
+ # })
4344
+ #
4345
+ # @example Response structure
4346
+ #
4347
+ # resp.endpoint_authorization_list #=> Array
4348
+ # resp.endpoint_authorization_list[0].grantor #=> String
4349
+ # resp.endpoint_authorization_list[0].grantee #=> String
4350
+ # resp.endpoint_authorization_list[0].cluster_identifier #=> String
4351
+ # resp.endpoint_authorization_list[0].authorize_time #=> Time
4352
+ # resp.endpoint_authorization_list[0].cluster_status #=> String
4353
+ # resp.endpoint_authorization_list[0].status #=> String, one of "Authorized", "Revoking"
4354
+ # resp.endpoint_authorization_list[0].allowed_all_vp_cs #=> Boolean
4355
+ # resp.endpoint_authorization_list[0].allowed_vp_cs #=> Array
4356
+ # resp.endpoint_authorization_list[0].allowed_vp_cs[0] #=> String
4357
+ # resp.endpoint_authorization_list[0].endpoint_count #=> Integer
4358
+ # resp.marker #=> String
4359
+ #
4360
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAuthorization AWS API Documentation
4361
+ #
4362
+ # @overload describe_endpoint_authorization(params = {})
4363
+ # @param [Hash] params ({})
4364
+ def describe_endpoint_authorization(params = {}, options = {})
4365
+ req = build_request(:describe_endpoint_authorization, params)
4366
+ req.send_request(options)
4367
+ end
4368
+
4037
4369
  # Displays a list of event categories for all event source types, or for
4038
4370
  # a specified source type. For a list of the event categories and source
4039
4371
  # types, go to [Amazon Redshift Event Notifications][1].
@@ -5711,6 +6043,8 @@ module Aws::Redshift
5711
6043
  # resp.cluster.availability_zone_relocation_status #=> String
5712
6044
  # resp.cluster.cluster_namespace_arn #=> String
5713
6045
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6046
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
6047
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
5714
6048
  #
5715
6049
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
5716
6050
  #
@@ -5956,6 +6290,8 @@ module Aws::Redshift
5956
6290
  # resp.cluster.availability_zone_relocation_status #=> String
5957
6291
  # resp.cluster.cluster_namespace_arn #=> String
5958
6292
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6293
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
6294
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
5959
6295
  #
5960
6296
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
5961
6297
  #
@@ -6181,6 +6517,47 @@ module Aws::Redshift
6181
6517
  req.send_request(options)
6182
6518
  end
6183
6519
 
6520
+ # Modifies whether a cluster can use AQUA (Advanced Query Accelerator).
6521
+ #
6522
+ # @option params [required, String] :cluster_identifier
6523
+ # The identifier of the cluster to be modified.
6524
+ #
6525
+ # @option params [String] :aqua_configuration_status
6526
+ # The new value of AQUA configuration status. Possible values include
6527
+ # the following.
6528
+ #
6529
+ # * enabled - Use AQUA if it is available for the current AWS Region and
6530
+ # Amazon Redshift node type.
6531
+ #
6532
+ # * disabled - Don't use AQUA.
6533
+ #
6534
+ # * auto - Amazon Redshift determines whether to use AQUA.
6535
+ #
6536
+ # @return [Types::ModifyAquaOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6537
+ #
6538
+ # * {Types::ModifyAquaOutputMessage#aqua_configuration #aqua_configuration} => Types::AquaConfiguration
6539
+ #
6540
+ # @example Request syntax with placeholder values
6541
+ #
6542
+ # resp = client.modify_aqua_configuration({
6543
+ # cluster_identifier: "String", # required
6544
+ # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
6545
+ # })
6546
+ #
6547
+ # @example Response structure
6548
+ #
6549
+ # resp.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
6550
+ # resp.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
6551
+ #
6552
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaConfiguration AWS API Documentation
6553
+ #
6554
+ # @overload modify_aqua_configuration(params = {})
6555
+ # @param [Hash] params ({})
6556
+ def modify_aqua_configuration(params = {}, options = {})
6557
+ req = build_request(:modify_aqua_configuration, params)
6558
+ req.send_request(options)
6559
+ end
6560
+
6184
6561
  # Modifies the settings for a cluster.
6185
6562
  #
6186
6563
  # You can also change node type and the number of nodes to scale up or
@@ -6604,6 +6981,8 @@ module Aws::Redshift
6604
6981
  # resp.cluster.availability_zone_relocation_status #=> String
6605
6982
  # resp.cluster.cluster_namespace_arn #=> String
6606
6983
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6984
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
6985
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
6607
6986
  #
6608
6987
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
6609
6988
  #
@@ -6746,6 +7125,8 @@ module Aws::Redshift
6746
7125
  # resp.cluster.availability_zone_relocation_status #=> String
6747
7126
  # resp.cluster.cluster_namespace_arn #=> String
6748
7127
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7128
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
7129
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
6749
7130
  #
6750
7131
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
6751
7132
  #
@@ -6895,6 +7276,8 @@ module Aws::Redshift
6895
7276
  # resp.cluster.availability_zone_relocation_status #=> String
6896
7277
  # resp.cluster.cluster_namespace_arn #=> String
6897
7278
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7279
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
7280
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
6898
7281
  #
6899
7282
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
6900
7283
  #
@@ -7053,6 +7436,8 @@ module Aws::Redshift
7053
7436
  # resp.cluster.availability_zone_relocation_status #=> String
7054
7437
  # resp.cluster.cluster_namespace_arn #=> String
7055
7438
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7439
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
7440
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
7056
7441
  #
7057
7442
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
7058
7443
  #
@@ -7293,6 +7678,65 @@ module Aws::Redshift
7293
7678
  req.send_request(options)
7294
7679
  end
7295
7680
 
7681
+ # Modifies a Redshift-managed VPC endpoint.
7682
+ #
7683
+ # @option params [required, String] :endpoint_name
7684
+ # The endpoint to be modified.
7685
+ #
7686
+ # @option params [Array<String>] :vpc_security_group_ids
7687
+ # The complete list of VPC security groups associated with the endpoint
7688
+ # after the endpoint is modified.
7689
+ #
7690
+ # @return [Types::EndpointAccess] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7691
+ #
7692
+ # * {Types::EndpointAccess#cluster_identifier #cluster_identifier} => String
7693
+ # * {Types::EndpointAccess#resource_owner #resource_owner} => String
7694
+ # * {Types::EndpointAccess#subnet_group_name #subnet_group_name} => String
7695
+ # * {Types::EndpointAccess#endpoint_status #endpoint_status} => String
7696
+ # * {Types::EndpointAccess#endpoint_name #endpoint_name} => String
7697
+ # * {Types::EndpointAccess#endpoint_create_time #endpoint_create_time} => Time
7698
+ # * {Types::EndpointAccess#port #port} => Integer
7699
+ # * {Types::EndpointAccess#address #address} => String
7700
+ # * {Types::EndpointAccess#vpc_security_groups #vpc_security_groups} => Array&lt;Types::VpcSecurityGroupMembership&gt;
7701
+ # * {Types::EndpointAccess#vpc_endpoint #vpc_endpoint} => Types::VpcEndpoint
7702
+ #
7703
+ # @example Request syntax with placeholder values
7704
+ #
7705
+ # resp = client.modify_endpoint_access({
7706
+ # endpoint_name: "String", # required
7707
+ # vpc_security_group_ids: ["String"],
7708
+ # })
7709
+ #
7710
+ # @example Response structure
7711
+ #
7712
+ # resp.cluster_identifier #=> String
7713
+ # resp.resource_owner #=> String
7714
+ # resp.subnet_group_name #=> String
7715
+ # resp.endpoint_status #=> String
7716
+ # resp.endpoint_name #=> String
7717
+ # resp.endpoint_create_time #=> Time
7718
+ # resp.port #=> Integer
7719
+ # resp.address #=> String
7720
+ # resp.vpc_security_groups #=> Array
7721
+ # resp.vpc_security_groups[0].vpc_security_group_id #=> String
7722
+ # resp.vpc_security_groups[0].status #=> String
7723
+ # resp.vpc_endpoint.vpc_endpoint_id #=> String
7724
+ # resp.vpc_endpoint.vpc_id #=> String
7725
+ # resp.vpc_endpoint.network_interfaces #=> Array
7726
+ # resp.vpc_endpoint.network_interfaces[0].network_interface_id #=> String
7727
+ # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
7728
+ # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
7729
+ # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
7730
+ #
7731
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyEndpointAccess AWS API Documentation
7732
+ #
7733
+ # @overload modify_endpoint_access(params = {})
7734
+ # @param [Hash] params ({})
7735
+ def modify_endpoint_access(params = {}, options = {})
7736
+ req = build_request(:modify_endpoint_access, params)
7737
+ req.send_request(options)
7738
+ end
7739
+
7296
7740
  # Modifies an existing Amazon Redshift event notification subscription.
7297
7741
  #
7298
7742
  # @option params [required, String] :subscription_name
@@ -7647,6 +8091,8 @@ module Aws::Redshift
7647
8091
  # resp.cluster.availability_zone_relocation_status #=> String
7648
8092
  # resp.cluster.cluster_namespace_arn #=> String
7649
8093
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8094
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
8095
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
7650
8096
  #
7651
8097
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
7652
8098
  #
@@ -7888,6 +8334,8 @@ module Aws::Redshift
7888
8334
  # resp.cluster.availability_zone_relocation_status #=> String
7889
8335
  # resp.cluster.cluster_namespace_arn #=> String
7890
8336
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8337
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
8338
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
7891
8339
  #
7892
8340
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
7893
8341
  #
@@ -8092,6 +8540,8 @@ module Aws::Redshift
8092
8540
  # resp.cluster.availability_zone_relocation_status #=> String
8093
8541
  # resp.cluster.cluster_namespace_arn #=> String
8094
8542
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8543
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
8544
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
8095
8545
  #
8096
8546
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
8097
8547
  #
@@ -8335,6 +8785,8 @@ module Aws::Redshift
8335
8785
  # resp.cluster.availability_zone_relocation_status #=> String
8336
8786
  # resp.cluster.cluster_namespace_arn #=> String
8337
8787
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8788
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
8789
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
8338
8790
  #
8339
8791
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
8340
8792
  #
@@ -8587,6 +9039,18 @@ module Aws::Redshift
8587
9039
  # The option to enable relocation for an Amazon Redshift cluster between
8588
9040
  # Availability Zones after the cluster is restored.
8589
9041
  #
9042
+ # @option params [String] :aqua_configuration_status
9043
+ # The value represents how the cluster is configured to use AQUA
9044
+ # (Advanced Query Accelerator) after the cluster is restored. Possible
9045
+ # values include the following.
9046
+ #
9047
+ # * enabled - Use AQUA if it is available for the current AWS Region and
9048
+ # Amazon Redshift node type.
9049
+ #
9050
+ # * disabled - Don't use AQUA.
9051
+ #
9052
+ # * auto - Amazon Redshift determines whether to use AQUA.
9053
+ #
8590
9054
  # @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8591
9055
  #
8592
9056
  # * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
@@ -8621,6 +9085,7 @@ module Aws::Redshift
8621
9085
  # snapshot_schedule_identifier: "String",
8622
9086
  # number_of_nodes: 1,
8623
9087
  # availability_zone_relocation: false,
9088
+ # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
8624
9089
  # })
8625
9090
  #
8626
9091
  # @example Response structure
@@ -8731,6 +9196,8 @@ module Aws::Redshift
8731
9196
  # resp.cluster.availability_zone_relocation_status #=> String
8732
9197
  # resp.cluster.cluster_namespace_arn #=> String
8733
9198
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
9199
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
9200
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
8734
9201
  #
8735
9202
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
8736
9203
  #
@@ -8785,6 +9252,11 @@ module Aws::Redshift
8785
9252
  # @option params [required, String] :new_table_name
8786
9253
  # The name of the table to create as a result of the current request.
8787
9254
  #
9255
+ # @option params [Boolean] :enable_case_sensitive_identifier
9256
+ # Indicates whether name identifiers for database, schema, and table are
9257
+ # case sensitive. If `true`, the names are case sensitive. If `false`
9258
+ # (default), the names are not case sensitive.
9259
+ #
8788
9260
  # @return [Types::RestoreTableFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8789
9261
  #
8790
9262
  # * {Types::RestoreTableFromClusterSnapshotResult#table_restore_status #table_restore_status} => Types::TableRestoreStatus
@@ -8800,6 +9272,7 @@ module Aws::Redshift
8800
9272
  # target_database_name: "String",
8801
9273
  # target_schema_name: "String",
8802
9274
  # new_table_name: "String", # required
9275
+ # enable_case_sensitive_identifier: false,
8803
9276
  # })
8804
9277
  #
8805
9278
  # @example Response structure
@@ -8951,6 +9424,8 @@ module Aws::Redshift
8951
9424
  # resp.cluster.availability_zone_relocation_status #=> String
8952
9425
  # resp.cluster.cluster_namespace_arn #=> String
8953
9426
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
9427
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
9428
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
8954
9429
  #
8955
9430
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
8956
9431
  #
@@ -9038,6 +9513,66 @@ module Aws::Redshift
9038
9513
  req.send_request(options)
9039
9514
  end
9040
9515
 
9516
+ # Revokes access to a cluster.
9517
+ #
9518
+ # @option params [String] :cluster_identifier
9519
+ # The cluster to revoke access from.
9520
+ #
9521
+ # @option params [String] :account
9522
+ # The AWS account ID whose access is to be revoked.
9523
+ #
9524
+ # @option params [Array<String>] :vpc_ids
9525
+ # The virtual private cloud (VPC) identifiers for which access is to be
9526
+ # revoked.
9527
+ #
9528
+ # @option params [Boolean] :force
9529
+ # Indicates whether to force the revoke action. If true, the
9530
+ # Redshift-managed VPC endpoints associated with the endpoint
9531
+ # authorization are also deleted.
9532
+ #
9533
+ # @return [Types::EndpointAuthorization] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9534
+ #
9535
+ # * {Types::EndpointAuthorization#grantor #grantor} => String
9536
+ # * {Types::EndpointAuthorization#grantee #grantee} => String
9537
+ # * {Types::EndpointAuthorization#cluster_identifier #cluster_identifier} => String
9538
+ # * {Types::EndpointAuthorization#authorize_time #authorize_time} => Time
9539
+ # * {Types::EndpointAuthorization#cluster_status #cluster_status} => String
9540
+ # * {Types::EndpointAuthorization#status #status} => String
9541
+ # * {Types::EndpointAuthorization#allowed_all_vp_cs #allowed_all_vp_cs} => Boolean
9542
+ # * {Types::EndpointAuthorization#allowed_vp_cs #allowed_vp_cs} => Array&lt;String&gt;
9543
+ # * {Types::EndpointAuthorization#endpoint_count #endpoint_count} => Integer
9544
+ #
9545
+ # @example Request syntax with placeholder values
9546
+ #
9547
+ # resp = client.revoke_endpoint_access({
9548
+ # cluster_identifier: "String",
9549
+ # account: "String",
9550
+ # vpc_ids: ["String"],
9551
+ # force: false,
9552
+ # })
9553
+ #
9554
+ # @example Response structure
9555
+ #
9556
+ # resp.grantor #=> String
9557
+ # resp.grantee #=> String
9558
+ # resp.cluster_identifier #=> String
9559
+ # resp.authorize_time #=> Time
9560
+ # resp.cluster_status #=> String
9561
+ # resp.status #=> String, one of "Authorized", "Revoking"
9562
+ # resp.allowed_all_vp_cs #=> Boolean
9563
+ # resp.allowed_vp_cs #=> Array
9564
+ # resp.allowed_vp_cs[0] #=> String
9565
+ # resp.endpoint_count #=> Integer
9566
+ #
9567
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RevokeEndpointAccess AWS API Documentation
9568
+ #
9569
+ # @overload revoke_endpoint_access(params = {})
9570
+ # @param [Hash] params ({})
9571
+ def revoke_endpoint_access(params = {}, options = {})
9572
+ req = build_request(:revoke_endpoint_access, params)
9573
+ req.send_request(options)
9574
+ end
9575
+
9041
9576
  # Removes the ability of the specified AWS customer account to restore
9042
9577
  # the specified snapshot. If the account is currently restoring the
9043
9578
  # snapshot, the restore will run to completion.
@@ -9253,6 +9788,8 @@ module Aws::Redshift
9253
9788
  # resp.cluster.availability_zone_relocation_status #=> String
9254
9789
  # resp.cluster.cluster_namespace_arn #=> String
9255
9790
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
9791
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
9792
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
9256
9793
  #
9257
9794
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
9258
9795
  #
@@ -9276,7 +9813,7 @@ module Aws::Redshift
9276
9813
  params: params,
9277
9814
  config: config)
9278
9815
  context[:gem_name] = 'aws-sdk-redshift'
9279
- context[:gem_version] = '1.56.0'
9816
+ context[:gem_version] = '1.61.0'
9280
9817
  Seahorse::Client::Request.new(handlers, context)
9281
9818
  end
9282
9819