aws-sdk-redshift 1.55.0 → 1.60.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: 24789b1423259e797e0be1b39aafc7db8e00b74116213f130fa509f18afede72
4
- data.tar.gz: '0388d8800d2c7362634132a50dd35c4de983f292565659af7f732b10aa7f8775'
3
+ metadata.gz: 98db7e14a5b9e72a572371999cf9b56d73931877bcd29fbfe75c60887f12c2d1
4
+ data.tar.gz: e842c60aac3b0329835c3c66b2f653ee03459c12bbc9190759aea32df70bee09
5
5
  SHA512:
6
- metadata.gz: 15d0c8ffa61800c8c1f994ec84eaaeba5e78c8b8f31af8a22898e698df689955eedae2d3ea90dce979a98841d3fae517a7391eb7fcb74cd0700b18f60dac2f79
7
- data.tar.gz: '09687bf8821f620305c53f07b4cbc5eb940a53e97cb6aae8e80adc7a1de466fe58dc5e71d0d91da29bd36e45ce8458584a274ad7bb24e0addf791a034a14fa75'
6
+ metadata.gz: 81b958efc0e7fe96bac8370d88b94f3e0e1289118adce4f8ab909aa4c95973c083d15b729874976784425693aaf6e25c71c6a1e61ba406d7cfdc649bc74057c3
7
+ data.tar.gz: 67ed91fdb7da473cb5cd4f5d8d0c174eda2d65d1127605524e95dbf2621079a6db64eb4d97dafbb73b2a9d8a977f70a2a01acaa30f9cc56791fb16df91516789
data/CHANGELOG.md CHANGED
@@ -1,6 +1,31 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2021-04-09)
5
+ ------------------
6
+
7
+ * Feature - Add support for case sensitive table level restore
8
+
9
+ 1.59.0 (2021-03-31)
10
+ ------------------
11
+
12
+ * Feature - Enable customers to share access to their Redshift clusters from other VPCs (including VPCs from other accounts).
13
+
14
+ 1.58.0 (2021-03-23)
15
+ ------------------
16
+
17
+ * Feature - Removed APIs to control AQUA on clusters.
18
+
19
+ 1.57.0 (2021-03-22)
20
+ ------------------
21
+
22
+ * Feature - Added support to enable AQUA in Amazon Redshift clusters.
23
+
24
+ 1.56.0 (2021-03-18)
25
+ ------------------
26
+
27
+ * Feature - Add new fields for additional information about VPC endpoint for clusters with reallocation enabled, and a new field for total storage capacity for all clusters.
28
+
4
29
  1.55.0 (2021-03-10)
5
30
  ------------------
6
31
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.60.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.55.0'
52
+ GEM_VERSION = '1.60.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
  #
@@ -1030,6 +1083,9 @@ module Aws::Redshift
1030
1083
  # are disabled, you can still create manual snapshots when you want with
1031
1084
  # CreateClusterSnapshot.
1032
1085
  #
1086
+ # You can't disable automated snapshots for RA3 node types. Set the
1087
+ # automated retention period from 1-35 days.
1088
+ #
1033
1089
  # Default: `1`
1034
1090
  #
1035
1091
  # Constraints: Must be a value from 0 to 35.
@@ -1227,6 +1283,12 @@ module Aws::Redshift
1227
1283
  # resp.cluster.endpoint.port #=> Integer
1228
1284
  # resp.cluster.endpoint.vpc_endpoints #=> Array
1229
1285
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
1286
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
1287
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
1288
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
1289
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
1290
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
1291
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
1230
1292
  # resp.cluster.cluster_create_time #=> Time
1231
1293
  # resp.cluster.automated_snapshot_retention_period #=> Integer
1232
1294
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -1315,6 +1377,7 @@ module Aws::Redshift
1315
1377
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
1316
1378
  # resp.cluster.availability_zone_relocation_status #=> String
1317
1379
  # resp.cluster.cluster_namespace_arn #=> String
1380
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
1318
1381
  #
1319
1382
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
1320
1383
  #
@@ -1682,6 +1745,83 @@ module Aws::Redshift
1682
1745
  req.send_request(options)
1683
1746
  end
1684
1747
 
1748
+ # Creates a Redshift-managed VPC endpoint.
1749
+ #
1750
+ # @option params [String] :cluster_identifier
1751
+ # The cluster identifier of the cluster to access.
1752
+ #
1753
+ # @option params [String] :resource_owner
1754
+ # The AWS account ID of the owner of the cluster. This is only required
1755
+ # if the cluster is in another AWS account.
1756
+ #
1757
+ # @option params [required, String] :endpoint_name
1758
+ # The Redshift-managed VPC endpoint name.
1759
+ #
1760
+ # An endpoint name must contain 1-30 characters. Valid characters are
1761
+ # A-Z, a-z, 0-9, and hyphen(-). The first character must be a letter.
1762
+ # The name can't contain two consecutive hyphens or end with a hyphen.
1763
+ #
1764
+ # @option params [required, String] :subnet_group_name
1765
+ # The subnet group from which Amazon Redshift chooses the subnet to
1766
+ # deploy the endpoint.
1767
+ #
1768
+ # @option params [Array<String>] :vpc_security_group_ids
1769
+ # The security group that defines the ports, protocols, and sources for
1770
+ # inbound traffic that you are authorizing into your endpoint.
1771
+ #
1772
+ # @return [Types::EndpointAccess] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1773
+ #
1774
+ # * {Types::EndpointAccess#cluster_identifier #cluster_identifier} => String
1775
+ # * {Types::EndpointAccess#resource_owner #resource_owner} => String
1776
+ # * {Types::EndpointAccess#subnet_group_name #subnet_group_name} => String
1777
+ # * {Types::EndpointAccess#endpoint_status #endpoint_status} => String
1778
+ # * {Types::EndpointAccess#endpoint_name #endpoint_name} => String
1779
+ # * {Types::EndpointAccess#endpoint_create_time #endpoint_create_time} => Time
1780
+ # * {Types::EndpointAccess#port #port} => Integer
1781
+ # * {Types::EndpointAccess#address #address} => String
1782
+ # * {Types::EndpointAccess#vpc_security_groups #vpc_security_groups} => Array&lt;Types::VpcSecurityGroupMembership&gt;
1783
+ # * {Types::EndpointAccess#vpc_endpoint #vpc_endpoint} => Types::VpcEndpoint
1784
+ #
1785
+ # @example Request syntax with placeholder values
1786
+ #
1787
+ # resp = client.create_endpoint_access({
1788
+ # cluster_identifier: "String",
1789
+ # resource_owner: "String",
1790
+ # endpoint_name: "String", # required
1791
+ # subnet_group_name: "String", # required
1792
+ # vpc_security_group_ids: ["String"],
1793
+ # })
1794
+ #
1795
+ # @example Response structure
1796
+ #
1797
+ # resp.cluster_identifier #=> String
1798
+ # resp.resource_owner #=> String
1799
+ # resp.subnet_group_name #=> String
1800
+ # resp.endpoint_status #=> String
1801
+ # resp.endpoint_name #=> String
1802
+ # resp.endpoint_create_time #=> Time
1803
+ # resp.port #=> Integer
1804
+ # resp.address #=> String
1805
+ # resp.vpc_security_groups #=> Array
1806
+ # resp.vpc_security_groups[0].vpc_security_group_id #=> String
1807
+ # resp.vpc_security_groups[0].status #=> String
1808
+ # resp.vpc_endpoint.vpc_endpoint_id #=> String
1809
+ # resp.vpc_endpoint.vpc_id #=> String
1810
+ # resp.vpc_endpoint.network_interfaces #=> Array
1811
+ # resp.vpc_endpoint.network_interfaces[0].network_interface_id #=> String
1812
+ # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
1813
+ # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
1814
+ # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
1815
+ #
1816
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateEndpointAccess AWS API Documentation
1817
+ #
1818
+ # @overload create_endpoint_access(params = {})
1819
+ # @param [Hash] params ({})
1820
+ def create_endpoint_access(params = {}, options = {})
1821
+ req = build_request(:create_endpoint_access, params)
1822
+ req.send_request(options)
1823
+ end
1824
+
1685
1825
  # Creates an Amazon Redshift event notification subscription. This
1686
1826
  # action requires an ARN (Amazon Resource Name) of an Amazon SNS topic
1687
1827
  # created by either the Amazon Redshift console, the Amazon SNS console,
@@ -1823,12 +1963,12 @@ module Aws::Redshift
1823
1963
  # addition to creating the HSM certificate, you must create an Amazon
1824
1964
  # Redshift HSM configuration that provides a cluster the information
1825
1965
  # needed to store and use encryption keys in the HSM. For more
1826
- # information, go to [Hardware Security Modules][1] in the Amazon
1827
- # Redshift Cluster Management Guide.
1966
+ # information, go to [Hardware Security Modules][1] in the *Amazon
1967
+ # Redshift Cluster Management Guide*.
1828
1968
  #
1829
1969
  #
1830
1970
  #
1831
- # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-HSM.html
1971
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html#working-with-HSM
1832
1972
  #
1833
1973
  # @option params [required, String] :hsm_client_certificate_identifier
1834
1974
  # The identifier to be assigned to the new HSM client certificate that
@@ -2423,6 +2563,12 @@ module Aws::Redshift
2423
2563
  # resp.cluster.endpoint.port #=> Integer
2424
2564
  # resp.cluster.endpoint.vpc_endpoints #=> Array
2425
2565
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
2566
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
2567
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
2568
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
2569
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
2570
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
2571
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
2426
2572
  # resp.cluster.cluster_create_time #=> Time
2427
2573
  # resp.cluster.automated_snapshot_retention_period #=> Integer
2428
2574
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -2511,6 +2657,7 @@ module Aws::Redshift
2511
2657
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
2512
2658
  # resp.cluster.availability_zone_relocation_status #=> String
2513
2659
  # resp.cluster.cluster_namespace_arn #=> String
2660
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
2514
2661
  #
2515
2662
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
2516
2663
  #
@@ -2698,6 +2845,60 @@ module Aws::Redshift
2698
2845
  req.send_request(options)
2699
2846
  end
2700
2847
 
2848
+ # Deletes a Redshift-managed VPC endpoint.
2849
+ #
2850
+ # @option params [required, String] :endpoint_name
2851
+ # The Redshift-managed VPC endpoint to delete.
2852
+ #
2853
+ # @return [Types::EndpointAccess] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2854
+ #
2855
+ # * {Types::EndpointAccess#cluster_identifier #cluster_identifier} => String
2856
+ # * {Types::EndpointAccess#resource_owner #resource_owner} => String
2857
+ # * {Types::EndpointAccess#subnet_group_name #subnet_group_name} => String
2858
+ # * {Types::EndpointAccess#endpoint_status #endpoint_status} => String
2859
+ # * {Types::EndpointAccess#endpoint_name #endpoint_name} => String
2860
+ # * {Types::EndpointAccess#endpoint_create_time #endpoint_create_time} => Time
2861
+ # * {Types::EndpointAccess#port #port} => Integer
2862
+ # * {Types::EndpointAccess#address #address} => String
2863
+ # * {Types::EndpointAccess#vpc_security_groups #vpc_security_groups} => Array&lt;Types::VpcSecurityGroupMembership&gt;
2864
+ # * {Types::EndpointAccess#vpc_endpoint #vpc_endpoint} => Types::VpcEndpoint
2865
+ #
2866
+ # @example Request syntax with placeholder values
2867
+ #
2868
+ # resp = client.delete_endpoint_access({
2869
+ # endpoint_name: "String", # required
2870
+ # })
2871
+ #
2872
+ # @example Response structure
2873
+ #
2874
+ # resp.cluster_identifier #=> String
2875
+ # resp.resource_owner #=> String
2876
+ # resp.subnet_group_name #=> String
2877
+ # resp.endpoint_status #=> String
2878
+ # resp.endpoint_name #=> String
2879
+ # resp.endpoint_create_time #=> Time
2880
+ # resp.port #=> Integer
2881
+ # resp.address #=> String
2882
+ # resp.vpc_security_groups #=> Array
2883
+ # resp.vpc_security_groups[0].vpc_security_group_id #=> String
2884
+ # resp.vpc_security_groups[0].status #=> String
2885
+ # resp.vpc_endpoint.vpc_endpoint_id #=> String
2886
+ # resp.vpc_endpoint.vpc_id #=> String
2887
+ # resp.vpc_endpoint.network_interfaces #=> Array
2888
+ # resp.vpc_endpoint.network_interfaces[0].network_interface_id #=> String
2889
+ # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
2890
+ # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
2891
+ # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
2892
+ #
2893
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteEndpointAccess AWS API Documentation
2894
+ #
2895
+ # @overload delete_endpoint_access(params = {})
2896
+ # @param [Hash] params ({})
2897
+ def delete_endpoint_access(params = {}, options = {})
2898
+ req = build_request(:delete_endpoint_access, params)
2899
+ req.send_request(options)
2900
+ end
2901
+
2701
2902
  # Deletes an Amazon Redshift event notification subscription.
2702
2903
  #
2703
2904
  # @option params [required, String] :subscription_name
@@ -3833,6 +4034,12 @@ module Aws::Redshift
3833
4034
  # resp.clusters[0].endpoint.port #=> Integer
3834
4035
  # resp.clusters[0].endpoint.vpc_endpoints #=> Array
3835
4036
  # resp.clusters[0].endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
4037
+ # resp.clusters[0].endpoint.vpc_endpoints[0].vpc_id #=> String
4038
+ # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces #=> Array
4039
+ # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
4040
+ # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
4041
+ # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
4042
+ # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
3836
4043
  # resp.clusters[0].cluster_create_time #=> Time
3837
4044
  # resp.clusters[0].automated_snapshot_retention_period #=> Integer
3838
4045
  # resp.clusters[0].manual_snapshot_retention_period #=> Integer
@@ -3921,6 +4128,7 @@ module Aws::Redshift
3921
4128
  # resp.clusters[0].resize_info.allow_cancel_resize #=> Boolean
3922
4129
  # resp.clusters[0].availability_zone_relocation_status #=> String
3923
4130
  # resp.clusters[0].cluster_namespace_arn #=> String
4131
+ # resp.clusters[0].total_storage_capacity_in_mega_bytes #=> Integer
3924
4132
  #
3925
4133
  #
3926
4134
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4010,6 +4218,135 @@ module Aws::Redshift
4010
4218
  req.send_request(options)
4011
4219
  end
4012
4220
 
4221
+ # Describes a Redshift-managed VPC endpoint.
4222
+ #
4223
+ # @option params [String] :cluster_identifier
4224
+ # The cluster identifier associated with the described endpoint.
4225
+ #
4226
+ # @option params [String] :resource_owner
4227
+ # The AWS account ID of the owner of the cluster.
4228
+ #
4229
+ # @option params [String] :endpoint_name
4230
+ # The name of the endpoint to be described.
4231
+ #
4232
+ # @option params [String] :vpc_id
4233
+ # The virtual private cloud (VPC) identifier with access to the cluster.
4234
+ #
4235
+ # @option params [Integer] :max_records
4236
+ # Reserved for Amazon Redshift internal use.
4237
+ #
4238
+ # @option params [String] :marker
4239
+ # Reserved for Amazon Redshift internal use.
4240
+ #
4241
+ # @return [Types::EndpointAccessList] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4242
+ #
4243
+ # * {Types::EndpointAccessList#endpoint_access_list #endpoint_access_list} => Array&lt;Types::EndpointAccess&gt;
4244
+ # * {Types::EndpointAccessList#marker #marker} => String
4245
+ #
4246
+ # @example Request syntax with placeholder values
4247
+ #
4248
+ # resp = client.describe_endpoint_access({
4249
+ # cluster_identifier: "String",
4250
+ # resource_owner: "String",
4251
+ # endpoint_name: "String",
4252
+ # vpc_id: "String",
4253
+ # max_records: 1,
4254
+ # marker: "String",
4255
+ # })
4256
+ #
4257
+ # @example Response structure
4258
+ #
4259
+ # resp.endpoint_access_list #=> Array
4260
+ # resp.endpoint_access_list[0].cluster_identifier #=> String
4261
+ # resp.endpoint_access_list[0].resource_owner #=> String
4262
+ # resp.endpoint_access_list[0].subnet_group_name #=> String
4263
+ # resp.endpoint_access_list[0].endpoint_status #=> String
4264
+ # resp.endpoint_access_list[0].endpoint_name #=> String
4265
+ # resp.endpoint_access_list[0].endpoint_create_time #=> Time
4266
+ # resp.endpoint_access_list[0].port #=> Integer
4267
+ # resp.endpoint_access_list[0].address #=> String
4268
+ # resp.endpoint_access_list[0].vpc_security_groups #=> Array
4269
+ # resp.endpoint_access_list[0].vpc_security_groups[0].vpc_security_group_id #=> String
4270
+ # resp.endpoint_access_list[0].vpc_security_groups[0].status #=> String
4271
+ # resp.endpoint_access_list[0].vpc_endpoint.vpc_endpoint_id #=> String
4272
+ # resp.endpoint_access_list[0].vpc_endpoint.vpc_id #=> String
4273
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces #=> Array
4274
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].network_interface_id #=> String
4275
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].subnet_id #=> String
4276
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].private_ip_address #=> String
4277
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].availability_zone #=> String
4278
+ # resp.marker #=> String
4279
+ #
4280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAccess AWS API Documentation
4281
+ #
4282
+ # @overload describe_endpoint_access(params = {})
4283
+ # @param [Hash] params ({})
4284
+ def describe_endpoint_access(params = {}, options = {})
4285
+ req = build_request(:describe_endpoint_access, params)
4286
+ req.send_request(options)
4287
+ end
4288
+
4289
+ # Describes an endpoint authorization.
4290
+ #
4291
+ # @option params [String] :cluster_identifier
4292
+ # The cluster identifier of the cluster to access.
4293
+ #
4294
+ # @option params [String] :account
4295
+ # The AWS account ID of either the cluster owner (grantor) or grantee.
4296
+ # If `Grantee` parameter is true, then the `Account` value is of the
4297
+ # grantor.
4298
+ #
4299
+ # @option params [Boolean] :grantee
4300
+ # Indicates whether to check authorization from a grantor or grantee
4301
+ # point of view. If true, Amazon Redshift returns endpoint
4302
+ # authorizations that you've been granted. If false (default), checks
4303
+ # authorization from a grantor point of view.
4304
+ #
4305
+ # @option params [Integer] :max_records
4306
+ # Reserved for Amazon Redshift internal use.
4307
+ #
4308
+ # @option params [String] :marker
4309
+ # Reserved for Amazon Redshift internal use.
4310
+ #
4311
+ # @return [Types::EndpointAuthorizationList] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4312
+ #
4313
+ # * {Types::EndpointAuthorizationList#endpoint_authorization_list #endpoint_authorization_list} => Array&lt;Types::EndpointAuthorization&gt;
4314
+ # * {Types::EndpointAuthorizationList#marker #marker} => String
4315
+ #
4316
+ # @example Request syntax with placeholder values
4317
+ #
4318
+ # resp = client.describe_endpoint_authorization({
4319
+ # cluster_identifier: "String",
4320
+ # account: "String",
4321
+ # grantee: false,
4322
+ # max_records: 1,
4323
+ # marker: "String",
4324
+ # })
4325
+ #
4326
+ # @example Response structure
4327
+ #
4328
+ # resp.endpoint_authorization_list #=> Array
4329
+ # resp.endpoint_authorization_list[0].grantor #=> String
4330
+ # resp.endpoint_authorization_list[0].grantee #=> String
4331
+ # resp.endpoint_authorization_list[0].cluster_identifier #=> String
4332
+ # resp.endpoint_authorization_list[0].authorize_time #=> Time
4333
+ # resp.endpoint_authorization_list[0].cluster_status #=> String
4334
+ # resp.endpoint_authorization_list[0].status #=> String, one of "Authorized", "Revoking"
4335
+ # resp.endpoint_authorization_list[0].allowed_all_vp_cs #=> Boolean
4336
+ # resp.endpoint_authorization_list[0].allowed_vp_cs #=> Array
4337
+ # resp.endpoint_authorization_list[0].allowed_vp_cs[0] #=> String
4338
+ # resp.endpoint_authorization_list[0].endpoint_count #=> Integer
4339
+ # resp.marker #=> String
4340
+ #
4341
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAuthorization AWS API Documentation
4342
+ #
4343
+ # @overload describe_endpoint_authorization(params = {})
4344
+ # @param [Hash] params ({})
4345
+ def describe_endpoint_authorization(params = {}, options = {})
4346
+ req = build_request(:describe_endpoint_authorization, params)
4347
+ req.send_request(options)
4348
+ end
4349
+
4013
4350
  # Displays a list of event categories for all event source types, or for
4014
4351
  # a specified source type. For a list of the event categories and source
4015
4352
  # types, go to [Amazon Redshift Event Notifications][1].
@@ -5592,6 +5929,12 @@ module Aws::Redshift
5592
5929
  # resp.cluster.endpoint.port #=> Integer
5593
5930
  # resp.cluster.endpoint.vpc_endpoints #=> Array
5594
5931
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
5932
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
5933
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
5934
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
5935
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
5936
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
5937
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
5595
5938
  # resp.cluster.cluster_create_time #=> Time
5596
5939
  # resp.cluster.automated_snapshot_retention_period #=> Integer
5597
5940
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -5680,6 +6023,7 @@ module Aws::Redshift
5680
6023
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
5681
6024
  # resp.cluster.availability_zone_relocation_status #=> String
5682
6025
  # resp.cluster.cluster_namespace_arn #=> String
6026
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
5683
6027
  #
5684
6028
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
5685
6029
  #
@@ -5830,6 +6174,12 @@ module Aws::Redshift
5830
6174
  # resp.cluster.endpoint.port #=> Integer
5831
6175
  # resp.cluster.endpoint.vpc_endpoints #=> Array
5832
6176
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
6177
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
6178
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
6179
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
6180
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
6181
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
6182
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
5833
6183
  # resp.cluster.cluster_create_time #=> Time
5834
6184
  # resp.cluster.automated_snapshot_retention_period #=> Integer
5835
6185
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -5918,6 +6268,7 @@ module Aws::Redshift
5918
6268
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
5919
6269
  # resp.cluster.availability_zone_relocation_status #=> String
5920
6270
  # resp.cluster.cluster_namespace_arn #=> String
6271
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
5921
6272
  #
5922
6273
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
5923
6274
  #
@@ -6277,6 +6628,9 @@ module Aws::Redshift
6277
6628
  # current value, existing automated snapshots that fall outside of the
6278
6629
  # new retention period will be immediately deleted.
6279
6630
  #
6631
+ # You can't disable automated snapshots for RA3 node types. Set the
6632
+ # automated retention period from 1-35 days.
6633
+ #
6280
6634
  # Default: Uses existing setting.
6281
6635
  #
6282
6636
  # Constraints: Must be a value from 0 to 35.
@@ -6468,6 +6822,12 @@ module Aws::Redshift
6468
6822
  # resp.cluster.endpoint.port #=> Integer
6469
6823
  # resp.cluster.endpoint.vpc_endpoints #=> Array
6470
6824
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
6825
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
6826
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
6827
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
6828
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
6829
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
6830
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
6471
6831
  # resp.cluster.cluster_create_time #=> Time
6472
6832
  # resp.cluster.automated_snapshot_retention_period #=> Integer
6473
6833
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -6556,6 +6916,7 @@ module Aws::Redshift
6556
6916
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
6557
6917
  # resp.cluster.availability_zone_relocation_status #=> String
6558
6918
  # resp.cluster.cluster_namespace_arn #=> String
6919
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6559
6920
  #
6560
6921
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
6561
6922
  #
@@ -6603,6 +6964,12 @@ module Aws::Redshift
6603
6964
  # resp.cluster.endpoint.port #=> Integer
6604
6965
  # resp.cluster.endpoint.vpc_endpoints #=> Array
6605
6966
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
6967
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
6968
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
6969
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
6970
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
6971
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
6972
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
6606
6973
  # resp.cluster.cluster_create_time #=> Time
6607
6974
  # resp.cluster.automated_snapshot_retention_period #=> Integer
6608
6975
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -6691,6 +7058,7 @@ module Aws::Redshift
6691
7058
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
6692
7059
  # resp.cluster.availability_zone_relocation_status #=> String
6693
7060
  # resp.cluster.cluster_namespace_arn #=> String
7061
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6694
7062
  #
6695
7063
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
6696
7064
  #
@@ -6745,6 +7113,12 @@ module Aws::Redshift
6745
7113
  # resp.cluster.endpoint.port #=> Integer
6746
7114
  # resp.cluster.endpoint.vpc_endpoints #=> Array
6747
7115
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
7116
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
7117
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
7118
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
7119
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
7120
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
7121
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
6748
7122
  # resp.cluster.cluster_create_time #=> Time
6749
7123
  # resp.cluster.automated_snapshot_retention_period #=> Integer
6750
7124
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -6833,6 +7207,7 @@ module Aws::Redshift
6833
7207
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
6834
7208
  # resp.cluster.availability_zone_relocation_status #=> String
6835
7209
  # resp.cluster.cluster_namespace_arn #=> String
7210
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6836
7211
  #
6837
7212
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
6838
7213
  #
@@ -6896,6 +7271,12 @@ module Aws::Redshift
6896
7271
  # resp.cluster.endpoint.port #=> Integer
6897
7272
  # resp.cluster.endpoint.vpc_endpoints #=> Array
6898
7273
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
7274
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
7275
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
7276
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
7277
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
7278
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
7279
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
6899
7280
  # resp.cluster.cluster_create_time #=> Time
6900
7281
  # resp.cluster.automated_snapshot_retention_period #=> Integer
6901
7282
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -6984,6 +7365,7 @@ module Aws::Redshift
6984
7365
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
6985
7366
  # resp.cluster.availability_zone_relocation_status #=> String
6986
7367
  # resp.cluster.cluster_namespace_arn #=> String
7368
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6987
7369
  #
6988
7370
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
6989
7371
  #
@@ -7224,6 +7606,65 @@ module Aws::Redshift
7224
7606
  req.send_request(options)
7225
7607
  end
7226
7608
 
7609
+ # Modifies a Redshift-managed VPC endpoint.
7610
+ #
7611
+ # @option params [required, String] :endpoint_name
7612
+ # The endpoint to be modified.
7613
+ #
7614
+ # @option params [Array<String>] :vpc_security_group_ids
7615
+ # The complete list of VPC security groups associated with the endpoint
7616
+ # after the endpoint is modified.
7617
+ #
7618
+ # @return [Types::EndpointAccess] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7619
+ #
7620
+ # * {Types::EndpointAccess#cluster_identifier #cluster_identifier} => String
7621
+ # * {Types::EndpointAccess#resource_owner #resource_owner} => String
7622
+ # * {Types::EndpointAccess#subnet_group_name #subnet_group_name} => String
7623
+ # * {Types::EndpointAccess#endpoint_status #endpoint_status} => String
7624
+ # * {Types::EndpointAccess#endpoint_name #endpoint_name} => String
7625
+ # * {Types::EndpointAccess#endpoint_create_time #endpoint_create_time} => Time
7626
+ # * {Types::EndpointAccess#port #port} => Integer
7627
+ # * {Types::EndpointAccess#address #address} => String
7628
+ # * {Types::EndpointAccess#vpc_security_groups #vpc_security_groups} => Array&lt;Types::VpcSecurityGroupMembership&gt;
7629
+ # * {Types::EndpointAccess#vpc_endpoint #vpc_endpoint} => Types::VpcEndpoint
7630
+ #
7631
+ # @example Request syntax with placeholder values
7632
+ #
7633
+ # resp = client.modify_endpoint_access({
7634
+ # endpoint_name: "String", # required
7635
+ # vpc_security_group_ids: ["String"],
7636
+ # })
7637
+ #
7638
+ # @example Response structure
7639
+ #
7640
+ # resp.cluster_identifier #=> String
7641
+ # resp.resource_owner #=> String
7642
+ # resp.subnet_group_name #=> String
7643
+ # resp.endpoint_status #=> String
7644
+ # resp.endpoint_name #=> String
7645
+ # resp.endpoint_create_time #=> Time
7646
+ # resp.port #=> Integer
7647
+ # resp.address #=> String
7648
+ # resp.vpc_security_groups #=> Array
7649
+ # resp.vpc_security_groups[0].vpc_security_group_id #=> String
7650
+ # resp.vpc_security_groups[0].status #=> String
7651
+ # resp.vpc_endpoint.vpc_endpoint_id #=> String
7652
+ # resp.vpc_endpoint.vpc_id #=> String
7653
+ # resp.vpc_endpoint.network_interfaces #=> Array
7654
+ # resp.vpc_endpoint.network_interfaces[0].network_interface_id #=> String
7655
+ # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
7656
+ # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
7657
+ # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
7658
+ #
7659
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyEndpointAccess AWS API Documentation
7660
+ #
7661
+ # @overload modify_endpoint_access(params = {})
7662
+ # @param [Hash] params ({})
7663
+ def modify_endpoint_access(params = {}, options = {})
7664
+ req = build_request(:modify_endpoint_access, params)
7665
+ req.send_request(options)
7666
+ end
7667
+
7227
7668
  # Modifies an existing Amazon Redshift event notification subscription.
7228
7669
  #
7229
7670
  # @option params [required, String] :subscription_name
@@ -7483,6 +7924,12 @@ module Aws::Redshift
7483
7924
  # resp.cluster.endpoint.port #=> Integer
7484
7925
  # resp.cluster.endpoint.vpc_endpoints #=> Array
7485
7926
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
7927
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
7928
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
7929
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
7930
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
7931
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
7932
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
7486
7933
  # resp.cluster.cluster_create_time #=> Time
7487
7934
  # resp.cluster.automated_snapshot_retention_period #=> Integer
7488
7935
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -7571,6 +8018,7 @@ module Aws::Redshift
7571
8018
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
7572
8019
  # resp.cluster.availability_zone_relocation_status #=> String
7573
8020
  # resp.cluster.cluster_namespace_arn #=> String
8021
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7574
8022
  #
7575
8023
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
7576
8024
  #
@@ -7717,6 +8165,12 @@ module Aws::Redshift
7717
8165
  # resp.cluster.endpoint.port #=> Integer
7718
8166
  # resp.cluster.endpoint.vpc_endpoints #=> Array
7719
8167
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
8168
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
8169
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
8170
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
8171
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8172
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8173
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
7720
8174
  # resp.cluster.cluster_create_time #=> Time
7721
8175
  # resp.cluster.automated_snapshot_retention_period #=> Integer
7722
8176
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -7805,6 +8259,7 @@ module Aws::Redshift
7805
8259
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
7806
8260
  # resp.cluster.availability_zone_relocation_status #=> String
7807
8261
  # resp.cluster.cluster_namespace_arn #=> String
8262
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7808
8263
  #
7809
8264
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
7810
8265
  #
@@ -7914,6 +8369,12 @@ module Aws::Redshift
7914
8369
  # resp.cluster.endpoint.port #=> Integer
7915
8370
  # resp.cluster.endpoint.vpc_endpoints #=> Array
7916
8371
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
8372
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
8373
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
8374
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
8375
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8376
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8377
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
7917
8378
  # resp.cluster.cluster_create_time #=> Time
7918
8379
  # resp.cluster.automated_snapshot_retention_period #=> Integer
7919
8380
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8002,6 +8463,7 @@ module Aws::Redshift
8002
8463
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
8003
8464
  # resp.cluster.availability_zone_relocation_status #=> String
8004
8465
  # resp.cluster.cluster_namespace_arn #=> String
8466
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8005
8467
  #
8006
8468
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
8007
8469
  #
@@ -8150,6 +8612,12 @@ module Aws::Redshift
8150
8612
  # resp.cluster.endpoint.port #=> Integer
8151
8613
  # resp.cluster.endpoint.vpc_endpoints #=> Array
8152
8614
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
8615
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
8616
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
8617
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
8618
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8619
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8620
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
8153
8621
  # resp.cluster.cluster_create_time #=> Time
8154
8622
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8155
8623
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8238,6 +8706,7 @@ module Aws::Redshift
8238
8706
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
8239
8707
  # resp.cluster.availability_zone_relocation_status #=> String
8240
8708
  # resp.cluster.cluster_namespace_arn #=> String
8709
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8241
8710
  #
8242
8711
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
8243
8712
  #
@@ -8405,6 +8874,9 @@ module Aws::Redshift
8405
8874
  # are disabled, you can still create manual snapshots when you want with
8406
8875
  # CreateClusterSnapshot.
8407
8876
  #
8877
+ # You can't disable automated snapshots for RA3 node types. Set the
8878
+ # automated retention period from 1-35 days.
8879
+ #
8408
8880
  # Default: The value selected for the cluster from which the snapshot
8409
8881
  # was taken.
8410
8882
  #
@@ -8536,6 +9008,12 @@ module Aws::Redshift
8536
9008
  # resp.cluster.endpoint.port #=> Integer
8537
9009
  # resp.cluster.endpoint.vpc_endpoints #=> Array
8538
9010
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
9011
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
9012
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
9013
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
9014
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
9015
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
9016
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
8539
9017
  # resp.cluster.cluster_create_time #=> Time
8540
9018
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8541
9019
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8624,6 +9102,7 @@ module Aws::Redshift
8624
9102
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
8625
9103
  # resp.cluster.availability_zone_relocation_status #=> String
8626
9104
  # resp.cluster.cluster_namespace_arn #=> String
9105
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8627
9106
  #
8628
9107
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
8629
9108
  #
@@ -8678,6 +9157,11 @@ module Aws::Redshift
8678
9157
  # @option params [required, String] :new_table_name
8679
9158
  # The name of the table to create as a result of the current request.
8680
9159
  #
9160
+ # @option params [Boolean] :enable_case_sensitive_identifier
9161
+ # Indicates whether name identifiers for database, schema, and table are
9162
+ # case sensitive. If `true`, the names are case sensitive. If `false`
9163
+ # (default), the names are not case sensitive.
9164
+ #
8681
9165
  # @return [Types::RestoreTableFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8682
9166
  #
8683
9167
  # * {Types::RestoreTableFromClusterSnapshotResult#table_restore_status #table_restore_status} => Types::TableRestoreStatus
@@ -8693,6 +9177,7 @@ module Aws::Redshift
8693
9177
  # target_database_name: "String",
8694
9178
  # target_schema_name: "String",
8695
9179
  # new_table_name: "String", # required
9180
+ # enable_case_sensitive_identifier: false,
8696
9181
  # })
8697
9182
  #
8698
9183
  # @example Response structure
@@ -8749,6 +9234,12 @@ module Aws::Redshift
8749
9234
  # resp.cluster.endpoint.port #=> Integer
8750
9235
  # resp.cluster.endpoint.vpc_endpoints #=> Array
8751
9236
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
9237
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
9238
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
9239
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
9240
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
9241
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
9242
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
8752
9243
  # resp.cluster.cluster_create_time #=> Time
8753
9244
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8754
9245
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8837,6 +9328,7 @@ module Aws::Redshift
8837
9328
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
8838
9329
  # resp.cluster.availability_zone_relocation_status #=> String
8839
9330
  # resp.cluster.cluster_namespace_arn #=> String
9331
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8840
9332
  #
8841
9333
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
8842
9334
  #
@@ -8924,6 +9416,66 @@ module Aws::Redshift
8924
9416
  req.send_request(options)
8925
9417
  end
8926
9418
 
9419
+ # Revokes access to a cluster.
9420
+ #
9421
+ # @option params [String] :cluster_identifier
9422
+ # The cluster to revoke access from.
9423
+ #
9424
+ # @option params [String] :account
9425
+ # The AWS account ID whose access is to be revoked.
9426
+ #
9427
+ # @option params [Array<String>] :vpc_ids
9428
+ # The virtual private cloud (VPC) identifiers for which access is to be
9429
+ # revoked.
9430
+ #
9431
+ # @option params [Boolean] :force
9432
+ # Indicates whether to force the revoke action. If true, the
9433
+ # Redshift-managed VPC endpoints associated with the endpoint
9434
+ # authorization are also deleted.
9435
+ #
9436
+ # @return [Types::EndpointAuthorization] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9437
+ #
9438
+ # * {Types::EndpointAuthorization#grantor #grantor} => String
9439
+ # * {Types::EndpointAuthorization#grantee #grantee} => String
9440
+ # * {Types::EndpointAuthorization#cluster_identifier #cluster_identifier} => String
9441
+ # * {Types::EndpointAuthorization#authorize_time #authorize_time} => Time
9442
+ # * {Types::EndpointAuthorization#cluster_status #cluster_status} => String
9443
+ # * {Types::EndpointAuthorization#status #status} => String
9444
+ # * {Types::EndpointAuthorization#allowed_all_vp_cs #allowed_all_vp_cs} => Boolean
9445
+ # * {Types::EndpointAuthorization#allowed_vp_cs #allowed_vp_cs} => Array&lt;String&gt;
9446
+ # * {Types::EndpointAuthorization#endpoint_count #endpoint_count} => Integer
9447
+ #
9448
+ # @example Request syntax with placeholder values
9449
+ #
9450
+ # resp = client.revoke_endpoint_access({
9451
+ # cluster_identifier: "String",
9452
+ # account: "String",
9453
+ # vpc_ids: ["String"],
9454
+ # force: false,
9455
+ # })
9456
+ #
9457
+ # @example Response structure
9458
+ #
9459
+ # resp.grantor #=> String
9460
+ # resp.grantee #=> String
9461
+ # resp.cluster_identifier #=> String
9462
+ # resp.authorize_time #=> Time
9463
+ # resp.cluster_status #=> String
9464
+ # resp.status #=> String, one of "Authorized", "Revoking"
9465
+ # resp.allowed_all_vp_cs #=> Boolean
9466
+ # resp.allowed_vp_cs #=> Array
9467
+ # resp.allowed_vp_cs[0] #=> String
9468
+ # resp.endpoint_count #=> Integer
9469
+ #
9470
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RevokeEndpointAccess AWS API Documentation
9471
+ #
9472
+ # @overload revoke_endpoint_access(params = {})
9473
+ # @param [Hash] params ({})
9474
+ def revoke_endpoint_access(params = {}, options = {})
9475
+ req = build_request(:revoke_endpoint_access, params)
9476
+ req.send_request(options)
9477
+ end
9478
+
8927
9479
  # Removes the ability of the specified AWS customer account to restore
8928
9480
  # the specified snapshot. If the account is currently restoring the
8929
9481
  # snapshot, the restore will run to completion.
@@ -9044,6 +9596,12 @@ module Aws::Redshift
9044
9596
  # resp.cluster.endpoint.port #=> Integer
9045
9597
  # resp.cluster.endpoint.vpc_endpoints #=> Array
9046
9598
  # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
9599
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
9600
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
9601
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
9602
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
9603
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
9604
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
9047
9605
  # resp.cluster.cluster_create_time #=> Time
9048
9606
  # resp.cluster.automated_snapshot_retention_period #=> Integer
9049
9607
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -9132,6 +9690,7 @@ module Aws::Redshift
9132
9690
  # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
9133
9691
  # resp.cluster.availability_zone_relocation_status #=> String
9134
9692
  # resp.cluster.cluster_namespace_arn #=> String
9693
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
9135
9694
  #
9136
9695
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
9137
9696
  #
@@ -9155,7 +9714,7 @@ module Aws::Redshift
9155
9714
  params: params,
9156
9715
  config: config)
9157
9716
  context[:gem_name] = 'aws-sdk-redshift'
9158
- context[:gem_version] = '1.55.0'
9717
+ context[:gem_version] = '1.60.0'
9159
9718
  Seahorse::Client::Request.new(handlers, context)
9160
9719
  end
9161
9720