aws-sdk-redshift 1.149.0 → 1.151.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +245 -1
- data/lib/aws-sdk-redshift/client_api.rb +89 -0
- data/lib/aws-sdk-redshift/errors.rb +14 -0
- data/lib/aws-sdk-redshift/types.rb +286 -3
- data/lib/aws-sdk-redshift.rb +1 -1
- data/sig/client.rbs +49 -2
- data/sig/errors.rbs +2 -0
- data/sig/types.rbs +58 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c421f5619fbc276891d027b30e522705e4de4cf982edcf975b16aac7ed053b60
|
|
4
|
+
data.tar.gz: 292e425631fffa177e8a2b60b092784d15ce43897b963fa531fd833828112c07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e206819b094d24b8b4a99e548dfb29b967a963317ac9965219c21ac2aed55168a0e11ba78d76fc7778605526e53b6e9c67b9dcf79fe32d6a06cf9ca1b450872
|
|
7
|
+
data.tar.gz: 0f7b008c6f58cfe63d6f21a74a29103213696caa61eaa57106eef06de6e89d0ec47e0f09b83fac9fbc3f159fc855798a76addf66e5a148386e7d620bf4e6d616
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.151.0 (2025-11-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation.
|
|
8
|
+
|
|
9
|
+
1.150.0 (2025-11-12)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated applications. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages.
|
|
13
|
+
|
|
4
14
|
1.149.0 (2025-10-31)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.151.0
|
|
@@ -1682,6 +1682,21 @@ module Aws::Redshift
|
|
|
1682
1682
|
# The Amazon resource name (ARN) of the Amazon Redshift IAM Identity
|
|
1683
1683
|
# Center application.
|
|
1684
1684
|
#
|
|
1685
|
+
# @option params [String] :catalog_name
|
|
1686
|
+
# The name of the Glue data catalog that will be associated with the
|
|
1687
|
+
# cluster enabled with Amazon Redshift federated permissions.
|
|
1688
|
+
#
|
|
1689
|
+
# Constraints:
|
|
1690
|
+
#
|
|
1691
|
+
# * Must contain at least one lowercase letter.
|
|
1692
|
+
#
|
|
1693
|
+
# * Can only contain lowercase letters (a-z), numbers (0-9), underscores
|
|
1694
|
+
# (\_), and hyphens (-).
|
|
1695
|
+
#
|
|
1696
|
+
# Pattern: `^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$`
|
|
1697
|
+
#
|
|
1698
|
+
# Example: `my-catalog_01`
|
|
1699
|
+
#
|
|
1685
1700
|
# @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1686
1701
|
#
|
|
1687
1702
|
# * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
|
|
@@ -1733,6 +1748,7 @@ module Aws::Redshift
|
|
|
1733
1748
|
# ip_address_type: "String",
|
|
1734
1749
|
# multi_az: false,
|
|
1735
1750
|
# redshift_idc_application_arn: "String",
|
|
1751
|
+
# catalog_name: "CatalogNameString",
|
|
1736
1752
|
# })
|
|
1737
1753
|
#
|
|
1738
1754
|
# @example Response structure
|
|
@@ -1868,6 +1884,8 @@ module Aws::Redshift
|
|
|
1868
1884
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
1869
1885
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
1870
1886
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
1887
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
1888
|
+
# resp.cluster.catalog_arn #=> String
|
|
1871
1889
|
#
|
|
1872
1890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
|
|
1873
1891
|
#
|
|
@@ -2766,6 +2784,11 @@ module Aws::Redshift
|
|
|
2766
2784
|
# A collection of service integrations for the Redshift IAM Identity
|
|
2767
2785
|
# Center application.
|
|
2768
2786
|
#
|
|
2787
|
+
# @option params [String] :application_type
|
|
2788
|
+
# The type of application being created. Valid values are `None` or
|
|
2789
|
+
# `Lakehouse`. Use `Lakehouse` to enable Amazon Redshift federated
|
|
2790
|
+
# permissions on cluster.
|
|
2791
|
+
#
|
|
2769
2792
|
# @option params [Array<Types::Tag>] :tags
|
|
2770
2793
|
# A list of tags.
|
|
2771
2794
|
#
|
|
@@ -2808,8 +2831,16 @@ module Aws::Redshift
|
|
|
2808
2831
|
# },
|
|
2809
2832
|
# },
|
|
2810
2833
|
# ],
|
|
2834
|
+
# redshift: [
|
|
2835
|
+
# {
|
|
2836
|
+
# connect: {
|
|
2837
|
+
# authorization: "Enabled", # required, accepts Enabled, Disabled
|
|
2838
|
+
# },
|
|
2839
|
+
# },
|
|
2840
|
+
# ],
|
|
2811
2841
|
# },
|
|
2812
2842
|
# ],
|
|
2843
|
+
# application_type: "None", # accepts None, Lakehouse
|
|
2813
2844
|
# tags: [
|
|
2814
2845
|
# {
|
|
2815
2846
|
# key: "String",
|
|
@@ -2838,6 +2869,9 @@ module Aws::Redshift
|
|
|
2838
2869
|
# resp.redshift_idc_application.service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
|
|
2839
2870
|
# resp.redshift_idc_application.service_integrations[0].s3_access_grants #=> Array
|
|
2840
2871
|
# resp.redshift_idc_application.service_integrations[0].s3_access_grants[0].read_write_access.authorization #=> String, one of "Enabled", "Disabled"
|
|
2872
|
+
# resp.redshift_idc_application.service_integrations[0].redshift #=> Array
|
|
2873
|
+
# resp.redshift_idc_application.service_integrations[0].redshift[0].connect.authorization #=> String, one of "Enabled", "Disabled"
|
|
2874
|
+
# resp.redshift_idc_application.application_type #=> String, one of "None", "Lakehouse"
|
|
2841
2875
|
# resp.redshift_idc_application.tags #=> Array
|
|
2842
2876
|
# resp.redshift_idc_application.tags[0].key #=> String
|
|
2843
2877
|
# resp.redshift_idc_application.tags[0].value #=> String
|
|
@@ -3534,6 +3568,8 @@ module Aws::Redshift
|
|
|
3534
3568
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
3535
3569
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
3536
3570
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
3571
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
3572
|
+
# resp.cluster.catalog_arn #=> String
|
|
3537
3573
|
#
|
|
3538
3574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
|
|
3539
3575
|
#
|
|
@@ -5292,6 +5328,8 @@ module Aws::Redshift
|
|
|
5292
5328
|
# resp.clusters[0].multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
5293
5329
|
# resp.clusters[0].multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
5294
5330
|
# resp.clusters[0].multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
5331
|
+
# resp.clusters[0].lakehouse_registration_status #=> String
|
|
5332
|
+
# resp.clusters[0].catalog_arn #=> String
|
|
5295
5333
|
#
|
|
5296
5334
|
#
|
|
5297
5335
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -6736,6 +6774,9 @@ module Aws::Redshift
|
|
|
6736
6774
|
# resp.redshift_idc_applications[0].service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
|
|
6737
6775
|
# resp.redshift_idc_applications[0].service_integrations[0].s3_access_grants #=> Array
|
|
6738
6776
|
# resp.redshift_idc_applications[0].service_integrations[0].s3_access_grants[0].read_write_access.authorization #=> String, one of "Enabled", "Disabled"
|
|
6777
|
+
# resp.redshift_idc_applications[0].service_integrations[0].redshift #=> Array
|
|
6778
|
+
# resp.redshift_idc_applications[0].service_integrations[0].redshift[0].connect.authorization #=> String, one of "Enabled", "Disabled"
|
|
6779
|
+
# resp.redshift_idc_applications[0].application_type #=> String, one of "None", "Lakehouse"
|
|
6739
6780
|
# resp.redshift_idc_applications[0].tags #=> Array
|
|
6740
6781
|
# resp.redshift_idc_applications[0].tags[0].key #=> String
|
|
6741
6782
|
# resp.redshift_idc_applications[0].tags[0].value #=> String
|
|
@@ -7847,6 +7888,8 @@ module Aws::Redshift
|
|
|
7847
7888
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
7848
7889
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
7849
7890
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
7891
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
7892
|
+
# resp.cluster.catalog_arn #=> String
|
|
7850
7893
|
#
|
|
7851
7894
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
|
|
7852
7895
|
#
|
|
@@ -8185,6 +8228,8 @@ module Aws::Redshift
|
|
|
8185
8228
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
8186
8229
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
8187
8230
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
8231
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
8232
|
+
# resp.cluster.catalog_arn #=> String
|
|
8188
8233
|
#
|
|
8189
8234
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
|
|
8190
8235
|
#
|
|
@@ -8345,6 +8390,8 @@ module Aws::Redshift
|
|
|
8345
8390
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
8346
8391
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
8347
8392
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
8393
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
8394
|
+
# resp.cluster.catalog_arn #=> String
|
|
8348
8395
|
#
|
|
8349
8396
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/FailoverPrimaryCompute AWS API Documentation
|
|
8350
8397
|
#
|
|
@@ -8587,6 +8634,70 @@ module Aws::Redshift
|
|
|
8587
8634
|
req.send_request(options)
|
|
8588
8635
|
end
|
|
8589
8636
|
|
|
8637
|
+
# Generates an encrypted authentication token that propagates the
|
|
8638
|
+
# caller's Amazon Web Services IAM Identity Center identity to Amazon
|
|
8639
|
+
# Redshift clusters. This API extracts the Amazon Web Services IAM
|
|
8640
|
+
# Identity Center identity from enhanced credentials and creates a
|
|
8641
|
+
# secure token that Amazon Redshift drivers can use for authentication.
|
|
8642
|
+
#
|
|
8643
|
+
# The token is encrypted using Key Management Service (KMS) and can only
|
|
8644
|
+
# be decrypted by the specified Amazon Redshift clusters. The token
|
|
8645
|
+
# contains the caller's Amazon Web Services IAM Identity Center
|
|
8646
|
+
# identity information and is valid for a limited time period.
|
|
8647
|
+
#
|
|
8648
|
+
# This API is exclusively for use with Amazon Web Services IAM Identity
|
|
8649
|
+
# Center enhanced credentials. If the caller is not using enhanced
|
|
8650
|
+
# credentials with embedded Amazon Web Services IAM Identity Center
|
|
8651
|
+
# identity, the API will return an error.
|
|
8652
|
+
#
|
|
8653
|
+
# @option params [required, Array<String>] :cluster_ids
|
|
8654
|
+
# A list of cluster identifiers that the generated token can be used
|
|
8655
|
+
# with. The token will be scoped to only allow authentication to the
|
|
8656
|
+
# specified clusters.
|
|
8657
|
+
#
|
|
8658
|
+
# Constraints:
|
|
8659
|
+
#
|
|
8660
|
+
# * `ClusterIds` must contain at least 1 cluster identifier.
|
|
8661
|
+
#
|
|
8662
|
+
# * `ClusterIds` can hold a maximum of 20 cluster identifiers.
|
|
8663
|
+
#
|
|
8664
|
+
# * Cluster identifiers must be 1 to 63 characters in length.
|
|
8665
|
+
#
|
|
8666
|
+
# * The characters accepted for cluster identifiers are the following:
|
|
8667
|
+
#
|
|
8668
|
+
# * Alphanumeric characters
|
|
8669
|
+
#
|
|
8670
|
+
# * Hyphens
|
|
8671
|
+
# * Cluster identifiers must start with a letter.
|
|
8672
|
+
#
|
|
8673
|
+
# * Cluster identifiers can't end with a hyphen or contain two
|
|
8674
|
+
# consecutive hyphens.
|
|
8675
|
+
#
|
|
8676
|
+
# @return [Types::GetIdentityCenterAuthTokenResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8677
|
+
#
|
|
8678
|
+
# * {Types::GetIdentityCenterAuthTokenResponse#token #token} => String
|
|
8679
|
+
# * {Types::GetIdentityCenterAuthTokenResponse#expiration_time #expiration_time} => Time
|
|
8680
|
+
#
|
|
8681
|
+
# @example Request syntax with placeholder values
|
|
8682
|
+
#
|
|
8683
|
+
# resp = client.get_identity_center_auth_token({
|
|
8684
|
+
# cluster_ids: ["String"], # required
|
|
8685
|
+
# })
|
|
8686
|
+
#
|
|
8687
|
+
# @example Response structure
|
|
8688
|
+
#
|
|
8689
|
+
# resp.token #=> String
|
|
8690
|
+
# resp.expiration_time #=> Time
|
|
8691
|
+
#
|
|
8692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetIdentityCenterAuthToken AWS API Documentation
|
|
8693
|
+
#
|
|
8694
|
+
# @overload get_identity_center_auth_token(params = {})
|
|
8695
|
+
# @param [Hash] params ({})
|
|
8696
|
+
def get_identity_center_auth_token(params = {}, options = {})
|
|
8697
|
+
req = build_request(:get_identity_center_auth_token, params)
|
|
8698
|
+
req.send_request(options)
|
|
8699
|
+
end
|
|
8700
|
+
|
|
8590
8701
|
# Gets the configuration options for the reserved-node exchange. These
|
|
8591
8702
|
# options include information about the source reserved node and target
|
|
8592
8703
|
# reserved node offering. Details include the node type, the price, the
|
|
@@ -9422,6 +9533,8 @@ module Aws::Redshift
|
|
|
9422
9533
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
9423
9534
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
9424
9535
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
9536
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
9537
|
+
# resp.cluster.catalog_arn #=> String
|
|
9425
9538
|
#
|
|
9426
9539
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
|
|
9427
9540
|
#
|
|
@@ -9589,6 +9702,8 @@ module Aws::Redshift
|
|
|
9589
9702
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
9590
9703
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
9591
9704
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
9705
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
9706
|
+
# resp.cluster.catalog_arn #=> String
|
|
9592
9707
|
#
|
|
9593
9708
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
|
|
9594
9709
|
#
|
|
@@ -9772,6 +9887,8 @@ module Aws::Redshift
|
|
|
9772
9887
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
9773
9888
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
9774
9889
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
9890
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
9891
|
+
# resp.cluster.catalog_arn #=> String
|
|
9775
9892
|
#
|
|
9776
9893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
|
|
9777
9894
|
#
|
|
@@ -9955,6 +10072,8 @@ module Aws::Redshift
|
|
|
9955
10072
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
9956
10073
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
9957
10074
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
10075
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
10076
|
+
# resp.cluster.catalog_arn #=> String
|
|
9958
10077
|
#
|
|
9959
10078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
|
|
9960
10079
|
#
|
|
@@ -10480,6 +10599,84 @@ module Aws::Redshift
|
|
|
10480
10599
|
req.send_request(options)
|
|
10481
10600
|
end
|
|
10482
10601
|
|
|
10602
|
+
# Modifies the lakehouse configuration for a cluster. This operation
|
|
10603
|
+
# allows you to manage Amazon Redshift federated permissions and Amazon
|
|
10604
|
+
# Web Services IAM Identity Center trusted identity propagation.
|
|
10605
|
+
#
|
|
10606
|
+
# @option params [required, String] :cluster_identifier
|
|
10607
|
+
# The unique identifier of the cluster whose lakehouse configuration you
|
|
10608
|
+
# want to modify.
|
|
10609
|
+
#
|
|
10610
|
+
# @option params [String] :lakehouse_registration
|
|
10611
|
+
# Specifies whether to register or deregister the cluster with Amazon
|
|
10612
|
+
# Redshift federated permissions. Valid values are `Register` or
|
|
10613
|
+
# `Deregister`.
|
|
10614
|
+
#
|
|
10615
|
+
# @option params [String] :catalog_name
|
|
10616
|
+
# The name of the Glue data catalog that will be associated with the
|
|
10617
|
+
# cluster enabled with Amazon Redshift federated permissions.
|
|
10618
|
+
#
|
|
10619
|
+
# Constraints:
|
|
10620
|
+
#
|
|
10621
|
+
# * Must contain at least one lowercase letter.
|
|
10622
|
+
#
|
|
10623
|
+
# * Can only contain lowercase letters (a-z), numbers (0-9), underscores
|
|
10624
|
+
# (\_), and hyphens (-).
|
|
10625
|
+
#
|
|
10626
|
+
# Pattern: `^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$`
|
|
10627
|
+
#
|
|
10628
|
+
# Example: `my-catalog_01`
|
|
10629
|
+
#
|
|
10630
|
+
# @option params [String] :lakehouse_idc_registration
|
|
10631
|
+
# Modifies the Amazon Web Services IAM Identity Center trusted identity
|
|
10632
|
+
# propagation on a cluster enabled with Amazon Redshift federated
|
|
10633
|
+
# permissions. Valid values are `Associate` or `Disassociate`.
|
|
10634
|
+
#
|
|
10635
|
+
# @option params [String] :lakehouse_idc_application_arn
|
|
10636
|
+
# The Amazon Resource Name (ARN) of the IAM Identity Center application
|
|
10637
|
+
# used for enabling Amazon Web Services IAM Identity Center trusted
|
|
10638
|
+
# identity propagation on a cluster enabled with Amazon Redshift
|
|
10639
|
+
# federated permissions.
|
|
10640
|
+
#
|
|
10641
|
+
# @option params [Boolean] :dry_run
|
|
10642
|
+
# A boolean value that, if `true`, validates the request without
|
|
10643
|
+
# actually modifying the lakehouse configuration. Use this to check for
|
|
10644
|
+
# errors before making changes.
|
|
10645
|
+
#
|
|
10646
|
+
# @return [Types::LakehouseConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10647
|
+
#
|
|
10648
|
+
# * {Types::LakehouseConfiguration#cluster_identifier #cluster_identifier} => String
|
|
10649
|
+
# * {Types::LakehouseConfiguration#lakehouse_idc_application_arn #lakehouse_idc_application_arn} => String
|
|
10650
|
+
# * {Types::LakehouseConfiguration#lakehouse_registration_status #lakehouse_registration_status} => String
|
|
10651
|
+
# * {Types::LakehouseConfiguration#catalog_arn #catalog_arn} => String
|
|
10652
|
+
#
|
|
10653
|
+
# @example Request syntax with placeholder values
|
|
10654
|
+
#
|
|
10655
|
+
# resp = client.modify_lakehouse_configuration({
|
|
10656
|
+
# cluster_identifier: "String", # required
|
|
10657
|
+
# lakehouse_registration: "Register", # accepts Register, Deregister
|
|
10658
|
+
# catalog_name: "CatalogNameString",
|
|
10659
|
+
# lakehouse_idc_registration: "Associate", # accepts Associate, Disassociate
|
|
10660
|
+
# lakehouse_idc_application_arn: "String",
|
|
10661
|
+
# dry_run: false,
|
|
10662
|
+
# })
|
|
10663
|
+
#
|
|
10664
|
+
# @example Response structure
|
|
10665
|
+
#
|
|
10666
|
+
# resp.cluster_identifier #=> String
|
|
10667
|
+
# resp.lakehouse_idc_application_arn #=> String
|
|
10668
|
+
# resp.lakehouse_registration_status #=> String
|
|
10669
|
+
# resp.catalog_arn #=> String
|
|
10670
|
+
#
|
|
10671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyLakehouseConfiguration AWS API Documentation
|
|
10672
|
+
#
|
|
10673
|
+
# @overload modify_lakehouse_configuration(params = {})
|
|
10674
|
+
# @param [Hash] params ({})
|
|
10675
|
+
def modify_lakehouse_configuration(params = {}, options = {})
|
|
10676
|
+
req = build_request(:modify_lakehouse_configuration, params)
|
|
10677
|
+
req.send_request(options)
|
|
10678
|
+
end
|
|
10679
|
+
|
|
10483
10680
|
# Changes an existing Amazon Redshift IAM Identity Center application.
|
|
10484
10681
|
#
|
|
10485
10682
|
# @option params [required, String] :redshift_idc_application_arn
|
|
@@ -10540,6 +10737,13 @@ module Aws::Redshift
|
|
|
10540
10737
|
# },
|
|
10541
10738
|
# },
|
|
10542
10739
|
# ],
|
|
10740
|
+
# redshift: [
|
|
10741
|
+
# {
|
|
10742
|
+
# connect: {
|
|
10743
|
+
# authorization: "Enabled", # required, accepts Enabled, Disabled
|
|
10744
|
+
# },
|
|
10745
|
+
# },
|
|
10746
|
+
# ],
|
|
10543
10747
|
# },
|
|
10544
10748
|
# ],
|
|
10545
10749
|
# })
|
|
@@ -10563,6 +10767,9 @@ module Aws::Redshift
|
|
|
10563
10767
|
# resp.redshift_idc_application.service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
|
|
10564
10768
|
# resp.redshift_idc_application.service_integrations[0].s3_access_grants #=> Array
|
|
10565
10769
|
# resp.redshift_idc_application.service_integrations[0].s3_access_grants[0].read_write_access.authorization #=> String, one of "Enabled", "Disabled"
|
|
10770
|
+
# resp.redshift_idc_application.service_integrations[0].redshift #=> Array
|
|
10771
|
+
# resp.redshift_idc_application.service_integrations[0].redshift[0].connect.authorization #=> String, one of "Enabled", "Disabled"
|
|
10772
|
+
# resp.redshift_idc_application.application_type #=> String, one of "None", "Lakehouse"
|
|
10566
10773
|
# resp.redshift_idc_application.tags #=> Array
|
|
10567
10774
|
# resp.redshift_idc_application.tags[0].key #=> String
|
|
10568
10775
|
# resp.redshift_idc_application.tags[0].value #=> String
|
|
@@ -10874,6 +11081,8 @@ module Aws::Redshift
|
|
|
10874
11081
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
10875
11082
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
10876
11083
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
11084
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
11085
|
+
# resp.cluster.catalog_arn #=> String
|
|
10877
11086
|
#
|
|
10878
11087
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
|
|
10879
11088
|
#
|
|
@@ -11140,6 +11349,8 @@ module Aws::Redshift
|
|
|
11140
11349
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
11141
11350
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
11142
11351
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
11352
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
11353
|
+
# resp.cluster.catalog_arn #=> String
|
|
11143
11354
|
#
|
|
11144
11355
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
|
|
11145
11356
|
#
|
|
@@ -11403,6 +11614,8 @@ module Aws::Redshift
|
|
|
11403
11614
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
11404
11615
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
11405
11616
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
11617
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
11618
|
+
# resp.cluster.catalog_arn #=> String
|
|
11406
11619
|
#
|
|
11407
11620
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
|
|
11408
11621
|
#
|
|
@@ -11760,6 +11973,8 @@ module Aws::Redshift
|
|
|
11760
11973
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
11761
11974
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
11762
11975
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
11976
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
11977
|
+
# resp.cluster.catalog_arn #=> String
|
|
11763
11978
|
#
|
|
11764
11979
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
|
|
11765
11980
|
#
|
|
@@ -12086,6 +12301,27 @@ module Aws::Redshift
|
|
|
12086
12301
|
# If true, the snapshot will be restored to a cluster deployed in two
|
|
12087
12302
|
# Availability Zones.
|
|
12088
12303
|
#
|
|
12304
|
+
# @option params [String] :catalog_name
|
|
12305
|
+
# The name of the Glue Data Catalog that will be associated with the
|
|
12306
|
+
# cluster enabled with Amazon Redshift federated permissions.
|
|
12307
|
+
#
|
|
12308
|
+
# Constraints:
|
|
12309
|
+
#
|
|
12310
|
+
# * Must contain at least one lowercase letter.
|
|
12311
|
+
#
|
|
12312
|
+
# * Can only contain lowercase letters (a-z), numbers (0-9), underscores
|
|
12313
|
+
# (\_), and hyphens (-).
|
|
12314
|
+
#
|
|
12315
|
+
# Pattern: `^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$`
|
|
12316
|
+
#
|
|
12317
|
+
# Example: `my-catalog_01`
|
|
12318
|
+
#
|
|
12319
|
+
# @option params [String] :redshift_idc_application_arn
|
|
12320
|
+
# The Amazon Resource Name (ARN) of the IAM Identity Center application
|
|
12321
|
+
# used for enabling Amazon Web Services IAM Identity Center trusted
|
|
12322
|
+
# identity propagation on a cluster enabled with Amazon Redshift
|
|
12323
|
+
# federated permissions.
|
|
12324
|
+
#
|
|
12089
12325
|
# @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12090
12326
|
#
|
|
12091
12327
|
# * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
|
|
@@ -12130,6 +12366,8 @@ module Aws::Redshift
|
|
|
12130
12366
|
# master_password_secret_kms_key_id: "String",
|
|
12131
12367
|
# ip_address_type: "String",
|
|
12132
12368
|
# multi_az: false,
|
|
12369
|
+
# catalog_name: "CatalogNameString",
|
|
12370
|
+
# redshift_idc_application_arn: "String",
|
|
12133
12371
|
# })
|
|
12134
12372
|
#
|
|
12135
12373
|
# @example Response structure
|
|
@@ -12265,6 +12503,8 @@ module Aws::Redshift
|
|
|
12265
12503
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
12266
12504
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
12267
12505
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
12506
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
12507
|
+
# resp.cluster.catalog_arn #=> String
|
|
12268
12508
|
#
|
|
12269
12509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
|
|
12270
12510
|
#
|
|
@@ -12523,6 +12763,8 @@ module Aws::Redshift
|
|
|
12523
12763
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
12524
12764
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
12525
12765
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
12766
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
12767
|
+
# resp.cluster.catalog_arn #=> String
|
|
12526
12768
|
#
|
|
12527
12769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
|
|
12528
12770
|
#
|
|
@@ -12918,6 +13160,8 @@ module Aws::Redshift
|
|
|
12918
13160
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
|
|
12919
13161
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
|
|
12920
13162
|
# resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
|
|
13163
|
+
# resp.cluster.lakehouse_registration_status #=> String
|
|
13164
|
+
# resp.cluster.catalog_arn #=> String
|
|
12921
13165
|
#
|
|
12922
13166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
|
|
12923
13167
|
#
|
|
@@ -12998,7 +13242,7 @@ module Aws::Redshift
|
|
|
12998
13242
|
tracer: tracer
|
|
12999
13243
|
)
|
|
13000
13244
|
context[:gem_name] = 'aws-sdk-redshift'
|
|
13001
|
-
context[:gem_version] = '1.
|
|
13245
|
+
context[:gem_version] = '1.151.0'
|
|
13002
13246
|
Seahorse::Client::Request.new(handlers, context)
|
|
13003
13247
|
end
|
|
13004
13248
|
|