aws-sdk-redshift 1.99.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: ecebc756b8a58ea588494fe842ec7c35a83844044cc876c3e6f5b71148cfe3e1
4
- data.tar.gz: f1cc1ee1262b1104ab3e0a360315ca9211ea1ea56e6446b24518b033d24ec766
3
+ metadata.gz: ff9f269c8aa4771672a14516996129855fd0f812adbea6925b79062d8836c83d
4
+ data.tar.gz: c90e92715d144d18c36915f156c04ef9d37652ca38af92b9c0cc9c98a9f25fe3
5
5
  SHA512:
6
- metadata.gz: 5554355f76cc93a2d160bf5ec29e4334460147e2d1975af9d4f74c865d2d2e8171dd1b394cbb6d5549e8321952595c99a56bd68f6b5cdb3017b43fca201d4c83
7
- data.tar.gz: 141d9810c4170d0678525e84908af65cfea578686e091a1ae9528a83257d033d9158b98f46fd7d063799e2476a4279320628585d5fa677e3834b5c0b7baec87e
6
+ metadata.gz: a80f0a2f3a6991f34a5945741a402a79724b37f410701999c26883e1869175978e7de55f121b18c4dff04216e5a6efcc9d6d88177b78272d0e6c69b43a907bfd
7
+ data.tar.gz: 93a3b35cfc4f7559266b70fe0bdc80d8920f374bbabaa0ad678510867a36e19c326c4da0f66603cc52c852adcf1332e7aca10a14cafe5e487a43dad858db082c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.100.0 (2023-10-26)
10
+ ------------------
11
+
12
+ * Feature - Add Redshift APIs GetResourcePolicy, DeleteResourcePolicy, PutResourcePolicy and DescribeInboundIntegrations for the new Amazon Redshift Zero-ETL integration feature, which can be used to control data ingress into Redshift namespace, and view inbound integrations.
13
+
4
14
  1.99.0 (2023-10-16)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.99.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
  #
@@ -3515,6 +3528,29 @@ module Aws::Redshift
3515
3528
  req.send_request(options)
3516
3529
  end
3517
3530
 
3531
+ # Deletes the resource policy for a specified resource.
3532
+ #
3533
+ # @option params [required, String] :resource_arn
3534
+ # The Amazon Resource Name (ARN) of the resource of which its resource
3535
+ # policy is deleted.
3536
+ #
3537
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3538
+ #
3539
+ # @example Request syntax with placeholder values
3540
+ #
3541
+ # resp = client.delete_resource_policy({
3542
+ # resource_arn: "String", # required
3543
+ # })
3544
+ #
3545
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteResourcePolicy AWS API Documentation
3546
+ #
3547
+ # @overload delete_resource_policy(params = {})
3548
+ # @param [Hash] params ({})
3549
+ def delete_resource_policy(params = {}, options = {})
3550
+ req = build_request(:delete_resource_policy, params)
3551
+ req.send_request(options)
3552
+ end
3553
+
3518
3554
  # Deletes a scheduled action.
3519
3555
  #
3520
3556
  # @option params [required, String] :scheduled_action_name
@@ -4381,6 +4417,8 @@ module Aws::Redshift
4381
4417
  # resp.cluster_subnet_groups[0].tags #=> Array
4382
4418
  # resp.cluster_subnet_groups[0].tags[0].key #=> String
4383
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
4384
4422
  #
4385
4423
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeClusterSubnetGroups AWS API Documentation
4386
4424
  #
@@ -4629,6 +4667,7 @@ module Aws::Redshift
4629
4667
  # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
4630
4668
  # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
4631
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
4632
4671
  # resp.clusters[0].cluster_create_time #=> Time
4633
4672
  # resp.clusters[0].automated_snapshot_retention_period #=> Integer
4634
4673
  # resp.clusters[0].manual_snapshot_retention_period #=> Integer
@@ -4735,6 +4774,7 @@ module Aws::Redshift
4735
4774
  # resp.clusters[0].custom_domain_certificate_expiry_date #=> Time
4736
4775
  # resp.clusters[0].master_password_secret_arn #=> String
4737
4776
  # resp.clusters[0].master_password_secret_kms_key_id #=> String
4777
+ # resp.clusters[0].ip_address_type #=> String
4738
4778
  #
4739
4779
  #
4740
4780
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -5136,6 +5176,7 @@ module Aws::Redshift
5136
5176
  # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].subnet_id #=> String
5137
5177
  # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].private_ip_address #=> String
5138
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
5139
5180
  # resp.marker #=> String
5140
5181
  #
5141
5182
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAccess AWS API Documentation
@@ -5691,6 +5732,73 @@ module Aws::Redshift
5691
5732
  req.send_request(options)
5692
5733
  end
5693
5734
 
5735
+ # Returns a list of inbound integrations.
5736
+ #
5737
+ # @option params [String] :integration_arn
5738
+ # The Amazon Resource Name (ARN) of the inbound integration.
5739
+ #
5740
+ # @option params [String] :target_arn
5741
+ # The Amazon Resource Name (ARN) of the target of an inbound
5742
+ # integration.
5743
+ #
5744
+ # @option params [Integer] :max_records
5745
+ # The maximum number of response records to return in each call. If the
5746
+ # number of remaining response records exceeds the specified
5747
+ # `MaxRecords` value, a value is returned in a `marker` field of the
5748
+ # response. You can retrieve the next set of records by retrying the
5749
+ # command with the returned marker value.
5750
+ #
5751
+ # Default: `100`
5752
+ #
5753
+ # Constraints: minimum 20, maximum 100.
5754
+ #
5755
+ # @option params [String] :marker
5756
+ # An optional parameter that specifies the starting point to return a
5757
+ # set of response records. When the results of a
5758
+ # DescribeInboundIntegrations request exceed the value specified in
5759
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
5760
+ # field of the response. You can retrieve the next set of response
5761
+ # records by providing the returned marker value in the `Marker`
5762
+ # parameter and retrying the request.
5763
+ #
5764
+ # @return [Types::InboundIntegrationsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5765
+ #
5766
+ # * {Types::InboundIntegrationsMessage#marker #marker} => String
5767
+ # * {Types::InboundIntegrationsMessage#inbound_integrations #inbound_integrations} => Array<Types::InboundIntegration>
5768
+ #
5769
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5770
+ #
5771
+ # @example Request syntax with placeholder values
5772
+ #
5773
+ # resp = client.describe_inbound_integrations({
5774
+ # integration_arn: "String",
5775
+ # target_arn: "String",
5776
+ # max_records: 1,
5777
+ # marker: "String",
5778
+ # })
5779
+ #
5780
+ # @example Response structure
5781
+ #
5782
+ # resp.marker #=> String
5783
+ # resp.inbound_integrations #=> Array
5784
+ # resp.inbound_integrations[0].integration_arn #=> String
5785
+ # resp.inbound_integrations[0].source_arn #=> String
5786
+ # resp.inbound_integrations[0].target_arn #=> String
5787
+ # resp.inbound_integrations[0].status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
5788
+ # resp.inbound_integrations[0].errors #=> Array
5789
+ # resp.inbound_integrations[0].errors[0].error_code #=> String
5790
+ # resp.inbound_integrations[0].errors[0].error_message #=> String
5791
+ # resp.inbound_integrations[0].create_time #=> Time
5792
+ #
5793
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeInboundIntegrations AWS API Documentation
5794
+ #
5795
+ # @overload describe_inbound_integrations(params = {})
5796
+ # @param [Hash] params ({})
5797
+ def describe_inbound_integrations(params = {}, options = {})
5798
+ req = build_request(:describe_inbound_integrations, params)
5799
+ req.send_request(options)
5800
+ end
5801
+
5694
5802
  # Describes whether information, such as queries and connection
5695
5803
  # attempts, is being logged for the specified Amazon Redshift cluster.
5696
5804
  #
@@ -6941,6 +7049,7 @@ module Aws::Redshift
6941
7049
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
6942
7050
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
6943
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
6944
7053
  # resp.cluster.cluster_create_time #=> Time
6945
7054
  # resp.cluster.automated_snapshot_retention_period #=> Integer
6946
7055
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -7047,6 +7156,7 @@ module Aws::Redshift
7047
7156
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
7048
7157
  # resp.cluster.master_password_secret_arn #=> String
7049
7158
  # resp.cluster.master_password_secret_kms_key_id #=> String
7159
+ # resp.cluster.ip_address_type #=> String
7050
7160
  #
7051
7161
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
7052
7162
  #
@@ -7280,6 +7390,7 @@ module Aws::Redshift
7280
7390
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
7281
7391
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
7282
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
7283
7394
  # resp.cluster.cluster_create_time #=> Time
7284
7395
  # resp.cluster.automated_snapshot_retention_period #=> Integer
7285
7396
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -7386,6 +7497,7 @@ module Aws::Redshift
7386
7497
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
7387
7498
  # resp.cluster.master_password_secret_arn #=> String
7388
7499
  # resp.cluster.master_password_secret_kms_key_id #=> String
7500
+ # resp.cluster.ip_address_type #=> String
7389
7501
  #
7390
7502
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
7391
7503
  #
@@ -7774,6 +7886,36 @@ module Aws::Redshift
7774
7886
  req.send_request(options)
7775
7887
  end
7776
7888
 
7889
+ # Get the resource policy for a specified resource.
7890
+ #
7891
+ # @option params [required, String] :resource_arn
7892
+ # The Amazon Resource Name (ARN) of the resource of which its resource
7893
+ # policy is fetched.
7894
+ #
7895
+ # @return [Types::GetResourcePolicyResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7896
+ #
7897
+ # * {Types::GetResourcePolicyResult#resource_policy #resource_policy} => Types::ResourcePolicy
7898
+ #
7899
+ # @example Request syntax with placeholder values
7900
+ #
7901
+ # resp = client.get_resource_policy({
7902
+ # resource_arn: "String", # required
7903
+ # })
7904
+ #
7905
+ # @example Response structure
7906
+ #
7907
+ # resp.resource_policy.resource_arn #=> String
7908
+ # resp.resource_policy.policy #=> String
7909
+ #
7910
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetResourcePolicy AWS API Documentation
7911
+ #
7912
+ # @overload get_resource_policy(params = {})
7913
+ # @param [Hash] params ({})
7914
+ def get_resource_policy(params = {}, options = {})
7915
+ req = build_request(:get_resource_policy, params)
7916
+ req.send_request(options)
7917
+ end
7918
+
7777
7919
  # This operation is retired. Calling this operation does not change AQUA
7778
7920
  # configuration. Amazon Redshift automatically determines whether to use
7779
7921
  # AQUA (Advanced Query Accelerator).
@@ -8143,6 +8285,10 @@ module Aws::Redshift
8143
8285
  # store the cluster's admin credentials secret. You can only use this
8144
8286
  # parameter if `ManageMasterPassword` is true.
8145
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
+ #
8146
8292
  # @return [Types::ModifyClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8147
8293
  #
8148
8294
  # * {Types::ModifyClusterResult#cluster #cluster} => Types::Cluster
@@ -8177,6 +8323,7 @@ module Aws::Redshift
8177
8323
  # port: 1,
8178
8324
  # manage_master_password: false,
8179
8325
  # master_password_secret_kms_key_id: "String",
8326
+ # ip_address_type: "String",
8180
8327
  # })
8181
8328
  #
8182
8329
  # @example Response structure
@@ -8198,6 +8345,7 @@ module Aws::Redshift
8198
8345
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8199
8346
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8200
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
8201
8349
  # resp.cluster.cluster_create_time #=> Time
8202
8350
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8203
8351
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8304,6 +8452,7 @@ module Aws::Redshift
8304
8452
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8305
8453
  # resp.cluster.master_password_secret_arn #=> String
8306
8454
  # resp.cluster.master_password_secret_kms_key_id #=> String
8455
+ # resp.cluster.ip_address_type #=> String
8307
8456
  #
8308
8457
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
8309
8458
  #
@@ -8357,6 +8506,7 @@ module Aws::Redshift
8357
8506
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8358
8507
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8359
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
8360
8510
  # resp.cluster.cluster_create_time #=> Time
8361
8511
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8362
8512
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8463,6 +8613,7 @@ module Aws::Redshift
8463
8613
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8464
8614
  # resp.cluster.master_password_secret_arn #=> String
8465
8615
  # resp.cluster.master_password_secret_kms_key_id #=> String
8616
+ # resp.cluster.ip_address_type #=> String
8466
8617
  #
8467
8618
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
8468
8619
  #
@@ -8532,6 +8683,7 @@ module Aws::Redshift
8532
8683
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8533
8684
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8534
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
8535
8687
  # resp.cluster.cluster_create_time #=> Time
8536
8688
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8537
8689
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8638,6 +8790,7 @@ module Aws::Redshift
8638
8790
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8639
8791
  # resp.cluster.master_password_secret_arn #=> String
8640
8792
  # resp.cluster.master_password_secret_kms_key_id #=> String
8793
+ # resp.cluster.ip_address_type #=> String
8641
8794
  #
8642
8795
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
8643
8796
  #
@@ -8707,6 +8860,7 @@ module Aws::Redshift
8707
8860
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8708
8861
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8709
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
8710
8864
  # resp.cluster.cluster_create_time #=> Time
8711
8865
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8712
8866
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8813,6 +8967,7 @@ module Aws::Redshift
8813
8967
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8814
8968
  # resp.cluster.master_password_secret_arn #=> String
8815
8969
  # resp.cluster.master_password_secret_kms_key_id #=> String
8970
+ # resp.cluster.ip_address_type #=> String
8816
8971
  #
8817
8972
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
8818
8973
  #
@@ -9046,6 +9201,8 @@ module Aws::Redshift
9046
9201
  # resp.cluster_subnet_group.tags #=> Array
9047
9202
  # resp.cluster_subnet_group.tags[0].key #=> String
9048
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
9049
9206
  #
9050
9207
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterSubnetGroup AWS API Documentation
9051
9208
  #
@@ -9149,6 +9306,7 @@ module Aws::Redshift
9149
9306
  # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
9150
9307
  # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
9151
9308
  # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
9309
+ # resp.vpc_endpoint.network_interfaces[0].ipv_6_address #=> String
9152
9310
  #
9153
9311
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyEndpointAccess AWS API Documentation
9154
9312
  #
@@ -9432,6 +9590,7 @@ module Aws::Redshift
9432
9590
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
9433
9591
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
9434
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
9435
9594
  # resp.cluster.cluster_create_time #=> Time
9436
9595
  # resp.cluster.automated_snapshot_retention_period #=> Integer
9437
9596
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -9538,6 +9697,7 @@ module Aws::Redshift
9538
9697
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
9539
9698
  # resp.cluster.master_password_secret_arn #=> String
9540
9699
  # resp.cluster.master_password_secret_kms_key_id #=> String
9700
+ # resp.cluster.ip_address_type #=> String
9541
9701
  #
9542
9702
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
9543
9703
  #
@@ -9690,6 +9850,7 @@ module Aws::Redshift
9690
9850
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
9691
9851
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
9692
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
9693
9854
  # resp.cluster.cluster_create_time #=> Time
9694
9855
  # resp.cluster.automated_snapshot_retention_period #=> Integer
9695
9856
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -9796,6 +9957,7 @@ module Aws::Redshift
9796
9957
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
9797
9958
  # resp.cluster.master_password_secret_arn #=> String
9798
9959
  # resp.cluster.master_password_secret_kms_key_id #=> String
9960
+ # resp.cluster.ip_address_type #=> String
9799
9961
  #
9800
9962
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
9801
9963
  #
@@ -9867,6 +10029,40 @@ module Aws::Redshift
9867
10029
  req.send_request(options)
9868
10030
  end
9869
10031
 
10032
+ # Updates the resource policy for a specified resource.
10033
+ #
10034
+ # @option params [required, String] :resource_arn
10035
+ # The Amazon Resource Name (ARN) of the resource of which its resource
10036
+ # policy is updated.
10037
+ #
10038
+ # @option params [required, String] :policy
10039
+ # The content of the resource policy being updated.
10040
+ #
10041
+ # @return [Types::PutResourcePolicyResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10042
+ #
10043
+ # * {Types::PutResourcePolicyResult#resource_policy #resource_policy} => Types::ResourcePolicy
10044
+ #
10045
+ # @example Request syntax with placeholder values
10046
+ #
10047
+ # resp = client.put_resource_policy({
10048
+ # resource_arn: "String", # required
10049
+ # policy: "String", # required
10050
+ # })
10051
+ #
10052
+ # @example Response structure
10053
+ #
10054
+ # resp.resource_policy.resource_arn #=> String
10055
+ # resp.resource_policy.policy #=> String
10056
+ #
10057
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PutResourcePolicy AWS API Documentation
10058
+ #
10059
+ # @overload put_resource_policy(params = {})
10060
+ # @param [Hash] params ({})
10061
+ def put_resource_policy(params = {}, options = {})
10062
+ req = build_request(:put_resource_policy, params)
10063
+ req.send_request(options)
10064
+ end
10065
+
9870
10066
  # Reboots a cluster. This action is taken as soon as possible. It
9871
10067
  # results in a momentary outage to the cluster, during which the cluster
9872
10068
  # status is set to `rebooting`. A cluster event is created when the
@@ -9911,6 +10107,7 @@ module Aws::Redshift
9911
10107
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
9912
10108
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
9913
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
9914
10111
  # resp.cluster.cluster_create_time #=> Time
9915
10112
  # resp.cluster.automated_snapshot_retention_period #=> Integer
9916
10113
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -10017,6 +10214,7 @@ module Aws::Redshift
10017
10214
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10018
10215
  # resp.cluster.master_password_secret_arn #=> String
10019
10216
  # resp.cluster.master_password_secret_kms_key_id #=> String
10217
+ # resp.cluster.ip_address_type #=> String
10020
10218
  #
10021
10219
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
10022
10220
  #
@@ -10220,6 +10418,7 @@ module Aws::Redshift
10220
10418
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
10221
10419
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
10222
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
10223
10422
  # resp.cluster.cluster_create_time #=> Time
10224
10423
  # resp.cluster.automated_snapshot_retention_period #=> Integer
10225
10424
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -10326,6 +10525,7 @@ module Aws::Redshift
10326
10525
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10327
10526
  # resp.cluster.master_password_secret_arn #=> String
10328
10527
  # resp.cluster.master_password_secret_kms_key_id #=> String
10528
+ # resp.cluster.ip_address_type #=> String
10329
10529
  #
10330
10530
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
10331
10531
  #
@@ -10628,6 +10828,10 @@ module Aws::Redshift
10628
10828
  # store the cluster's admin credentials secret. You can only use this
10629
10829
  # parameter if `ManageMasterPassword` is true.
10630
10830
  #
10831
+ # @option params [String] :ip_address_type
10832
+ # The IP address type for the cluster. Possible values are `ipv4` and
10833
+ # `dualstack`.
10834
+ #
10631
10835
  # @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10632
10836
  #
10633
10837
  # * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
@@ -10670,6 +10874,7 @@ module Aws::Redshift
10670
10874
  # encrypted: false,
10671
10875
  # manage_master_password: false,
10672
10876
  # master_password_secret_kms_key_id: "String",
10877
+ # ip_address_type: "String",
10673
10878
  # })
10674
10879
  #
10675
10880
  # @example Response structure
@@ -10691,6 +10896,7 @@ module Aws::Redshift
10691
10896
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
10692
10897
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
10693
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
10694
10900
  # resp.cluster.cluster_create_time #=> Time
10695
10901
  # resp.cluster.automated_snapshot_retention_period #=> Integer
10696
10902
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -10797,6 +11003,7 @@ module Aws::Redshift
10797
11003
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10798
11004
  # resp.cluster.master_password_secret_arn #=> String
10799
11005
  # resp.cluster.master_password_secret_kms_key_id #=> String
11006
+ # resp.cluster.ip_address_type #=> String
10800
11007
  #
10801
11008
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
10802
11009
  #
@@ -10941,6 +11148,7 @@ module Aws::Redshift
10941
11148
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
10942
11149
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
10943
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
10944
11152
  # resp.cluster.cluster_create_time #=> Time
10945
11153
  # resp.cluster.automated_snapshot_retention_period #=> Integer
10946
11154
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -11047,6 +11255,7 @@ module Aws::Redshift
11047
11255
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
11048
11256
  # resp.cluster.master_password_secret_arn #=> String
11049
11257
  # resp.cluster.master_password_secret_kms_key_id #=> String
11258
+ # resp.cluster.ip_address_type #=> String
11050
11259
  #
11051
11260
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
11052
11261
  #
@@ -11327,6 +11536,7 @@ module Aws::Redshift
11327
11536
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
11328
11537
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
11329
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
11330
11540
  # resp.cluster.cluster_create_time #=> Time
11331
11541
  # resp.cluster.automated_snapshot_retention_period #=> Integer
11332
11542
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -11433,6 +11643,7 @@ module Aws::Redshift
11433
11643
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
11434
11644
  # resp.cluster.master_password_secret_arn #=> String
11435
11645
  # resp.cluster.master_password_secret_kms_key_id #=> String
11646
+ # resp.cluster.ip_address_type #=> String
11436
11647
  #
11437
11648
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
11438
11649
  #
@@ -11508,7 +11719,7 @@ module Aws::Redshift
11508
11719
  params: params,
11509
11720
  config: config)
11510
11721
  context[:gem_name] = 'aws-sdk-redshift'
11511
- context[:gem_version] = '1.99.0'
11722
+ context[:gem_version] = '1.101.0'
11512
11723
  Seahorse::Client::Request.new(handlers, context)
11513
11724
  end
11514
11725