aws-sdk-redshift 1.100.0 → 1.101.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: 3db7ac89d6b02321e5f620f09792b2e8190ebdd7c128393e6260fc98a0aabefc
4
- data.tar.gz: e4f13d91086b6bf740f0897b38d82c36425bd2270d46271a395bb8d501fc11f6
3
+ metadata.gz: ff9f269c8aa4771672a14516996129855fd0f812adbea6925b79062d8836c83d
4
+ data.tar.gz: c90e92715d144d18c36915f156c04ef9d37652ca38af92b9c0cc9c98a9f25fe3
5
5
  SHA512:
6
- metadata.gz: 89488448d7a364e44c275c015a0e81162b6da2511b9cfd04d93e355ea1b88148d6ae00d82ff997148fb5383aec0412b8d87a20e75fc03b31b90093e0ba6f0e64
7
- data.tar.gz: 3b619562b1fd304e80cc49ea6195221850fba9c5b33e5a00d9d7cfd26dcc20c9bcb2bdf614152ae292151bd2d0dd56e7d2bd857ac6e24a50806e9b6ea1abae42
6
+ metadata.gz: a80f0a2f3a6991f34a5945741a402a79724b37f410701999c26883e1869175978e7de55f121b18c4dff04216e5a6efcc9d6d88177b78272d0e6c69b43a907bfd
7
+ data.tar.gz: 93a3b35cfc4f7559266b70fe0bdc80d8920f374bbabaa0ad678510867a36e19c326c4da0f66603cc52c852adcf1332e7aca10a14cafe5e487a43dad858db082c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.101.0 (2023-10-27)
5
+ ------------------
6
+
7
+ * Feature - added support to create a dual stack cluster
8
+
4
9
  1.100.0 (2023-10-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.100.0
1
+ 1.101.0
@@ -1529,6 +1529,10 @@ module Aws::Redshift
1529
1529
  # store the cluster's admin credentials secret. You can only use this
1530
1530
  # parameter if `ManageMasterPassword` is true.
1531
1531
  #
1532
+ # @option params [String] :ip_address_type
1533
+ # The IP address types that the cluster supports. Possible values are
1534
+ # `ipv4` and `dualstack`.
1535
+ #
1532
1536
  # @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1533
1537
  #
1534
1538
  # * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
@@ -1577,6 +1581,7 @@ module Aws::Redshift
1577
1581
  # load_sample_data: "String",
1578
1582
  # manage_master_password: false,
1579
1583
  # master_password_secret_kms_key_id: "String",
1584
+ # ip_address_type: "String",
1580
1585
  # })
1581
1586
  #
1582
1587
  # @example Response structure
@@ -1598,6 +1603,7 @@ module Aws::Redshift
1598
1603
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
1599
1604
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
1600
1605
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
1606
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
1601
1607
  # resp.cluster.cluster_create_time #=> Time
1602
1608
  # resp.cluster.automated_snapshot_retention_period #=> Integer
1603
1609
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -1704,6 +1710,7 @@ module Aws::Redshift
1704
1710
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
1705
1711
  # resp.cluster.master_password_secret_arn #=> String
1706
1712
  # resp.cluster.master_password_secret_kms_key_id #=> String
1713
+ # resp.cluster.ip_address_type #=> String
1707
1714
  #
1708
1715
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
1709
1716
  #
@@ -2064,6 +2071,8 @@ module Aws::Redshift
2064
2071
  # resp.cluster_subnet_group.tags #=> Array
2065
2072
  # resp.cluster_subnet_group.tags[0].key #=> String
2066
2073
  # resp.cluster_subnet_group.tags[0].value #=> String
2074
+ # resp.cluster_subnet_group.supported_cluster_ip_address_types #=> Array
2075
+ # resp.cluster_subnet_group.supported_cluster_ip_address_types[0] #=> String
2067
2076
  #
2068
2077
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterSubnetGroup AWS API Documentation
2069
2078
  #
@@ -2187,6 +2196,7 @@ module Aws::Redshift
2187
2196
  # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
2188
2197
  # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
2189
2198
  # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
2199
+ # resp.vpc_endpoint.network_interfaces[0].ipv_6_address #=> String
2190
2200
  #
2191
2201
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateEndpointAccess AWS API Documentation
2192
2202
  #
@@ -3030,6 +3040,7 @@ module Aws::Redshift
3030
3040
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
3031
3041
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
3032
3042
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
3043
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
3033
3044
  # resp.cluster.cluster_create_time #=> Time
3034
3045
  # resp.cluster.automated_snapshot_retention_period #=> Integer
3035
3046
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -3136,6 +3147,7 @@ module Aws::Redshift
3136
3147
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
3137
3148
  # resp.cluster.master_password_secret_arn #=> String
3138
3149
  # resp.cluster.master_password_secret_kms_key_id #=> String
3150
+ # resp.cluster.ip_address_type #=> String
3139
3151
  #
3140
3152
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
3141
3153
  #
@@ -3393,6 +3405,7 @@ module Aws::Redshift
3393
3405
  # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
3394
3406
  # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
3395
3407
  # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
3408
+ # resp.vpc_endpoint.network_interfaces[0].ipv_6_address #=> String
3396
3409
  #
3397
3410
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteEndpointAccess AWS API Documentation
3398
3411
  #
@@ -4404,6 +4417,8 @@ module Aws::Redshift
4404
4417
  # resp.cluster_subnet_groups[0].tags #=> Array
4405
4418
  # resp.cluster_subnet_groups[0].tags[0].key #=> String
4406
4419
  # resp.cluster_subnet_groups[0].tags[0].value #=> String
4420
+ # resp.cluster_subnet_groups[0].supported_cluster_ip_address_types #=> Array
4421
+ # resp.cluster_subnet_groups[0].supported_cluster_ip_address_types[0] #=> String
4407
4422
  #
4408
4423
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeClusterSubnetGroups AWS API Documentation
4409
4424
  #
@@ -4652,6 +4667,7 @@ module Aws::Redshift
4652
4667
  # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
4653
4668
  # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
4654
4669
  # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
4670
+ # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
4655
4671
  # resp.clusters[0].cluster_create_time #=> Time
4656
4672
  # resp.clusters[0].automated_snapshot_retention_period #=> Integer
4657
4673
  # resp.clusters[0].manual_snapshot_retention_period #=> Integer
@@ -4758,6 +4774,7 @@ module Aws::Redshift
4758
4774
  # resp.clusters[0].custom_domain_certificate_expiry_date #=> Time
4759
4775
  # resp.clusters[0].master_password_secret_arn #=> String
4760
4776
  # resp.clusters[0].master_password_secret_kms_key_id #=> String
4777
+ # resp.clusters[0].ip_address_type #=> String
4761
4778
  #
4762
4779
  #
4763
4780
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -5159,6 +5176,7 @@ module Aws::Redshift
5159
5176
  # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].subnet_id #=> String
5160
5177
  # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].private_ip_address #=> String
5161
5178
  # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].availability_zone #=> String
5179
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].ipv_6_address #=> String
5162
5180
  # resp.marker #=> String
5163
5181
  #
5164
5182
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAccess AWS API Documentation
@@ -7031,6 +7049,7 @@ module Aws::Redshift
7031
7049
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
7032
7050
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
7033
7051
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
7052
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
7034
7053
  # resp.cluster.cluster_create_time #=> Time
7035
7054
  # resp.cluster.automated_snapshot_retention_period #=> Integer
7036
7055
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -7137,6 +7156,7 @@ module Aws::Redshift
7137
7156
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
7138
7157
  # resp.cluster.master_password_secret_arn #=> String
7139
7158
  # resp.cluster.master_password_secret_kms_key_id #=> String
7159
+ # resp.cluster.ip_address_type #=> String
7140
7160
  #
7141
7161
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
7142
7162
  #
@@ -7370,6 +7390,7 @@ module Aws::Redshift
7370
7390
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
7371
7391
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
7372
7392
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
7393
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
7373
7394
  # resp.cluster.cluster_create_time #=> Time
7374
7395
  # resp.cluster.automated_snapshot_retention_period #=> Integer
7375
7396
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -7476,6 +7497,7 @@ module Aws::Redshift
7476
7497
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
7477
7498
  # resp.cluster.master_password_secret_arn #=> String
7478
7499
  # resp.cluster.master_password_secret_kms_key_id #=> String
7500
+ # resp.cluster.ip_address_type #=> String
7479
7501
  #
7480
7502
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
7481
7503
  #
@@ -8263,6 +8285,10 @@ module Aws::Redshift
8263
8285
  # store the cluster's admin credentials secret. You can only use this
8264
8286
  # parameter if `ManageMasterPassword` is true.
8265
8287
  #
8288
+ # @option params [String] :ip_address_type
8289
+ # The IP address types that the cluster supports. Possible values are
8290
+ # `ipv4` and `dualstack`.
8291
+ #
8266
8292
  # @return [Types::ModifyClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8267
8293
  #
8268
8294
  # * {Types::ModifyClusterResult#cluster #cluster} => Types::Cluster
@@ -8297,6 +8323,7 @@ module Aws::Redshift
8297
8323
  # port: 1,
8298
8324
  # manage_master_password: false,
8299
8325
  # master_password_secret_kms_key_id: "String",
8326
+ # ip_address_type: "String",
8300
8327
  # })
8301
8328
  #
8302
8329
  # @example Response structure
@@ -8318,6 +8345,7 @@ module Aws::Redshift
8318
8345
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8319
8346
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8320
8347
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
8348
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
8321
8349
  # resp.cluster.cluster_create_time #=> Time
8322
8350
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8323
8351
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8424,6 +8452,7 @@ module Aws::Redshift
8424
8452
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8425
8453
  # resp.cluster.master_password_secret_arn #=> String
8426
8454
  # resp.cluster.master_password_secret_kms_key_id #=> String
8455
+ # resp.cluster.ip_address_type #=> String
8427
8456
  #
8428
8457
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
8429
8458
  #
@@ -8477,6 +8506,7 @@ module Aws::Redshift
8477
8506
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8478
8507
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8479
8508
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
8509
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
8480
8510
  # resp.cluster.cluster_create_time #=> Time
8481
8511
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8482
8512
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8583,6 +8613,7 @@ module Aws::Redshift
8583
8613
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8584
8614
  # resp.cluster.master_password_secret_arn #=> String
8585
8615
  # resp.cluster.master_password_secret_kms_key_id #=> String
8616
+ # resp.cluster.ip_address_type #=> String
8586
8617
  #
8587
8618
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
8588
8619
  #
@@ -8652,6 +8683,7 @@ module Aws::Redshift
8652
8683
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8653
8684
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8654
8685
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
8686
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
8655
8687
  # resp.cluster.cluster_create_time #=> Time
8656
8688
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8657
8689
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8758,6 +8790,7 @@ module Aws::Redshift
8758
8790
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8759
8791
  # resp.cluster.master_password_secret_arn #=> String
8760
8792
  # resp.cluster.master_password_secret_kms_key_id #=> String
8793
+ # resp.cluster.ip_address_type #=> String
8761
8794
  #
8762
8795
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
8763
8796
  #
@@ -8827,6 +8860,7 @@ module Aws::Redshift
8827
8860
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8828
8861
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8829
8862
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
8863
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
8830
8864
  # resp.cluster.cluster_create_time #=> Time
8831
8865
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8832
8866
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8933,6 +8967,7 @@ module Aws::Redshift
8933
8967
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8934
8968
  # resp.cluster.master_password_secret_arn #=> String
8935
8969
  # resp.cluster.master_password_secret_kms_key_id #=> String
8970
+ # resp.cluster.ip_address_type #=> String
8936
8971
  #
8937
8972
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
8938
8973
  #
@@ -9166,6 +9201,8 @@ module Aws::Redshift
9166
9201
  # resp.cluster_subnet_group.tags #=> Array
9167
9202
  # resp.cluster_subnet_group.tags[0].key #=> String
9168
9203
  # resp.cluster_subnet_group.tags[0].value #=> String
9204
+ # resp.cluster_subnet_group.supported_cluster_ip_address_types #=> Array
9205
+ # resp.cluster_subnet_group.supported_cluster_ip_address_types[0] #=> String
9169
9206
  #
9170
9207
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterSubnetGroup AWS API Documentation
9171
9208
  #
@@ -9269,6 +9306,7 @@ module Aws::Redshift
9269
9306
  # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
9270
9307
  # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
9271
9308
  # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
9309
+ # resp.vpc_endpoint.network_interfaces[0].ipv_6_address #=> String
9272
9310
  #
9273
9311
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyEndpointAccess AWS API Documentation
9274
9312
  #
@@ -9552,6 +9590,7 @@ module Aws::Redshift
9552
9590
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
9553
9591
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
9554
9592
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
9593
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
9555
9594
  # resp.cluster.cluster_create_time #=> Time
9556
9595
  # resp.cluster.automated_snapshot_retention_period #=> Integer
9557
9596
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -9658,6 +9697,7 @@ module Aws::Redshift
9658
9697
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
9659
9698
  # resp.cluster.master_password_secret_arn #=> String
9660
9699
  # resp.cluster.master_password_secret_kms_key_id #=> String
9700
+ # resp.cluster.ip_address_type #=> String
9661
9701
  #
9662
9702
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
9663
9703
  #
@@ -9810,6 +9850,7 @@ module Aws::Redshift
9810
9850
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
9811
9851
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
9812
9852
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
9853
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
9813
9854
  # resp.cluster.cluster_create_time #=> Time
9814
9855
  # resp.cluster.automated_snapshot_retention_period #=> Integer
9815
9856
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -9916,6 +9957,7 @@ module Aws::Redshift
9916
9957
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
9917
9958
  # resp.cluster.master_password_secret_arn #=> String
9918
9959
  # resp.cluster.master_password_secret_kms_key_id #=> String
9960
+ # resp.cluster.ip_address_type #=> String
9919
9961
  #
9920
9962
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
9921
9963
  #
@@ -10065,6 +10107,7 @@ module Aws::Redshift
10065
10107
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
10066
10108
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
10067
10109
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
10110
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
10068
10111
  # resp.cluster.cluster_create_time #=> Time
10069
10112
  # resp.cluster.automated_snapshot_retention_period #=> Integer
10070
10113
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -10171,6 +10214,7 @@ module Aws::Redshift
10171
10214
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10172
10215
  # resp.cluster.master_password_secret_arn #=> String
10173
10216
  # resp.cluster.master_password_secret_kms_key_id #=> String
10217
+ # resp.cluster.ip_address_type #=> String
10174
10218
  #
10175
10219
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
10176
10220
  #
@@ -10374,6 +10418,7 @@ module Aws::Redshift
10374
10418
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
10375
10419
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
10376
10420
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
10421
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
10377
10422
  # resp.cluster.cluster_create_time #=> Time
10378
10423
  # resp.cluster.automated_snapshot_retention_period #=> Integer
10379
10424
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -10480,6 +10525,7 @@ module Aws::Redshift
10480
10525
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10481
10526
  # resp.cluster.master_password_secret_arn #=> String
10482
10527
  # resp.cluster.master_password_secret_kms_key_id #=> String
10528
+ # resp.cluster.ip_address_type #=> String
10483
10529
  #
10484
10530
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
10485
10531
  #
@@ -10782,6 +10828,10 @@ module Aws::Redshift
10782
10828
  # store the cluster's admin credentials secret. You can only use this
10783
10829
  # parameter if `ManageMasterPassword` is true.
10784
10830
  #
10831
+ # @option params [String] :ip_address_type
10832
+ # The IP address type for the cluster. Possible values are `ipv4` and
10833
+ # `dualstack`.
10834
+ #
10785
10835
  # @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10786
10836
  #
10787
10837
  # * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
@@ -10824,6 +10874,7 @@ module Aws::Redshift
10824
10874
  # encrypted: false,
10825
10875
  # manage_master_password: false,
10826
10876
  # master_password_secret_kms_key_id: "String",
10877
+ # ip_address_type: "String",
10827
10878
  # })
10828
10879
  #
10829
10880
  # @example Response structure
@@ -10845,6 +10896,7 @@ module Aws::Redshift
10845
10896
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
10846
10897
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
10847
10898
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
10899
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
10848
10900
  # resp.cluster.cluster_create_time #=> Time
10849
10901
  # resp.cluster.automated_snapshot_retention_period #=> Integer
10850
10902
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -10951,6 +11003,7 @@ module Aws::Redshift
10951
11003
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10952
11004
  # resp.cluster.master_password_secret_arn #=> String
10953
11005
  # resp.cluster.master_password_secret_kms_key_id #=> String
11006
+ # resp.cluster.ip_address_type #=> String
10954
11007
  #
10955
11008
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
10956
11009
  #
@@ -11095,6 +11148,7 @@ module Aws::Redshift
11095
11148
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
11096
11149
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
11097
11150
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
11151
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
11098
11152
  # resp.cluster.cluster_create_time #=> Time
11099
11153
  # resp.cluster.automated_snapshot_retention_period #=> Integer
11100
11154
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -11201,6 +11255,7 @@ module Aws::Redshift
11201
11255
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
11202
11256
  # resp.cluster.master_password_secret_arn #=> String
11203
11257
  # resp.cluster.master_password_secret_kms_key_id #=> String
11258
+ # resp.cluster.ip_address_type #=> String
11204
11259
  #
11205
11260
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
11206
11261
  #
@@ -11481,6 +11536,7 @@ module Aws::Redshift
11481
11536
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
11482
11537
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
11483
11538
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
11539
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
11484
11540
  # resp.cluster.cluster_create_time #=> Time
11485
11541
  # resp.cluster.automated_snapshot_retention_period #=> Integer
11486
11542
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -11587,6 +11643,7 @@ module Aws::Redshift
11587
11643
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
11588
11644
  # resp.cluster.master_password_secret_arn #=> String
11589
11645
  # resp.cluster.master_password_secret_kms_key_id #=> String
11646
+ # resp.cluster.ip_address_type #=> String
11590
11647
  #
11591
11648
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
11592
11649
  #
@@ -11662,7 +11719,7 @@ module Aws::Redshift
11662
11719
  params: params,
11663
11720
  config: config)
11664
11721
  context[:gem_name] = 'aws-sdk-redshift'
11665
- context[:gem_version] = '1.100.0'
11722
+ context[:gem_version] = '1.101.0'
11666
11723
  Seahorse::Client::Request.new(handlers, context)
11667
11724
  end
11668
11725
 
@@ -345,6 +345,7 @@ module Aws::Redshift
345
345
  InvalidTagFault = Shapes::StructureShape.new(name: 'InvalidTagFault')
346
346
  InvalidUsageLimitFault = Shapes::StructureShape.new(name: 'InvalidUsageLimitFault')
347
347
  InvalidVPCNetworkStateFault = Shapes::StructureShape.new(name: 'InvalidVPCNetworkStateFault')
348
+ Ipv6CidrBlockNotFoundFault = Shapes::StructureShape.new(name: 'Ipv6CidrBlockNotFoundFault')
348
349
  LimitExceededFault = Shapes::StructureShape.new(name: 'LimitExceededFault')
349
350
  LogDestinationType = Shapes::StringShape.new(name: 'LogDestinationType')
350
351
  LogTypeList = Shapes::ListShape.new(name: 'LogTypeList')
@@ -767,6 +768,7 @@ module Aws::Redshift
767
768
  Cluster.add_member(:custom_domain_certificate_expiry_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "CustomDomainCertificateExpiryDate"))
768
769
  Cluster.add_member(:master_password_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "MasterPasswordSecretArn"))
769
770
  Cluster.add_member(:master_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterPasswordSecretKmsKeyId"))
771
+ Cluster.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "IpAddressType"))
770
772
  Cluster.struct_class = Types::Cluster
771
773
 
772
774
  ClusterAlreadyExistsFault.struct_class = Types::ClusterAlreadyExistsFault
@@ -902,6 +904,7 @@ module Aws::Redshift
902
904
  ClusterSubnetGroup.add_member(:subnet_group_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetGroupStatus"))
903
905
  ClusterSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
904
906
  ClusterSubnetGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
907
+ ClusterSubnetGroup.add_member(:supported_cluster_ip_address_types, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "SupportedClusterIpAddressTypes"))
905
908
  ClusterSubnetGroup.struct_class = Types::ClusterSubnetGroup
906
909
 
907
910
  ClusterSubnetGroupAlreadyExistsFault.struct_class = Types::ClusterSubnetGroupAlreadyExistsFault
@@ -990,6 +993,7 @@ module Aws::Redshift
990
993
  CreateClusterMessage.add_member(:load_sample_data, Shapes::ShapeRef.new(shape: String, location_name: "LoadSampleData"))
991
994
  CreateClusterMessage.add_member(:manage_master_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterPassword"))
992
995
  CreateClusterMessage.add_member(:master_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterPasswordSecretKmsKeyId"))
996
+ CreateClusterMessage.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "IpAddressType"))
993
997
  CreateClusterMessage.struct_class = Types::CreateClusterMessage
994
998
 
995
999
  CreateClusterParameterGroupMessage.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ParameterGroupName"))
@@ -1864,6 +1868,8 @@ module Aws::Redshift
1864
1868
 
1865
1869
  InvalidVPCNetworkStateFault.struct_class = Types::InvalidVPCNetworkStateFault
1866
1870
 
1871
+ Ipv6CidrBlockNotFoundFault.struct_class = Types::Ipv6CidrBlockNotFoundFault
1872
+
1867
1873
  LimitExceededFault.struct_class = Types::LimitExceededFault
1868
1874
 
1869
1875
  LogTypeList.member = Shapes::ShapeRef.new(shape: String)
@@ -1952,6 +1958,7 @@ module Aws::Redshift
1952
1958
  ModifyClusterMessage.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
1953
1959
  ModifyClusterMessage.add_member(:manage_master_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterPassword"))
1954
1960
  ModifyClusterMessage.add_member(:master_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterPasswordSecretKmsKeyId"))
1961
+ ModifyClusterMessage.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "IpAddressType"))
1955
1962
  ModifyClusterMessage.struct_class = Types::ModifyClusterMessage
1956
1963
 
1957
1964
  ModifyClusterParameterGroupMessage.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ParameterGroupName"))
@@ -2040,6 +2047,7 @@ module Aws::Redshift
2040
2047
  NetworkInterface.add_member(:subnet_id, Shapes::ShapeRef.new(shape: String, location_name: "SubnetId"))
2041
2048
  NetworkInterface.add_member(:private_ip_address, Shapes::ShapeRef.new(shape: String, location_name: "PrivateIpAddress"))
2042
2049
  NetworkInterface.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone"))
2050
+ NetworkInterface.add_member(:ipv_6_address, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6Address"))
2043
2051
  NetworkInterface.struct_class = Types::NetworkInterface
2044
2052
 
2045
2053
  NetworkInterfaceList.member = Shapes::ShapeRef.new(shape: NetworkInterface, location_name: "NetworkInterface")
@@ -2320,6 +2328,7 @@ module Aws::Redshift
2320
2328
  RestoreFromClusterSnapshotMessage.add_member(:encrypted, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "Encrypted"))
2321
2329
  RestoreFromClusterSnapshotMessage.add_member(:manage_master_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterPassword"))
2322
2330
  RestoreFromClusterSnapshotMessage.add_member(:master_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterPasswordSecretKmsKeyId"))
2331
+ RestoreFromClusterSnapshotMessage.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "IpAddressType"))
2323
2332
  RestoreFromClusterSnapshotMessage.struct_class = Types::RestoreFromClusterSnapshotMessage
2324
2333
 
2325
2334
  RestoreFromClusterSnapshotResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
@@ -2878,6 +2887,7 @@ module Aws::Redshift
2878
2887
  o.errors << Shapes::ShapeRef.new(shape: InvalidClusterTrackFault)
2879
2888
  o.errors << Shapes::ShapeRef.new(shape: SnapshotScheduleNotFoundFault)
2880
2889
  o.errors << Shapes::ShapeRef.new(shape: InvalidRetentionPeriodFault)
2890
+ o.errors << Shapes::ShapeRef.new(shape: Ipv6CidrBlockNotFoundFault)
2881
2891
  end)
2882
2892
 
2883
2893
  api.add_operation(:create_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
@@ -4031,6 +4041,7 @@ module Aws::Redshift
4031
4041
  o.errors << Shapes::ShapeRef.new(shape: InvalidRetentionPeriodFault)
4032
4042
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
4033
4043
  o.errors << Shapes::ShapeRef.new(shape: CustomCnameAssociationFault)
4044
+ o.errors << Shapes::ShapeRef.new(shape: Ipv6CidrBlockNotFoundFault)
4034
4045
  end)
4035
4046
 
4036
4047
  api.add_operation(:modify_cluster_db_revision, Seahorse::Model::Operation.new.tap do |o|
@@ -4324,6 +4335,7 @@ module Aws::Redshift
4324
4335
  o.errors << Shapes::ShapeRef.new(shape: DependentServiceUnavailableFault)
4325
4336
  o.errors << Shapes::ShapeRef.new(shape: ReservedNodeAlreadyExistsFault)
4326
4337
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
4338
+ o.errors << Shapes::ShapeRef.new(shape: Ipv6CidrBlockNotFoundFault)
4327
4339
  end)
4328
4340
 
4329
4341
  api.add_operation(:restore_table_from_cluster_snapshot, Seahorse::Model::Operation.new.tap do |o|
@@ -111,6 +111,7 @@ module Aws::Redshift
111
111
  # * {InvalidTagFault}
112
112
  # * {InvalidUsageLimitFault}
113
113
  # * {InvalidVPCNetworkStateFault}
114
+ # * {Ipv6CidrBlockNotFoundFault}
114
115
  # * {LimitExceededFault}
115
116
  # * {NumberOfNodesPerClusterLimitExceededFault}
116
117
  # * {NumberOfNodesQuotaExceededFault}
@@ -1005,6 +1006,16 @@ module Aws::Redshift
1005
1006
  end
1006
1007
  end
1007
1008
 
1009
+ class Ipv6CidrBlockNotFoundFault < ServiceError
1010
+
1011
+ # @param [Seahorse::Client::RequestContext] context
1012
+ # @param [String] message
1013
+ # @param [Aws::Redshift::Types::Ipv6CidrBlockNotFoundFault] data
1014
+ def initialize(context, message, data = Aws::EmptyStructure.new)
1015
+ super(context, message, data)
1016
+ end
1017
+ end
1018
+
1008
1019
  class LimitExceededFault < ServiceError
1009
1020
 
1010
1021
  # @param [Seahorse::Client::RequestContext] context
@@ -898,6 +898,11 @@ module Aws::Redshift
898
898
  # store the cluster's admin credentials secret.
899
899
  # @return [String]
900
900
  #
901
+ # @!attribute [rw] ip_address_type
902
+ # The IP address type for the cluster. Possible values are `ipv4` and
903
+ # `dualstack`.
904
+ # @return [String]
905
+ #
901
906
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
902
907
  #
903
908
  class Cluster < Struct.new(
@@ -957,7 +962,8 @@ module Aws::Redshift
957
962
  :custom_domain_certificate_arn,
958
963
  :custom_domain_certificate_expiry_date,
959
964
  :master_password_secret_arn,
960
- :master_password_secret_kms_key_id)
965
+ :master_password_secret_kms_key_id,
966
+ :ip_address_type)
961
967
  SENSITIVE = []
962
968
  include Aws::Structure
963
969
  end
@@ -1573,6 +1579,11 @@ module Aws::Redshift
1573
1579
  # The list of tags for the cluster subnet group.
1574
1580
  # @return [Array<Types::Tag>]
1575
1581
  #
1582
+ # @!attribute [rw] supported_cluster_ip_address_types
1583
+ # The IP address types supported by this cluster subnet group.
1584
+ # Possible values are `ipv4` and `dualstack`.
1585
+ # @return [Array<String>]
1586
+ #
1576
1587
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ClusterSubnetGroup AWS API Documentation
1577
1588
  #
1578
1589
  class ClusterSubnetGroup < Struct.new(
@@ -1581,7 +1592,8 @@ module Aws::Redshift
1581
1592
  :vpc_id,
1582
1593
  :subnet_group_status,
1583
1594
  :subnets,
1584
- :tags)
1595
+ :tags,
1596
+ :supported_cluster_ip_address_types)
1585
1597
  SENSITIVE = []
1586
1598
  include Aws::Structure
1587
1599
  end
@@ -2251,6 +2263,11 @@ module Aws::Redshift
2251
2263
  # parameter if `ManageMasterPassword` is true.
2252
2264
  # @return [String]
2253
2265
  #
2266
+ # @!attribute [rw] ip_address_type
2267
+ # The IP address types that the cluster supports. Possible values are
2268
+ # `ipv4` and `dualstack`.
2269
+ # @return [String]
2270
+ #
2254
2271
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
2255
2272
  #
2256
2273
  class CreateClusterMessage < Struct.new(
@@ -2289,7 +2306,8 @@ module Aws::Redshift
2289
2306
  :default_iam_role_arn,
2290
2307
  :load_sample_data,
2291
2308
  :manage_master_password,
2292
- :master_password_secret_kms_key_id)
2309
+ :master_password_secret_kms_key_id,
2310
+ :ip_address_type)
2293
2311
  SENSITIVE = [:master_user_password]
2294
2312
  include Aws::Structure
2295
2313
  end
@@ -7210,6 +7228,14 @@ module Aws::Redshift
7210
7228
  #
7211
7229
  class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
7212
7230
 
7231
+ # There are no subnets in your VPC with associated IPv6 CIDR blocks. To
7232
+ # use dual-stack mode, associate an IPv6 CIDR block with each subnet in
7233
+ # your VPC.
7234
+ #
7235
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Ipv6CidrBlockNotFoundFault AWS API Documentation
7236
+ #
7237
+ class Ipv6CidrBlockNotFoundFault < Aws::EmptyStructure; end
7238
+
7213
7239
  # The encryption key has exceeded its grant limit in Amazon Web Services
7214
7240
  # KMS.
7215
7241
  #
@@ -7804,6 +7830,11 @@ module Aws::Redshift
7804
7830
  # parameter if `ManageMasterPassword` is true.
7805
7831
  # @return [String]
7806
7832
  #
7833
+ # @!attribute [rw] ip_address_type
7834
+ # The IP address types that the cluster supports. Possible values are
7835
+ # `ipv4` and `dualstack`.
7836
+ # @return [String]
7837
+ #
7807
7838
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMessage AWS API Documentation
7808
7839
  #
7809
7840
  class ModifyClusterMessage < Struct.new(
@@ -7833,7 +7864,8 @@ module Aws::Redshift
7833
7864
  :availability_zone,
7834
7865
  :port,
7835
7866
  :manage_master_password,
7836
- :master_password_secret_kms_key_id)
7867
+ :master_password_secret_kms_key_id,
7868
+ :ip_address_type)
7837
7869
  SENSITIVE = [:master_user_password]
7838
7870
  include Aws::Structure
7839
7871
  end
@@ -8309,13 +8341,18 @@ module Aws::Redshift
8309
8341
  # The Availability Zone.
8310
8342
  # @return [String]
8311
8343
  #
8344
+ # @!attribute [rw] ipv_6_address
8345
+ # The IPv6 address of the network interface within the subnet.
8346
+ # @return [String]
8347
+ #
8312
8348
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/NetworkInterface AWS API Documentation
8313
8349
  #
8314
8350
  class NetworkInterface < Struct.new(
8315
8351
  :network_interface_id,
8316
8352
  :subnet_id,
8317
8353
  :private_ip_address,
8318
- :availability_zone)
8354
+ :availability_zone,
8355
+ :ipv_6_address)
8319
8356
  SENSITIVE = []
8320
8357
  include Aws::Structure
8321
8358
  end
@@ -9760,6 +9797,11 @@ module Aws::Redshift
9760
9797
  # parameter if `ManageMasterPassword` is true.
9761
9798
  # @return [String]
9762
9799
  #
9800
+ # @!attribute [rw] ip_address_type
9801
+ # The IP address type for the cluster. Possible values are `ipv4` and
9802
+ # `dualstack`.
9803
+ # @return [String]
9804
+ #
9763
9805
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
9764
9806
  #
9765
9807
  class RestoreFromClusterSnapshotMessage < Struct.new(
@@ -9797,7 +9839,8 @@ module Aws::Redshift
9797
9839
  :target_reserved_node_offering_id,
9798
9840
  :encrypted,
9799
9841
  :manage_master_password,
9800
- :master_password_secret_kms_key_id)
9842
+ :master_password_secret_kms_key_id,
9843
+ :ip_address_type)
9801
9844
  SENSITIVE = []
9802
9845
  include Aws::Structure
9803
9846
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-redshift/customizations'
53
53
  # @!group service
54
54
  module Aws::Redshift
55
55
 
56
- GEM_VERSION = '1.100.0'
56
+ GEM_VERSION = '1.101.0'
57
57
 
58
58
  end
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.100.0
4
+ version: 1.101.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: 2023-10-26 00:00:00.000000000 Z
11
+ date: 2023-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core