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.
@@ -953,6 +953,17 @@ module Aws::Redshift
953
953
  # turned on.
954
954
  # @return [Types::SecondaryClusterInfo]
955
955
  #
956
+ # @!attribute [rw] lakehouse_registration_status
957
+ # The status of the lakehouse registration for the cluster. Indicates
958
+ # whether the cluster is successfully registered with Amazon Redshift
959
+ # federated permissions.
960
+ # @return [String]
961
+ #
962
+ # @!attribute [rw] catalog_arn
963
+ # The Amazon Resource Name (ARN) of the Glue data catalog associated
964
+ # with the cluster enabled with Amazon Redshift federated permissions.
965
+ # @return [String]
966
+ #
956
967
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
957
968
  #
958
969
  class Cluster < Struct.new(
@@ -1015,7 +1026,9 @@ module Aws::Redshift
1015
1026
  :master_password_secret_kms_key_id,
1016
1027
  :ip_address_type,
1017
1028
  :multi_az,
1018
- :multi_az_secondary)
1029
+ :multi_az_secondary,
1030
+ :lakehouse_registration_status,
1031
+ :catalog_arn)
1019
1032
  SENSITIVE = []
1020
1033
  include Aws::Structure
1021
1034
  end
@@ -1794,6 +1807,22 @@ module Aws::Redshift
1794
1807
  #
1795
1808
  class ConflictPolicyUpdateFault < Aws::EmptyStructure; end
1796
1809
 
1810
+ # A structure that defines the Amazon Redshift connect service
1811
+ # integration scope.
1812
+ #
1813
+ # @!attribute [rw] authorization
1814
+ # Determines whether the Amazon Redshift connect integration is
1815
+ # enabled or disabled for the application.
1816
+ # @return [String]
1817
+ #
1818
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Connect AWS API Documentation
1819
+ #
1820
+ class Connect < Struct.new(
1821
+ :authorization)
1822
+ SENSITIVE = []
1823
+ include Aws::Structure
1824
+ end
1825
+
1797
1826
  # @!attribute [rw] source_snapshot_identifier
1798
1827
  # The identifier for the source snapshot.
1799
1828
  #
@@ -2340,6 +2369,22 @@ module Aws::Redshift
2340
2369
  # Center application.
2341
2370
  # @return [String]
2342
2371
  #
2372
+ # @!attribute [rw] catalog_name
2373
+ # The name of the Glue data catalog that will be associated with the
2374
+ # cluster enabled with Amazon Redshift federated permissions.
2375
+ #
2376
+ # Constraints:
2377
+ #
2378
+ # * Must contain at least one lowercase letter.
2379
+ #
2380
+ # * Can only contain lowercase letters (a-z), numbers (0-9),
2381
+ # underscores (\_), and hyphens (-).
2382
+ #
2383
+ # Pattern: `^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$`
2384
+ #
2385
+ # Example: `my-catalog_01`
2386
+ # @return [String]
2387
+ #
2343
2388
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
2344
2389
  #
2345
2390
  class CreateClusterMessage < Struct.new(
@@ -2381,7 +2426,8 @@ module Aws::Redshift
2381
2426
  :master_password_secret_kms_key_id,
2382
2427
  :ip_address_type,
2383
2428
  :multi_az,
2384
- :redshift_idc_application_arn)
2429
+ :redshift_idc_application_arn,
2430
+ :catalog_name)
2385
2431
  SENSITIVE = [:master_user_password]
2386
2432
  include Aws::Structure
2387
2433
  end
@@ -2991,6 +3037,12 @@ module Aws::Redshift
2991
3037
  # Center application.
2992
3038
  # @return [Array<Types::ServiceIntegrationsUnion>]
2993
3039
  #
3040
+ # @!attribute [rw] application_type
3041
+ # The type of application being created. Valid values are `None` or
3042
+ # `Lakehouse`. Use `Lakehouse` to enable Amazon Redshift federated
3043
+ # permissions on cluster.
3044
+ # @return [String]
3045
+ #
2994
3046
  # @!attribute [rw] tags
2995
3047
  # A list of tags.
2996
3048
  # @return [Array<Types::Tag>]
@@ -3011,6 +3063,7 @@ module Aws::Redshift
3011
3063
  :iam_role_arn,
3012
3064
  :authorized_token_issuer_list,
3013
3065
  :service_integrations,
3066
+ :application_type,
3014
3067
  :tags,
3015
3068
  :sso_tag_keys)
3016
3069
  SENSITIVE = []
@@ -6961,6 +7014,66 @@ module Aws::Redshift
6961
7014
  include Aws::Structure
6962
7015
  end
6963
7016
 
7017
+ # The request parameters for `GetIdentityCenterAuthToken`.
7018
+ #
7019
+ # @!attribute [rw] cluster_ids
7020
+ # A list of cluster identifiers that the generated token can be used
7021
+ # with. The token will be scoped to only allow authentication to the
7022
+ # specified clusters.
7023
+ #
7024
+ # Constraints:
7025
+ #
7026
+ # * `ClusterIds` must contain at least 1 cluster identifier.
7027
+ #
7028
+ # * `ClusterIds` can hold a maximum of 20 cluster identifiers.
7029
+ #
7030
+ # * Cluster identifiers must be 1 to 63 characters in length.
7031
+ #
7032
+ # * The characters accepted for cluster identifiers are the following:
7033
+ #
7034
+ # * Alphanumeric characters
7035
+ #
7036
+ # * Hyphens
7037
+ # * Cluster identifiers must start with a letter.
7038
+ #
7039
+ # * Cluster identifiers can't end with a hyphen or contain two
7040
+ # consecutive hyphens.
7041
+ # @return [Array<String>]
7042
+ #
7043
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetIdentityCenterAuthTokenRequest AWS API Documentation
7044
+ #
7045
+ class GetIdentityCenterAuthTokenRequest < Struct.new(
7046
+ :cluster_ids)
7047
+ SENSITIVE = []
7048
+ include Aws::Structure
7049
+ end
7050
+
7051
+ # The response from GetIdentityCenterAuthToken containing the encrypted
7052
+ # authentication token and expiration time.
7053
+ #
7054
+ # @!attribute [rw] token
7055
+ # The encrypted authentication token containing the caller's Amazon
7056
+ # Web Services IAM Identity Center identity information. This token is
7057
+ # encrypted using Key Management Service and can only be decrypted by
7058
+ # the specified Amazon Redshift clusters. Use this token with Amazon
7059
+ # Redshift drivers to authenticate using your Amazon Web Services IAM
7060
+ # Identity Center identity.
7061
+ # @return [String]
7062
+ #
7063
+ # @!attribute [rw] expiration_time
7064
+ # The time (UTC) when the token expires. After this timestamp, the
7065
+ # token will no longer be valid for authentication.
7066
+ # @return [Time]
7067
+ #
7068
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetIdentityCenterAuthTokenResponse AWS API Documentation
7069
+ #
7070
+ class GetIdentityCenterAuthTokenResponse < Struct.new(
7071
+ :token,
7072
+ :expiration_time)
7073
+ SENSITIVE = [:token]
7074
+ include Aws::Structure
7075
+ end
7076
+
6964
7077
  # @!attribute [rw] action_type
6965
7078
  # The action type of the reserved-node configuration. The action type
6966
7079
  # can be an exchange initiated from either a snapshot or a resize.
@@ -7824,6 +7937,43 @@ module Aws::Redshift
7824
7937
  class Unknown < LakeFormationScopeUnion; end
7825
7938
  end
7826
7939
 
7940
+ # Contains configuration information for lakehouse integration,
7941
+ # including the cluster identifier, catalog ARN, and registration
7942
+ # status.
7943
+ #
7944
+ # @!attribute [rw] cluster_identifier
7945
+ # The unique identifier of the cluster associated with this lakehouse
7946
+ # configuration.
7947
+ # @return [String]
7948
+ #
7949
+ # @!attribute [rw] lakehouse_idc_application_arn
7950
+ # The Amazon Resource Name (ARN) of the IAM Identity Center
7951
+ # application used for enabling Amazon Web Services IAM Identity
7952
+ # Center trusted identity propagation on a cluster enabled with Amazon
7953
+ # Redshift federated permissions.
7954
+ # @return [String]
7955
+ #
7956
+ # @!attribute [rw] lakehouse_registration_status
7957
+ # The current status of the lakehouse registration. Indicates whether
7958
+ # the cluster is successfully registered with the lakehouse.
7959
+ # @return [String]
7960
+ #
7961
+ # @!attribute [rw] catalog_arn
7962
+ # The Amazon Resource Name (ARN) of the Glue data catalog associated
7963
+ # with the lakehouse configuration.
7964
+ # @return [String]
7965
+ #
7966
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/LakehouseConfiguration AWS API Documentation
7967
+ #
7968
+ class LakehouseConfiguration < Struct.new(
7969
+ :cluster_identifier,
7970
+ :lakehouse_idc_application_arn,
7971
+ :lakehouse_registration_status,
7972
+ :catalog_arn)
7973
+ SENSITIVE = []
7974
+ include Aws::Structure
7975
+ end
7976
+
7827
7977
  # The encryption key has exceeded its grant limit in Amazon Web Services
7828
7978
  # KMS.
7829
7979
  #
@@ -8858,6 +9008,66 @@ module Aws::Redshift
8858
9008
  include Aws::Structure
8859
9009
  end
8860
9010
 
9011
+ # @!attribute [rw] cluster_identifier
9012
+ # The unique identifier of the cluster whose lakehouse configuration
9013
+ # you want to modify.
9014
+ # @return [String]
9015
+ #
9016
+ # @!attribute [rw] lakehouse_registration
9017
+ # Specifies whether to register or deregister the cluster with Amazon
9018
+ # Redshift federated permissions. Valid values are `Register` or
9019
+ # `Deregister`.
9020
+ # @return [String]
9021
+ #
9022
+ # @!attribute [rw] catalog_name
9023
+ # The name of the Glue data catalog that will be associated with the
9024
+ # cluster enabled with Amazon Redshift federated permissions.
9025
+ #
9026
+ # Constraints:
9027
+ #
9028
+ # * Must contain at least one lowercase letter.
9029
+ #
9030
+ # * Can only contain lowercase letters (a-z), numbers (0-9),
9031
+ # underscores (\_), and hyphens (-).
9032
+ #
9033
+ # Pattern: `^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$`
9034
+ #
9035
+ # Example: `my-catalog_01`
9036
+ # @return [String]
9037
+ #
9038
+ # @!attribute [rw] lakehouse_idc_registration
9039
+ # Modifies the Amazon Web Services IAM Identity Center trusted
9040
+ # identity propagation on a cluster enabled with Amazon Redshift
9041
+ # federated permissions. Valid values are `Associate` or
9042
+ # `Disassociate`.
9043
+ # @return [String]
9044
+ #
9045
+ # @!attribute [rw] lakehouse_idc_application_arn
9046
+ # The Amazon Resource Name (ARN) of the IAM Identity Center
9047
+ # application used for enabling Amazon Web Services IAM Identity
9048
+ # Center trusted identity propagation on a cluster enabled with Amazon
9049
+ # Redshift federated permissions.
9050
+ # @return [String]
9051
+ #
9052
+ # @!attribute [rw] dry_run
9053
+ # A boolean value that, if `true`, validates the request without
9054
+ # actually modifying the lakehouse configuration. Use this to check
9055
+ # for errors before making changes.
9056
+ # @return [Boolean]
9057
+ #
9058
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyLakehouseConfigurationMessage AWS API Documentation
9059
+ #
9060
+ class ModifyLakehouseConfigurationMessage < Struct.new(
9061
+ :cluster_identifier,
9062
+ :lakehouse_registration,
9063
+ :catalog_name,
9064
+ :lakehouse_idc_registration,
9065
+ :lakehouse_idc_application_arn,
9066
+ :dry_run)
9067
+ SENSITIVE = []
9068
+ include Aws::Structure
9069
+ end
9070
+
8861
9071
  # @!attribute [rw] redshift_idc_application_arn
8862
9072
  # The ARN for the Redshift application that integrates with IAM
8863
9073
  # Identity Center.
@@ -9855,6 +10065,12 @@ module Aws::Redshift
9855
10065
  # application.
9856
10066
  # @return [Array<Types::ServiceIntegrationsUnion>]
9857
10067
  #
10068
+ # @!attribute [rw] application_type
10069
+ # The type of application being created. Valid values are `None` or
10070
+ # `Lakehouse`. Use `Lakehouse` to enable Amazon Redshift federated
10071
+ # permissions on cluster.
10072
+ # @return [String]
10073
+ #
9858
10074
  # @!attribute [rw] tags
9859
10075
  # A list of tags.
9860
10076
  # @return [Array<Types::Tag>]
@@ -9878,6 +10094,7 @@ module Aws::Redshift
9878
10094
  :idc_onboard_status,
9879
10095
  :authorized_token_issuer_list,
9880
10096
  :service_integrations,
10097
+ :application_type,
9881
10098
  :tags,
9882
10099
  :sso_tag_keys)
9883
10100
  SENSITIVE = []
@@ -9903,6 +10120,41 @@ module Aws::Redshift
9903
10120
  #
9904
10121
  class RedshiftIdcApplicationQuotaExceededFault < Aws::EmptyStructure; end
9905
10122
 
10123
+ # The request contains one or more invalid parameters. This error occurs
10124
+ # when required parameters are missing, parameter values are outside
10125
+ # acceptable ranges, or parameter formats are incorrect.
10126
+ #
10127
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RedshiftInvalidParameterFault AWS API Documentation
10128
+ #
10129
+ class RedshiftInvalidParameterFault < Aws::EmptyStructure; end
10130
+
10131
+ # A union structure that defines the scope of Amazon Redshift service
10132
+ # integrations. Contains configuration for different integration types
10133
+ # such as Amazon Redshift.
10134
+ #
10135
+ # @note RedshiftScopeUnion is a union - when making an API calls you must set exactly one of the members.
10136
+ #
10137
+ # @note RedshiftScopeUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RedshiftScopeUnion corresponding to the set member.
10138
+ #
10139
+ # @!attribute [rw] connect
10140
+ # The Amazon Redshift connect integration scope configuration. Defines
10141
+ # authorization settings for Amazon Redshift connect service
10142
+ # integration.
10143
+ # @return [Types::Connect]
10144
+ #
10145
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RedshiftScopeUnion AWS API Documentation
10146
+ #
10147
+ class RedshiftScopeUnion < Struct.new(
10148
+ :connect,
10149
+ :unknown)
10150
+ SENSITIVE = []
10151
+ include Aws::Structure
10152
+ include Aws::Structure::Union
10153
+
10154
+ class Connect < RedshiftScopeUnion; end
10155
+ class Unknown < RedshiftScopeUnion; end
10156
+ end
10157
+
9906
10158
  # A link to an Amazon Redshift Advisor reference for more information
9907
10159
  # about a recommendation.
9908
10160
  #
@@ -10868,6 +11120,29 @@ module Aws::Redshift
10868
11120
  # Availability Zones.
10869
11121
  # @return [Boolean]
10870
11122
  #
11123
+ # @!attribute [rw] catalog_name
11124
+ # The name of the Glue Data Catalog that will be associated with the
11125
+ # cluster enabled with Amazon Redshift federated permissions.
11126
+ #
11127
+ # Constraints:
11128
+ #
11129
+ # * Must contain at least one lowercase letter.
11130
+ #
11131
+ # * Can only contain lowercase letters (a-z), numbers (0-9),
11132
+ # underscores (\_), and hyphens (-).
11133
+ #
11134
+ # Pattern: `^[a-z0-9_-]*[a-z]+[a-z0-9_-]*$`
11135
+ #
11136
+ # Example: `my-catalog_01`
11137
+ # @return [String]
11138
+ #
11139
+ # @!attribute [rw] redshift_idc_application_arn
11140
+ # The Amazon Resource Name (ARN) of the IAM Identity Center
11141
+ # application used for enabling Amazon Web Services IAM Identity
11142
+ # Center trusted identity propagation on a cluster enabled with Amazon
11143
+ # Redshift federated permissions.
11144
+ # @return [String]
11145
+ #
10871
11146
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
10872
11147
  #
10873
11148
  class RestoreFromClusterSnapshotMessage < Struct.new(
@@ -10907,7 +11182,9 @@ module Aws::Redshift
10907
11182
  :manage_master_password,
10908
11183
  :master_password_secret_kms_key_id,
10909
11184
  :ip_address_type,
10910
- :multi_az)
11185
+ :multi_az,
11186
+ :catalog_name,
11187
+ :redshift_idc_application_arn)
10911
11188
  SENSITIVE = []
10912
11189
  include Aws::Structure
10913
11190
  end
@@ -11538,11 +11815,16 @@ module Aws::Redshift
11538
11815
  # A list of scopes set up for S3 Access Grants integration.
11539
11816
  # @return [Array<Types::S3AccessGrantsScopeUnion>]
11540
11817
  #
11818
+ # @!attribute [rw] redshift
11819
+ # A list of scopes set up for Amazon Redshift integration.
11820
+ # @return [Array<Types::RedshiftScopeUnion>]
11821
+ #
11541
11822
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ServiceIntegrationsUnion AWS API Documentation
11542
11823
  #
11543
11824
  class ServiceIntegrationsUnion < Struct.new(
11544
11825
  :lake_formation,
11545
11826
  :s3_access_grants,
11827
+ :redshift,
11546
11828
  :unknown)
11547
11829
  SENSITIVE = []
11548
11830
  include Aws::Structure
@@ -11550,6 +11832,7 @@ module Aws::Redshift
11550
11832
 
11551
11833
  class LakeFormation < ServiceIntegrationsUnion; end
11552
11834
  class S3AccessGrants < ServiceIntegrationsUnion; end
11835
+ class Redshift < ServiceIntegrationsUnion; end
11553
11836
  class Unknown < ServiceIntegrationsUnion; end
11554
11837
  end
11555
11838
 
@@ -55,7 +55,7 @@ module Aws::Redshift
55
55
  autoload :EndpointProvider, 'aws-sdk-redshift/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-redshift/endpoints'
57
57
 
58
- GEM_VERSION = '1.149.0'
58
+ GEM_VERSION = '1.151.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -313,7 +313,8 @@ module Aws
313
313
  ?master_password_secret_kms_key_id: ::String,
314
314
  ?ip_address_type: ::String,
315
315
  ?multi_az: bool,
316
- ?redshift_idc_application_arn: ::String
316
+ ?redshift_idc_application_arn: ::String,
317
+ ?catalog_name: ::String
317
318
  ) -> _CreateClusterResponseSuccess
318
319
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
319
320
 
@@ -548,9 +549,17 @@ module Aws
548
549
  authorization: ("Enabled" | "Disabled")
549
550
  }?
550
551
  },
552
+ ]?,
553
+ redshift: Array[
554
+ {
555
+ connect: {
556
+ authorization: ("Enabled" | "Disabled")
557
+ }?
558
+ },
551
559
  ]?
552
560
  },
553
561
  ],
562
+ ?application_type: ("None" | "Lakehouse"),
554
563
  ?tags: Array[
555
564
  {
556
565
  key: ::String?,
@@ -1638,6 +1647,17 @@ module Aws
1638
1647
  ) -> _GetClusterCredentialsWithIAMResponseSuccess
1639
1648
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetClusterCredentialsWithIAMResponseSuccess
1640
1649
 
1650
+ interface _GetIdentityCenterAuthTokenResponseSuccess
1651
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityCenterAuthTokenResponse]
1652
+ def token: () -> ::String
1653
+ def expiration_time: () -> ::Time
1654
+ end
1655
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#get_identity_center_auth_token-instance_method
1656
+ def get_identity_center_auth_token: (
1657
+ cluster_ids: Array[::String]
1658
+ ) -> _GetIdentityCenterAuthTokenResponseSuccess
1659
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdentityCenterAuthTokenResponseSuccess
1660
+
1641
1661
  interface _GetReservedNodeExchangeConfigurationOptionsResponseSuccess
1642
1662
  include ::Seahorse::Client::_ResponseSuccess[Types::GetReservedNodeExchangeConfigurationOptionsOutputMessage]
1643
1663
  def marker: () -> ::String
@@ -1919,6 +1939,24 @@ module Aws
1919
1939
  ) -> _ModifyIntegrationResponseSuccess
1920
1940
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIntegrationResponseSuccess
1921
1941
 
1942
+ interface _ModifyLakehouseConfigurationResponseSuccess
1943
+ include ::Seahorse::Client::_ResponseSuccess[Types::LakehouseConfiguration]
1944
+ def cluster_identifier: () -> ::String
1945
+ def lakehouse_idc_application_arn: () -> ::String
1946
+ def lakehouse_registration_status: () -> ::String
1947
+ def catalog_arn: () -> ::String
1948
+ end
1949
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#modify_lakehouse_configuration-instance_method
1950
+ def modify_lakehouse_configuration: (
1951
+ cluster_identifier: ::String,
1952
+ ?lakehouse_registration: ("Register" | "Deregister"),
1953
+ ?catalog_name: ::String,
1954
+ ?lakehouse_idc_registration: ("Associate" | "Disassociate"),
1955
+ ?lakehouse_idc_application_arn: ::String,
1956
+ ?dry_run: bool
1957
+ ) -> _ModifyLakehouseConfigurationResponseSuccess
1958
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyLakehouseConfigurationResponseSuccess
1959
+
1922
1960
  interface _ModifyRedshiftIdcApplicationResponseSuccess
1923
1961
  include ::Seahorse::Client::_ResponseSuccess[Types::ModifyRedshiftIdcApplicationResult]
1924
1962
  def redshift_idc_application: () -> Types::RedshiftIdcApplication
@@ -1950,6 +1988,13 @@ module Aws
1950
1988
  authorization: ("Enabled" | "Disabled")
1951
1989
  }?
1952
1990
  },
1991
+ ]?,
1992
+ redshift: Array[
1993
+ {
1994
+ connect: {
1995
+ authorization: ("Enabled" | "Disabled")
1996
+ }?
1997
+ },
1953
1998
  ]?
1954
1999
  },
1955
2000
  ]
@@ -2204,7 +2249,9 @@ module Aws
2204
2249
  ?manage_master_password: bool,
2205
2250
  ?master_password_secret_kms_key_id: ::String,
2206
2251
  ?ip_address_type: ::String,
2207
- ?multi_az: bool
2252
+ ?multi_az: bool,
2253
+ ?catalog_name: ::String,
2254
+ ?redshift_idc_application_arn: ::String
2208
2255
  ) -> _RestoreFromClusterSnapshotResponseSuccess
2209
2256
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreFromClusterSnapshotResponseSuccess
2210
2257
 
data/sig/errors.rbs CHANGED
@@ -209,6 +209,8 @@ module Aws
209
209
  end
210
210
  class RedshiftIdcApplicationQuotaExceededFault < ::Aws::Errors::ServiceError
211
211
  end
212
+ class RedshiftInvalidParameterFault < ::Aws::Errors::ServiceError
213
+ end
212
214
  class ReservedNodeAlreadyExistsFault < ::Aws::Errors::ServiceError
213
215
  end
214
216
  class ReservedNodeAlreadyMigratedFault < ::Aws::Errors::ServiceError
data/sig/types.rbs CHANGED
@@ -250,6 +250,8 @@ module Aws::Redshift
250
250
  attr_accessor ip_address_type: ::String
251
251
  attr_accessor multi_az: ::String
252
252
  attr_accessor multi_az_secondary: Types::SecondaryClusterInfo
253
+ attr_accessor lakehouse_registration_status: ::String
254
+ attr_accessor catalog_arn: ::String
253
255
  SENSITIVE: []
254
256
  end
255
257
 
@@ -460,6 +462,11 @@ module Aws::Redshift
460
462
  class ConflictPolicyUpdateFault < Aws::EmptyStructure
461
463
  end
462
464
 
465
+ class Connect
466
+ attr_accessor authorization: ("Enabled" | "Disabled")
467
+ SENSITIVE: []
468
+ end
469
+
463
470
  class CopyClusterSnapshotMessage
464
471
  attr_accessor source_snapshot_identifier: ::String
465
472
  attr_accessor source_snapshot_cluster_identifier: ::String
@@ -528,6 +535,7 @@ module Aws::Redshift
528
535
  attr_accessor ip_address_type: ::String
529
536
  attr_accessor multi_az: bool
530
537
  attr_accessor redshift_idc_application_arn: ::String
538
+ attr_accessor catalog_name: ::String
531
539
  SENSITIVE: [:master_user_password]
532
540
  end
533
541
 
@@ -674,6 +682,7 @@ module Aws::Redshift
674
682
  attr_accessor iam_role_arn: ::String
675
683
  attr_accessor authorized_token_issuer_list: ::Array[Types::AuthorizedTokenIssuer]
676
684
  attr_accessor service_integrations: ::Array[Types::ServiceIntegrationsUnion]
685
+ attr_accessor application_type: ("None" | "Lakehouse")
677
686
  attr_accessor tags: ::Array[Types::Tag]
678
687
  attr_accessor sso_tag_keys: ::Array[::String]
679
688
  SENSITIVE: []
@@ -1549,6 +1558,17 @@ module Aws::Redshift
1549
1558
  SENSITIVE: []
1550
1559
  end
1551
1560
 
1561
+ class GetIdentityCenterAuthTokenRequest
1562
+ attr_accessor cluster_ids: ::Array[::String]
1563
+ SENSITIVE: []
1564
+ end
1565
+
1566
+ class GetIdentityCenterAuthTokenResponse
1567
+ attr_accessor token: ::String
1568
+ attr_accessor expiration_time: ::Time
1569
+ SENSITIVE: [:token]
1570
+ end
1571
+
1552
1572
  class GetReservedNodeExchangeConfigurationOptionsInputMessage
1553
1573
  attr_accessor action_type: ("restore-cluster" | "resize-cluster")
1554
1574
  attr_accessor cluster_identifier: ::String
@@ -1835,6 +1855,14 @@ module Aws::Redshift
1835
1855
  end
1836
1856
  end
1837
1857
 
1858
+ class LakehouseConfiguration
1859
+ attr_accessor cluster_identifier: ::String
1860
+ attr_accessor lakehouse_idc_application_arn: ::String
1861
+ attr_accessor lakehouse_registration_status: ::String
1862
+ attr_accessor catalog_arn: ::String
1863
+ SENSITIVE: []
1864
+ end
1865
+
1838
1866
  class LimitExceededFault < Aws::EmptyStructure
1839
1867
  end
1840
1868
 
@@ -2052,6 +2080,16 @@ module Aws::Redshift
2052
2080
  SENSITIVE: []
2053
2081
  end
2054
2082
 
2083
+ class ModifyLakehouseConfigurationMessage
2084
+ attr_accessor cluster_identifier: ::String
2085
+ attr_accessor lakehouse_registration: ("Register" | "Deregister")
2086
+ attr_accessor catalog_name: ::String
2087
+ attr_accessor lakehouse_idc_registration: ("Associate" | "Disassociate")
2088
+ attr_accessor lakehouse_idc_application_arn: ::String
2089
+ attr_accessor dry_run: bool
2090
+ SENSITIVE: []
2091
+ end
2092
+
2055
2093
  class ModifyRedshiftIdcApplicationMessage
2056
2094
  attr_accessor redshift_idc_application_arn: ::String
2057
2095
  attr_accessor identity_namespace: ::String
@@ -2316,6 +2354,7 @@ module Aws::Redshift
2316
2354
  attr_accessor idc_onboard_status: ::String
2317
2355
  attr_accessor authorized_token_issuer_list: ::Array[Types::AuthorizedTokenIssuer]
2318
2356
  attr_accessor service_integrations: ::Array[Types::ServiceIntegrationsUnion]
2357
+ attr_accessor application_type: ("None" | "Lakehouse")
2319
2358
  attr_accessor tags: ::Array[Types::Tag]
2320
2359
  attr_accessor sso_tag_keys: ::Array[::String]
2321
2360
  SENSITIVE: []
@@ -2330,6 +2369,20 @@ module Aws::Redshift
2330
2369
  class RedshiftIdcApplicationQuotaExceededFault < Aws::EmptyStructure
2331
2370
  end
2332
2371
 
2372
+ class RedshiftInvalidParameterFault < Aws::EmptyStructure
2373
+ end
2374
+
2375
+ class RedshiftScopeUnion
2376
+ attr_accessor connect: Types::Connect
2377
+ attr_accessor unknown: untyped
2378
+ SENSITIVE: []
2379
+
2380
+ class Connect < RedshiftScopeUnion
2381
+ end
2382
+ class Unknown < RedshiftScopeUnion
2383
+ end
2384
+ end
2385
+
2333
2386
  class ReferenceLink
2334
2387
  attr_accessor text: ::String
2335
2388
  attr_accessor link: ::String
@@ -2531,6 +2584,8 @@ module Aws::Redshift
2531
2584
  attr_accessor master_password_secret_kms_key_id: ::String
2532
2585
  attr_accessor ip_address_type: ::String
2533
2586
  attr_accessor multi_az: bool
2587
+ attr_accessor catalog_name: ::String
2588
+ attr_accessor redshift_idc_application_arn: ::String
2534
2589
  SENSITIVE: []
2535
2590
  end
2536
2591
 
@@ -2710,6 +2765,7 @@ module Aws::Redshift
2710
2765
  class ServiceIntegrationsUnion
2711
2766
  attr_accessor lake_formation: ::Array[Types::LakeFormationScopeUnion]
2712
2767
  attr_accessor s3_access_grants: ::Array[Types::S3AccessGrantsScopeUnion]
2768
+ attr_accessor redshift: ::Array[Types::RedshiftScopeUnion]
2713
2769
  attr_accessor unknown: untyped
2714
2770
  SENSITIVE: []
2715
2771
 
@@ -2717,6 +2773,8 @@ module Aws::Redshift
2717
2773
  end
2718
2774
  class S3AccessGrants < ServiceIntegrationsUnion
2719
2775
  end
2776
+ class Redshift < ServiceIntegrationsUnion
2777
+ end
2720
2778
  class Unknown < ServiceIntegrationsUnion
2721
2779
  end
2722
2780
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-redshift
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.149.0
4
+ version: 1.151.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement