aws-sdk-redshift 1.22.0 → 1.23.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
  SHA1:
3
- metadata.gz: 1f05e05bd01852690c5ceeed0c824a49780ca7c1
4
- data.tar.gz: 0262cfde71147f343d06a25b3665ebd52873d59a
3
+ metadata.gz: 3eaa4cd7c9c1083e155b80c534d13dee69aff335
4
+ data.tar.gz: 92b64aa3b0c7addf198119226e5b3b014580d2ab
5
5
  SHA512:
6
- metadata.gz: 660c7b0ceb338704d2edbe54214c019e4eb483ae950ac66bc2da294f4ee96e8e0f8717de9cb9cce7fd63ed7d0c1b94f849e8f5cbc9fe1868f5aa2c992b889696
7
- data.tar.gz: 793d4dce5110d0da54f204d870667604aec6ba211adaad59fe2156837f2b9517c43ebb1c91d17075e81ecb61279928b3bfc249d5c845349dc9a20ec07d8524c4
6
+ metadata.gz: 94ed1cc57c72dc7e59ce81439ae93c8a8296e573115118317b4981ba510d0a2036b41c5de19e05f296cb1e4f1cf9778eea29e02551f4427f11f91ae70999ab60
7
+ data.tar.gz: d9912d023c82781981c7d9e537c3aca8586328d49bb7a1a53700cf3b2bff6ec29b47c5cd6b81f3d6da8616c160cbb28aa7f10932fb9beaf0ba8e0a9a53f8e112
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-redshift/customizations'
43
43
  # @service
44
44
  module Aws::Redshift
45
45
 
46
- GEM_VERSION = '1.22.0'
46
+ GEM_VERSION = '1.23.0'
47
47
 
48
48
  end
@@ -199,6 +199,49 @@ module Aws::Redshift
199
199
  # When `true`, request parameters are validated before
200
200
  # sending the request.
201
201
  #
202
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
203
+ # requests through. Formatted like 'http://proxy.com:123'.
204
+ #
205
+ # @option options [Float] :http_open_timeout (15) The number of
206
+ # seconds to wait when opening a HTTP session before rasing a
207
+ # `Timeout::Error`.
208
+ #
209
+ # @option options [Integer] :http_read_timeout (60) The default
210
+ # number of seconds to wait for response data. This value can
211
+ # safely be set
212
+ # per-request on the session yeidled by {#session_for}.
213
+ #
214
+ # @option options [Float] :http_idle_timeout (5) The number of
215
+ # seconds a connection is allowed to sit idble before it is
216
+ # considered stale. Stale connections are closed and removed
217
+ # from the pool before making a request.
218
+ #
219
+ # @option options [Float] :http_continue_timeout (1) The number of
220
+ # seconds to wait for a 100-continue response before sending the
221
+ # request body. This option has no effect unless the request has
222
+ # "Expect" header set to "100-continue". Defaults to `nil` which
223
+ # disables this behaviour. This value can safely be set per
224
+ # request on the session yeidled by {#session_for}.
225
+ #
226
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
227
+ # HTTP debug output will be sent to the `:logger`.
228
+ #
229
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
230
+ # SSL peer certificates are verified when establishing a
231
+ # connection.
232
+ #
233
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
234
+ # certificate authority bundle file that should be used when
235
+ # verifying peer certificates. If you do not pass
236
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
237
+ # will be used if available.
238
+ #
239
+ # @option options [String] :ssl_ca_directory Full path of the
240
+ # directory that contains the unbundled SSL certificate
241
+ # authority files for verifying peer certificates. If you do
242
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
243
+ # system default will be used if available.
244
+ #
202
245
  def initialize(*args)
203
246
  super
204
247
  end
@@ -281,7 +324,7 @@ module Aws::Redshift
281
324
  #
282
325
  #
283
326
  # [1]: http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing
284
- # [2]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html
327
+ # [2]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html
285
328
  #
286
329
  # @option params [required, String] :cluster_security_group_name
287
330
  # The name of the security group to which the ingress rule is added.
@@ -351,7 +394,7 @@ module Aws::Redshift
351
394
  #
352
395
  #
353
396
  #
354
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
397
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
355
398
  #
356
399
  # @option params [required, String] :snapshot_identifier
357
400
  # The identifier of the snapshot the account is authorized to restore.
@@ -545,6 +588,7 @@ module Aws::Redshift
545
588
  # * {Types::ResizeProgressMessage#resize_type #resize_type} => String
546
589
  # * {Types::ResizeProgressMessage#message #message} => String
547
590
  # * {Types::ResizeProgressMessage#target_encryption_type #target_encryption_type} => String
591
+ # * {Types::ResizeProgressMessage#data_transfer_progress_percent #data_transfer_progress_percent} => Float
548
592
  #
549
593
  # @example Request syntax with placeholder values
550
594
  #
@@ -572,6 +616,7 @@ module Aws::Redshift
572
616
  # resp.resize_type #=> String
573
617
  # resp.message #=> String
574
618
  # resp.target_encryption_type #=> String
619
+ # resp.data_transfer_progress_percent #=> Float
575
620
  #
576
621
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CancelResize AWS API Documentation
577
622
  #
@@ -599,7 +644,7 @@ module Aws::Redshift
599
644
  #
600
645
  #
601
646
  #
602
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
647
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
603
648
  #
604
649
  # @option params [required, String] :source_snapshot_identifier
605
650
  # The identifier for the source snapshot.
@@ -720,7 +765,7 @@ module Aws::Redshift
720
765
  #
721
766
  #
722
767
  #
723
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
768
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
724
769
  #
725
770
  # @option params [String] :db_name
726
771
  # The name of the first database to be created when the cluster is
@@ -745,8 +790,8 @@ module Aws::Redshift
745
790
  #
746
791
  #
747
792
  #
748
- # [1]: http://docs.aws.amazon.com/redshift/latest/dg/t_creating_database.html
749
- # [2]: http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
793
+ # [1]: https://docs.aws.amazon.com/redshift/latest/dg/t_creating_database.html
794
+ # [2]: https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
750
795
  #
751
796
  # @option params [required, String] :cluster_identifier
752
797
  # A unique identifier for the cluster. You use this identifier to refer
@@ -790,7 +835,7 @@ module Aws::Redshift
790
835
  #
791
836
  #
792
837
  #
793
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
838
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
794
839
  #
795
840
  # @option params [required, String] :master_username
796
841
  # The user name associated with the master user account for the cluster
@@ -808,7 +853,7 @@ module Aws::Redshift
808
853
  #
809
854
  #
810
855
  #
811
- # [1]: http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
856
+ # [1]: https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
812
857
  #
813
858
  # @option params [required, String] :master_user_password
814
859
  # The password associated with the master user account for the cluster
@@ -877,7 +922,7 @@ module Aws::Redshift
877
922
  #
878
923
  #
879
924
  #
880
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows
925
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows
881
926
  #
882
927
  # @option params [String] :cluster_parameter_group_name
883
928
  # The name of the parameter group to be associated with this cluster.
@@ -896,7 +941,7 @@ module Aws::Redshift
896
941
  #
897
942
  #
898
943
  #
899
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
944
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
900
945
  #
901
946
  # @option params [Integer] :automated_snapshot_retention_period
902
947
  # The number of days that automated snapshots are retained. If the value
@@ -966,7 +1011,7 @@ module Aws::Redshift
966
1011
  #
967
1012
  #
968
1013
  #
969
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
1014
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
970
1015
  #
971
1016
  # @option params [Boolean] :publicly_accessible
972
1017
  # If `true`, the cluster can be accessed from a public network.
@@ -996,7 +1041,7 @@ module Aws::Redshift
996
1041
  #
997
1042
  #
998
1043
  #
999
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms
1044
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms
1000
1045
  #
1001
1046
  # @option params [Array<Types::Tag>] :tags
1002
1047
  # A list of tag instances.
@@ -1018,7 +1063,7 @@ module Aws::Redshift
1018
1063
  #
1019
1064
  #
1020
1065
  #
1021
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
1066
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
1022
1067
  #
1023
1068
  # @option params [String] :additional_info
1024
1069
  # Reserved.
@@ -1201,7 +1246,7 @@ module Aws::Redshift
1201
1246
  #
1202
1247
  #
1203
1248
  #
1204
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
1249
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
1205
1250
  #
1206
1251
  # @option params [required, String] :parameter_group_name
1207
1252
  # The name of the cluster parameter group.
@@ -1284,7 +1329,7 @@ module Aws::Redshift
1284
1329
  #
1285
1330
  #
1286
1331
  #
1287
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html
1332
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html
1288
1333
  #
1289
1334
  # @option params [required, String] :cluster_security_group_name
1290
1335
  # The name for the security group. Amazon Redshift stores the value as a
@@ -1363,7 +1408,7 @@ module Aws::Redshift
1363
1408
  #
1364
1409
  #
1365
1410
  #
1366
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
1411
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
1367
1412
  #
1368
1413
  # @option params [required, String] :snapshot_identifier
1369
1414
  # A unique identifier for the snapshot that you are requesting. This
@@ -1472,7 +1517,7 @@ module Aws::Redshift
1472
1517
  #
1473
1518
  #
1474
1519
  #
1475
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-cluster-subnet-groups.html
1520
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-cluster-subnet-groups.html
1476
1521
  #
1477
1522
  # @option params [required, String] :cluster_subnet_group_name
1478
1523
  # The name for the subnet group. Amazon Redshift stores the value as a
@@ -1688,7 +1733,7 @@ module Aws::Redshift
1688
1733
  #
1689
1734
  #
1690
1735
  #
1691
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-HSM.html
1736
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-HSM.html
1692
1737
  #
1693
1738
  # @option params [required, String] :hsm_client_certificate_identifier
1694
1739
  # The identifier to be assigned to the new HSM client certificate that
@@ -1743,7 +1788,7 @@ module Aws::Redshift
1743
1788
  #
1744
1789
  #
1745
1790
  #
1746
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-HSM.html
1791
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-HSM.html
1747
1792
  #
1748
1793
  # @option params [required, String] :hsm_configuration_identifier
1749
1794
  # The identifier to be assigned to the new Amazon Redshift HSM
@@ -1820,7 +1865,7 @@ module Aws::Redshift
1820
1865
  #
1821
1866
  #
1822
1867
  #
1823
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html
1868
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html
1824
1869
  #
1825
1870
  # @option params [required, String] :snapshot_copy_grant_name
1826
1871
  # The name of the snapshot copy grant. This name must be unique in the
@@ -1895,6 +1940,7 @@ module Aws::Redshift
1895
1940
  # The description of the snapshot schedule.
1896
1941
  #
1897
1942
  # @option params [Array<Types::Tag>] :tags
1943
+ # An optional set of tags you can use to search for the schedule.
1898
1944
  #
1899
1945
  # @option params [Boolean] :dry_run
1900
1946
  #
@@ -2015,7 +2061,7 @@ module Aws::Redshift
2015
2061
  #
2016
2062
  #
2017
2063
  #
2018
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
2064
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
2019
2065
  #
2020
2066
  # @option params [required, String] :cluster_identifier
2021
2067
  # The identifier of the cluster to be deleted.
@@ -2226,7 +2272,7 @@ module Aws::Redshift
2226
2272
  #
2227
2273
  #
2228
2274
  #
2229
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html
2275
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html
2230
2276
  #
2231
2277
  # @option params [required, String] :cluster_security_group_name
2232
2278
  # The name of the cluster security group to be deleted.
@@ -2616,7 +2662,7 @@ module Aws::Redshift
2616
2662
  #
2617
2663
  #
2618
2664
  #
2619
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
2665
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
2620
2666
  #
2621
2667
  # @option params [String] :parameter_group_name
2622
2668
  # The name of a specific parameter group for which to return details. By
@@ -2712,7 +2758,7 @@ module Aws::Redshift
2712
2758
  #
2713
2759
  #
2714
2760
  #
2715
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
2761
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
2716
2762
  #
2717
2763
  # @option params [required, String] :parameter_group_name
2718
2764
  # The name of a cluster parameter group for which to return details.
@@ -2804,7 +2850,7 @@ module Aws::Redshift
2804
2850
  #
2805
2851
  #
2806
2852
  #
2807
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html
2853
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html
2808
2854
  #
2809
2855
  # @option params [String] :cluster_security_group_name
2810
2856
  # The name of a cluster security group for which you are requesting
@@ -2920,8 +2966,7 @@ module Aws::Redshift
2920
2966
  # associated with them.
2921
2967
  #
2922
2968
  # @option params [String] :cluster_identifier
2923
- # The identifier of the cluster for which information about snapshots is
2924
- # requested.
2969
+ # The identifier of the cluster which generated the requested snapshots.
2925
2970
  #
2926
2971
  # @option params [String] :snapshot_identifier
2927
2972
  # The snapshot identifier of the snapshot about which to return
@@ -3002,10 +3047,23 @@ module Aws::Redshift
3002
3047
  #
3003
3048
  # @option params [Boolean] :cluster_exists
3004
3049
  # A value that indicates whether to return snapshots only for an
3005
- # existing cluster. Table-level restore can be performed only using a
3050
+ # existing cluster. You can perform table-level restore only by using a
3006
3051
  # snapshot of an existing cluster, that is, a cluster that has not been
3007
- # deleted. If `ClusterExists` is set to `true`, `ClusterIdentifier` is
3008
- # required.
3052
+ # deleted. Values for this parameter work as follows:
3053
+ #
3054
+ # * If `ClusterExists` is set to `true`, `ClusterIdentifier` is
3055
+ # required.
3056
+ #
3057
+ # * If `ClusterExists` is set to `false` and `ClusterIdentifier` isn't
3058
+ # specified, all snapshots associated with deleted clusters (orphaned
3059
+ # snapshots) are returned.
3060
+ #
3061
+ # * If `ClusterExists` is set to `false` and `ClusterIdentifier` is
3062
+ # specified for a deleted cluster, snapshots associated with that
3063
+ # cluster are returned.
3064
+ #
3065
+ # * If `ClusterExists` is set to `false` and `ClusterIdentifier` is
3066
+ # specified for an existing cluster, no snapshots are returned.
3009
3067
  #
3010
3068
  # @option params [Array<Types::SnapshotSortingEntity>] :sorting_entities
3011
3069
  #
@@ -3246,7 +3304,7 @@ module Aws::Redshift
3246
3304
  #
3247
3305
  #
3248
3306
  #
3249
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
3307
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
3250
3308
  #
3251
3309
  # @option params [String] :cluster_version
3252
3310
  # The specific cluster version to return.
@@ -3334,7 +3392,7 @@ module Aws::Redshift
3334
3392
  #
3335
3393
  #
3336
3394
  #
3337
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
3395
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
3338
3396
  #
3339
3397
  # @option params [String] :cluster_identifier
3340
3398
  # The unique identifier of a cluster whose properties you are
@@ -3510,7 +3568,7 @@ module Aws::Redshift
3510
3568
  #
3511
3569
  #
3512
3570
  #
3513
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
3571
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
3514
3572
  #
3515
3573
  # @option params [required, String] :parameter_group_family
3516
3574
  # The name of the cluster parameter group family.
@@ -3577,7 +3635,7 @@ module Aws::Redshift
3577
3635
  #
3578
3636
  #
3579
3637
  #
3580
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html
3638
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html
3581
3639
  #
3582
3640
  # @option params [String] :source_type
3583
3641
  # The source type, such as cluster or parameter group, to which the
@@ -4090,7 +4148,7 @@ module Aws::Redshift
4090
4148
  #
4091
4149
  #
4092
4150
  #
4093
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
4151
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
4094
4152
  #
4095
4153
  # @option params [String] :cluster_version
4096
4154
  # The version filter value. Specify this parameter to show only the
@@ -4173,7 +4231,7 @@ module Aws::Redshift
4173
4231
  #
4174
4232
  #
4175
4233
  #
4176
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/purchase-reserved-node-instance.html
4234
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/purchase-reserved-node-instance.html
4177
4235
  #
4178
4236
  # @option params [String] :reserved_node_offering_id
4179
4237
  # The unique identifier for the offering.
@@ -4335,6 +4393,7 @@ module Aws::Redshift
4335
4393
  # * {Types::ResizeProgressMessage#resize_type #resize_type} => String
4336
4394
  # * {Types::ResizeProgressMessage#message #message} => String
4337
4395
  # * {Types::ResizeProgressMessage#target_encryption_type #target_encryption_type} => String
4396
+ # * {Types::ResizeProgressMessage#data_transfer_progress_percent #data_transfer_progress_percent} => Float
4338
4397
  #
4339
4398
  # @example Request syntax with placeholder values
4340
4399
  #
@@ -4362,6 +4421,7 @@ module Aws::Redshift
4362
4421
  # resp.resize_type #=> String
4363
4422
  # resp.message #=> String
4364
4423
  # resp.target_encryption_type #=> String
4424
+ # resp.data_transfer_progress_percent #=> Float
4365
4425
  #
4366
4426
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeResize AWS API Documentation
4367
4427
  #
@@ -4381,7 +4441,7 @@ module Aws::Redshift
4381
4441
  #
4382
4442
  #
4383
4443
  #
4384
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html
4444
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html
4385
4445
  #
4386
4446
  # @option params [String] :snapshot_copy_grant_name
4387
4447
  # The name of the snapshot copy grant.
@@ -4686,7 +4746,7 @@ module Aws::Redshift
4686
4746
  #
4687
4747
  #
4688
4748
  #
4689
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-overview.html#redshift-iam-access-control-specify-actions
4749
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-overview.html#redshift-iam-access-control-specify-actions
4690
4750
  #
4691
4751
  # @option params [Integer] :max_records
4692
4752
  # The maximum number or response records to return in each call. If the
@@ -5014,7 +5074,7 @@ module Aws::Redshift
5014
5074
  #
5015
5075
  #
5016
5076
  #
5017
- # [1]: http://docs.aws.amazon.com/general/latest/gr/rande.html#redshift_region
5077
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html#redshift_region
5018
5078
  #
5019
5079
  # @option params [Integer] :retention_period
5020
5080
  # The number of days to retain automated snapshots in the destination
@@ -5181,8 +5241,8 @@ module Aws::Redshift
5181
5241
  #
5182
5242
  #
5183
5243
  #
5184
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/generating-user-credentials.html
5185
- # [2]: http://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-identity-based.html#redshift-policy-resources.getclustercredentials-resources
5244
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/generating-user-credentials.html
5245
+ # [2]: https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-identity-based.html#redshift-policy-resources.getclustercredentials-resources
5186
5246
  #
5187
5247
  # @option params [required, String] :db_user
5188
5248
  # The name of a database user. If a user name matching `DbUser` exists
@@ -5214,7 +5274,7 @@ module Aws::Redshift
5214
5274
  #
5215
5275
  #
5216
5276
  #
5217
- # [1]: http://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_USER.html
5277
+ # [1]: https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_USER.html
5218
5278
  # [2]: http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
5219
5279
  #
5220
5280
  # @option params [String] :db_name
@@ -5381,7 +5441,7 @@ module Aws::Redshift
5381
5441
  #
5382
5442
  #
5383
5443
  #
5384
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
5444
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
5385
5445
  #
5386
5446
  # @option params [required, String] :cluster_identifier
5387
5447
  # The unique identifier of the cluster to be modified.
@@ -5546,7 +5606,7 @@ module Aws::Redshift
5546
5606
  #
5547
5607
  #
5548
5608
  #
5549
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
5609
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
5550
5610
  #
5551
5611
  # @option params [Boolean] :allow_version_upgrade
5552
5612
  # If `true`, major version upgrades will be applied automatically to the
@@ -5595,7 +5655,7 @@ module Aws::Redshift
5595
5655
  #
5596
5656
  #
5597
5657
  #
5598
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms
5658
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms
5599
5659
  #
5600
5660
  # @option params [Boolean] :enhanced_vpc_routing
5601
5661
  # An option that specifies whether to create the cluster with enhanced
@@ -5610,7 +5670,7 @@ module Aws::Redshift
5610
5670
  #
5611
5671
  #
5612
5672
  #
5613
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
5673
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
5614
5674
  #
5615
5675
  # @option params [String] :maintenance_track_name
5616
5676
  # The name for the maintenance track that you want to assign for the
@@ -6051,7 +6111,7 @@ module Aws::Redshift
6051
6111
  # @option params [Integer] :defer_maintenance_duration
6052
6112
  # An integer indicating the duration of the maintenance window in days.
6053
6113
  # If you specify a duration, you can't specify an end time. The
6054
- # duration must be 14 days or less.
6114
+ # duration must be 45 days or less.
6055
6115
  #
6056
6116
  # @return [Types::ModifyClusterMaintenanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6057
6117
  #
@@ -6179,7 +6239,7 @@ module Aws::Redshift
6179
6239
  #
6180
6240
  #
6181
6241
  #
6182
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
6242
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
6183
6243
  #
6184
6244
  # @option params [required, String] :parameter_group_name
6185
6245
  # The name of the parameter group to be modified.
@@ -6712,7 +6772,7 @@ module Aws::Redshift
6712
6772
  #
6713
6773
  #
6714
6774
  #
6715
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/purchase-reserved-node-instance.html
6775
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/purchase-reserved-node-instance.html
6716
6776
  #
6717
6777
  # @option params [required, String] :reserved_node_offering_id
6718
6778
  # The unique identifier of the reserved node offering you want to
@@ -6771,7 +6831,7 @@ module Aws::Redshift
6771
6831
  #
6772
6832
  #
6773
6833
  #
6774
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
6834
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html
6775
6835
  #
6776
6836
  # @option params [required, String] :cluster_identifier
6777
6837
  # The cluster identifier.
@@ -7124,7 +7184,7 @@ module Aws::Redshift
7124
7184
  #
7125
7185
  #
7126
7186
  #
7127
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
7187
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
7128
7188
  #
7129
7189
  # @option params [required, String] :cluster_identifier
7130
7190
  # The identifier of the cluster that will be created from restoring the
@@ -7219,7 +7279,7 @@ module Aws::Redshift
7219
7279
  #
7220
7280
  #
7221
7281
  #
7222
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
7282
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
7223
7283
  #
7224
7284
  # @option params [Array<String>] :cluster_security_groups
7225
7285
  # A list of security groups to be associated with this cluster.
@@ -7254,7 +7314,7 @@ module Aws::Redshift
7254
7314
  #
7255
7315
  #
7256
7316
  #
7257
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows
7317
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows
7258
7318
  #
7259
7319
  # @option params [Integer] :automated_snapshot_retention_period
7260
7320
  # The number of days that automated snapshots are retained. If the value
@@ -7268,6 +7328,11 @@ module Aws::Redshift
7268
7328
  # Constraints: Must be a value from 0 to 35.
7269
7329
  #
7270
7330
  # @option params [Integer] :manual_snapshot_retention_period
7331
+ # The default number of days to retain a manual snapshot. If the value
7332
+ # is -1, the snapshot is retained indefinitely. This setting doesn't
7333
+ # change the retention period of existing snapshots.
7334
+ #
7335
+ # The value must be either -1 or an integer between 1 and 3,653.
7271
7336
  #
7272
7337
  # @option params [String] :kms_key_id
7273
7338
  # The AWS Key Management Service (KMS) key ID of the encryption key that
@@ -7292,7 +7357,7 @@ module Aws::Redshift
7292
7357
  #
7293
7358
  #
7294
7359
  #
7295
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-about-clusters-and-nodes
7360
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-about-clusters-and-nodes
7296
7361
  #
7297
7362
  # @option params [Boolean] :enhanced_vpc_routing
7298
7363
  # An option that specifies whether to create the cluster with enhanced
@@ -7307,7 +7372,7 @@ module Aws::Redshift
7307
7372
  #
7308
7373
  #
7309
7374
  #
7310
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
7375
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
7311
7376
  #
7312
7377
  # @option params [String] :additional_info
7313
7378
  # Reserved.
@@ -7565,7 +7630,7 @@ module Aws::Redshift
7565
7630
  #
7566
7631
  #
7567
7632
  #
7568
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html
7633
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html
7569
7634
  #
7570
7635
  # @option params [required, String] :cluster_security_group_name
7571
7636
  # The name of the security Group from which to revoke the ingress rule.
@@ -7643,7 +7708,7 @@ module Aws::Redshift
7643
7708
  #
7644
7709
  #
7645
7710
  #
7646
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
7711
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
7647
7712
  #
7648
7713
  # @option params [required, String] :snapshot_identifier
7649
7714
  # The identifier of the snapshot that the account can no longer access.
@@ -7855,7 +7920,7 @@ module Aws::Redshift
7855
7920
  params: params,
7856
7921
  config: config)
7857
7922
  context[:gem_name] = 'aws-sdk-redshift'
7858
- context[:gem_version] = '1.22.0'
7923
+ context[:gem_version] = '1.23.0'
7859
7924
  Seahorse::Client::Request.new(handlers, context)
7860
7925
  end
7861
7926
 
@@ -1407,6 +1407,7 @@ module Aws::Redshift
1407
1407
  ResizeProgressMessage.add_member(:resize_type, Shapes::ShapeRef.new(shape: String, location_name: "ResizeType"))
1408
1408
  ResizeProgressMessage.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
1409
1409
  ResizeProgressMessage.add_member(:target_encryption_type, Shapes::ShapeRef.new(shape: String, location_name: "TargetEncryptionType"))
1410
+ ResizeProgressMessage.add_member(:data_transfer_progress_percent, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "DataTransferProgressPercent"))
1410
1411
  ResizeProgressMessage.struct_class = Types::ResizeProgressMessage
1411
1412
 
1412
1413
  RestorableNodeTypeList.member = Shapes::ShapeRef.new(shape: String, location_name: "NodeType")
@@ -36,9 +36,6 @@ module Aws::Redshift
36
36
  end
37
37
 
38
38
  # @!attribute [rw] exchanged_reserved_node
39
- # Describes a reserved node. You can call the
40
- # DescribeReservedNodeOfferings API to obtain the available reserved
41
- # node offerings.
42
39
  # @return [Types::ReservedNode]
43
40
  #
44
41
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AcceptReservedNodeExchangeOutputMessage AWS API Documentation
@@ -509,8 +506,6 @@ module Aws::Redshift
509
506
  # @return [Types::RestoreStatus]
510
507
  #
511
508
  # @!attribute [rw] data_transfer_progress
512
- # Describes the status of a cluster while it is in the process of
513
- # resizing with an incremental resize.
514
509
  # @return [Types::DataTransferProgress]
515
510
  #
516
511
  # @!attribute [rw] hsm_status
@@ -564,7 +559,7 @@ module Aws::Redshift
564
559
  #
565
560
  #
566
561
  #
567
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
562
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
568
563
  # @return [Boolean]
569
564
  #
570
565
  # @!attribute [rw] iam_roles
@@ -892,7 +887,7 @@ module Aws::Redshift
892
887
  #
893
888
  #
894
889
  #
895
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
890
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
896
891
  # @return [Array<Types::ClusterParameterStatus>]
897
892
  #
898
893
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ClusterParameterGroupStatus AWS API Documentation
@@ -1362,8 +1357,8 @@ module Aws::Redshift
1362
1357
  #
1363
1358
  #
1364
1359
  #
1365
- # [1]: http://docs.aws.amazon.com/redshift/latest/dg/t_creating_database.html
1366
- # [2]: http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
1360
+ # [1]: https://docs.aws.amazon.com/redshift/latest/dg/t_creating_database.html
1361
+ # [2]: https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
1367
1362
  # @return [String]
1368
1363
  #
1369
1364
  # @!attribute [rw] cluster_identifier
@@ -1410,7 +1405,7 @@ module Aws::Redshift
1410
1405
  #
1411
1406
  #
1412
1407
  #
1413
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
1408
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
1414
1409
  # @return [String]
1415
1410
  #
1416
1411
  # @!attribute [rw] master_username
@@ -1430,7 +1425,7 @@ module Aws::Redshift
1430
1425
  #
1431
1426
  #
1432
1427
  #
1433
- # [1]: http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
1428
+ # [1]: https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
1434
1429
  # @return [String]
1435
1430
  #
1436
1431
  # @!attribute [rw] master_user_password
@@ -1506,7 +1501,7 @@ module Aws::Redshift
1506
1501
  #
1507
1502
  #
1508
1503
  #
1509
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows
1504
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows
1510
1505
  # @return [String]
1511
1506
  #
1512
1507
  # @!attribute [rw] cluster_parameter_group_name
@@ -1526,7 +1521,7 @@ module Aws::Redshift
1526
1521
  #
1527
1522
  #
1528
1523
  #
1529
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
1524
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
1530
1525
  # @return [String]
1531
1526
  #
1532
1527
  # @!attribute [rw] automated_snapshot_retention_period
@@ -1603,7 +1598,7 @@ module Aws::Redshift
1603
1598
  #
1604
1599
  #
1605
1600
  #
1606
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
1601
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
1607
1602
  # @return [Integer]
1608
1603
  #
1609
1604
  # @!attribute [rw] publicly_accessible
@@ -1638,7 +1633,7 @@ module Aws::Redshift
1638
1633
  #
1639
1634
  #
1640
1635
  #
1641
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms
1636
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms
1642
1637
  # @return [String]
1643
1638
  #
1644
1639
  # @!attribute [rw] tags
@@ -1663,7 +1658,7 @@ module Aws::Redshift
1663
1658
  #
1664
1659
  #
1665
1660
  #
1666
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
1661
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
1667
1662
  # @return [Boolean]
1668
1663
  #
1669
1664
  # @!attribute [rw] additional_info
@@ -2302,7 +2297,7 @@ module Aws::Redshift
2302
2297
  #
2303
2298
  #
2304
2299
  #
2305
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html
2300
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html
2306
2301
  # @return [Types::SnapshotCopyGrant]
2307
2302
  #
2308
2303
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateSnapshotCopyGrantResult AWS API Documentation
@@ -2345,6 +2340,7 @@ module Aws::Redshift
2345
2340
  # @return [String]
2346
2341
  #
2347
2342
  # @!attribute [rw] tags
2343
+ # An optional set of tags you can use to search for the schedule.
2348
2344
  # @return [Array<Types::Tag>]
2349
2345
  #
2350
2346
  # @!attribute [rw] dry_run
@@ -3118,8 +3114,8 @@ module Aws::Redshift
3118
3114
  # }
3119
3115
  #
3120
3116
  # @!attribute [rw] cluster_identifier
3121
- # The identifier of the cluster for which information about snapshots
3122
- # is requested.
3117
+ # The identifier of the cluster which generated the requested
3118
+ # snapshots.
3123
3119
  # @return [String]
3124
3120
  #
3125
3121
  # @!attribute [rw] snapshot_identifier
@@ -3211,10 +3207,23 @@ module Aws::Redshift
3211
3207
  #
3212
3208
  # @!attribute [rw] cluster_exists
3213
3209
  # A value that indicates whether to return snapshots only for an
3214
- # existing cluster. Table-level restore can be performed only using a
3215
- # snapshot of an existing cluster, that is, a cluster that has not
3216
- # been deleted. If `ClusterExists` is set to `true`,
3217
- # `ClusterIdentifier` is required.
3210
+ # existing cluster. You can perform table-level restore only by using
3211
+ # a snapshot of an existing cluster, that is, a cluster that has not
3212
+ # been deleted. Values for this parameter work as follows:
3213
+ #
3214
+ # * If `ClusterExists` is set to `true`, `ClusterIdentifier` is
3215
+ # required.
3216
+ #
3217
+ # * If `ClusterExists` is set to `false` and `ClusterIdentifier`
3218
+ # isn't specified, all snapshots associated with deleted clusters
3219
+ # (orphaned snapshots) are returned.
3220
+ #
3221
+ # * If `ClusterExists` is set to `false` and `ClusterIdentifier` is
3222
+ # specified for a deleted cluster, snapshots associated with that
3223
+ # cluster are returned.
3224
+ #
3225
+ # * If `ClusterExists` is set to `false` and `ClusterIdentifier` is
3226
+ # specified for an existing cluster, no snapshots are returned.
3218
3227
  # @return [Boolean]
3219
3228
  #
3220
3229
  # @!attribute [rw] sorting_entities
@@ -4320,7 +4329,7 @@ module Aws::Redshift
4320
4329
  #
4321
4330
  #
4322
4331
  #
4323
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-overview.html#redshift-iam-access-control-specify-actions
4332
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-overview.html#redshift-iam-access-control-specify-actions
4324
4333
  # @return [String]
4325
4334
  #
4326
4335
  # @!attribute [rw] max_records
@@ -4555,7 +4564,7 @@ module Aws::Redshift
4555
4564
  #
4556
4565
  #
4557
4566
  #
4558
- # [1]: http://docs.aws.amazon.com/general/latest/gr/rande.html#redshift_region
4567
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html#redshift_region
4559
4568
  # @return [String]
4560
4569
  #
4561
4570
  # @!attribute [rw] retention_period
@@ -4900,7 +4909,7 @@ module Aws::Redshift
4900
4909
  #
4901
4910
  #
4902
4911
  #
4903
- # [1]: http://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_USER.html
4912
+ # [1]: https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_USER.html
4904
4913
  # [2]: http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
4905
4914
  # @return [String]
4906
4915
  #
@@ -5392,7 +5401,7 @@ module Aws::Redshift
5392
5401
  # @!attribute [rw] defer_maintenance_duration
5393
5402
  # An integer indicating the duration of the maintenance window in
5394
5403
  # days. If you specify a duration, you can't specify an end time. The
5395
- # duration must be 14 days or less.
5404
+ # duration must be 45 days or less.
5396
5405
  # @return [Integer]
5397
5406
  #
5398
5407
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenanceMessage AWS API Documentation
@@ -5620,7 +5629,7 @@ module Aws::Redshift
5620
5629
  #
5621
5630
  #
5622
5631
  #
5623
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
5632
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
5624
5633
  # @return [String]
5625
5634
  #
5626
5635
  # @!attribute [rw] allow_version_upgrade
@@ -5675,7 +5684,7 @@ module Aws::Redshift
5675
5684
  #
5676
5685
  #
5677
5686
  #
5678
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms
5687
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#cluster-platforms
5679
5688
  # @return [String]
5680
5689
  #
5681
5690
  # @!attribute [rw] enhanced_vpc_routing
@@ -5691,7 +5700,7 @@ module Aws::Redshift
5691
5700
  #
5692
5701
  #
5693
5702
  #
5694
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
5703
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
5695
5704
  # @return [Boolean]
5696
5705
  #
5697
5706
  # @!attribute [rw] maintenance_track_name
@@ -6213,7 +6222,7 @@ module Aws::Redshift
6213
6222
  #
6214
6223
  #
6215
6224
  #
6216
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
6225
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
6217
6226
  # @return [String]
6218
6227
  #
6219
6228
  # @!attribute [rw] is_modifiable
@@ -6295,7 +6304,7 @@ module Aws::Redshift
6295
6304
  #
6296
6305
  #
6297
6306
  #
6298
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
6307
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
6299
6308
  # @return [Boolean]
6300
6309
  #
6301
6310
  # @!attribute [rw] maintenance_track_name
@@ -6822,6 +6831,11 @@ module Aws::Redshift
6822
6831
  # values are: `Legacy` and `None`.
6823
6832
  # @return [String]
6824
6833
  #
6834
+ # @!attribute [rw] data_transfer_progress_percent
6835
+ # The percent of data transferred from source cluster to target
6836
+ # cluster.
6837
+ # @return [Float]
6838
+ #
6825
6839
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeProgressMessage AWS API Documentation
6826
6840
  #
6827
6841
  class ResizeProgressMessage < Struct.new(
@@ -6839,7 +6853,8 @@ module Aws::Redshift
6839
6853
  :estimated_time_to_completion_in_seconds,
6840
6854
  :resize_type,
6841
6855
  :message,
6842
- :target_encryption_type)
6856
+ :target_encryption_type,
6857
+ :data_transfer_progress_percent)
6843
6858
  include Aws::Structure
6844
6859
  end
6845
6860
 
@@ -6979,7 +6994,7 @@ module Aws::Redshift
6979
6994
  #
6980
6995
  #
6981
6996
  #
6982
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
6997
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html
6983
6998
  # @return [String]
6984
6999
  #
6985
7000
  # @!attribute [rw] cluster_security_groups
@@ -7017,7 +7032,7 @@ module Aws::Redshift
7017
7032
  #
7018
7033
  #
7019
7034
  #
7020
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows
7035
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows
7021
7036
  # @return [String]
7022
7037
  #
7023
7038
  # @!attribute [rw] automated_snapshot_retention_period
@@ -7033,6 +7048,11 @@ module Aws::Redshift
7033
7048
  # @return [Integer]
7034
7049
  #
7035
7050
  # @!attribute [rw] manual_snapshot_retention_period
7051
+ # The default number of days to retain a manual snapshot. If the value
7052
+ # is -1, the snapshot is retained indefinitely. This setting doesn't
7053
+ # change the retention period of existing snapshots.
7054
+ #
7055
+ # The value must be either -1 or an integer between 1 and 3,653.
7036
7056
  # @return [Integer]
7037
7057
  #
7038
7058
  # @!attribute [rw] kms_key_id
@@ -7059,7 +7079,7 @@ module Aws::Redshift
7059
7079
  #
7060
7080
  #
7061
7081
  #
7062
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-about-clusters-and-nodes
7082
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-about-clusters-and-nodes
7063
7083
  # @return [String]
7064
7084
  #
7065
7085
  # @!attribute [rw] enhanced_vpc_routing
@@ -7075,7 +7095,7 @@ module Aws::Redshift
7075
7095
  #
7076
7096
  #
7077
7097
  #
7078
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
7098
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
7079
7099
  # @return [Boolean]
7080
7100
  #
7081
7101
  # @!attribute [rw] additional_info
@@ -7589,7 +7609,7 @@ module Aws::Redshift
7589
7609
  #
7590
7610
  #
7591
7611
  #
7592
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
7612
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/enhanced-vpc-routing.html
7593
7613
  # @return [Boolean]
7594
7614
  #
7595
7615
  # @!attribute [rw] maintenance_track_name
@@ -7662,7 +7682,7 @@ module Aws::Redshift
7662
7682
  #
7663
7683
  #
7664
7684
  #
7665
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html
7685
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html
7666
7686
  #
7667
7687
  # @!attribute [rw] snapshot_copy_grant_name
7668
7688
  # The name of the snapshot copy grant.
@@ -7767,7 +7787,7 @@ module Aws::Redshift
7767
7787
  # specific dates.
7768
7788
  #
7769
7789
  # @!attribute [rw] schedule_definitions
7770
- # A list of ScheduleDefinitions
7790
+ # A list of ScheduleDefinitions.
7771
7791
  # @return [Array<String>]
7772
7792
  #
7773
7793
  # @!attribute [rw] schedule_identifier
@@ -7786,9 +7806,12 @@ module Aws::Redshift
7786
7806
  # @return [Array<Time>]
7787
7807
  #
7788
7808
  # @!attribute [rw] associated_cluster_count
7809
+ # The number of clusters associated with the schedule.
7789
7810
  # @return [Integer]
7790
7811
  #
7791
7812
  # @!attribute [rw] associated_clusters
7813
+ # A list of clusters associated with the schedule. A maximum of 100
7814
+ # clusters is returned.
7792
7815
  # @return [Array<Types::ClusterAssociatedToSchedule>]
7793
7816
  #
7794
7817
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/SnapshotSchedule AWS API Documentation
@@ -7837,7 +7860,6 @@ module Aws::Redshift
7837
7860
  # @return [String]
7838
7861
  #
7839
7862
  # @!attribute [rw] subnet_availability_zone
7840
- # Describes an availability zone.
7841
7863
  # @return [Types::AvailabilityZone]
7842
7864
  #
7843
7865
  # @!attribute [rw] subnet_status
@@ -8053,7 +8075,7 @@ module Aws::Redshift
8053
8075
  #
8054
8076
  #
8055
8077
  #
8056
- # [1]: http://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-overview.html#redshift-iam-access-control-specify-actions
8078
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-overview.html#redshift-iam-access-control-specify-actions
8057
8079
  # @return [String]
8058
8080
  #
8059
8081
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/TaggedResource AWS API Documentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-redshift
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-22 00:00:00.000000000 Z
11
+ date: 2019-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core