aws-sdk-redshift 1.103.0 → 1.104.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +267 -1
- data/lib/aws-sdk-redshift/client_api.rb +166 -0
- data/lib/aws-sdk-redshift/endpoints.rb +56 -0
- data/lib/aws-sdk-redshift/errors.rb +44 -0
- data/lib/aws-sdk-redshift/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-redshift/types.rb +369 -1
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +2 -2
@@ -398,6 +398,28 @@ module Aws::Redshift
|
|
398
398
|
include Aws::Structure
|
399
399
|
end
|
400
400
|
|
401
|
+
# The authorized token issuer for the Amazon Redshift IAM Identity
|
402
|
+
# Center application.
|
403
|
+
#
|
404
|
+
# @!attribute [rw] trusted_token_issuer_arn
|
405
|
+
# The ARN for the authorized token issuer for integrating Amazon
|
406
|
+
# Redshift with IDC Identity Center.
|
407
|
+
# @return [String]
|
408
|
+
#
|
409
|
+
# @!attribute [rw] authorized_audiences_list
|
410
|
+
# The list of audiences for the authorized token issuer for
|
411
|
+
# integrating Amazon Redshift with IDC Identity Center.
|
412
|
+
# @return [Array<String>]
|
413
|
+
#
|
414
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizedTokenIssuer AWS API Documentation
|
415
|
+
#
|
416
|
+
class AuthorizedTokenIssuer < Struct.new(
|
417
|
+
:trusted_token_issuer_arn,
|
418
|
+
:authorized_audiences_list)
|
419
|
+
SENSITIVE = []
|
420
|
+
include Aws::Structure
|
421
|
+
end
|
422
|
+
|
401
423
|
# Describes an availability zone.
|
402
424
|
#
|
403
425
|
# @!attribute [rw] name
|
@@ -2285,6 +2307,11 @@ module Aws::Redshift
|
|
2285
2307
|
# Zones (AZ).
|
2286
2308
|
# @return [Boolean]
|
2287
2309
|
#
|
2310
|
+
# @!attribute [rw] redshift_idc_application_arn
|
2311
|
+
# The Amazon resource name (ARN) of the Amazon Redshift IAM Identity
|
2312
|
+
# Center application.
|
2313
|
+
# @return [String]
|
2314
|
+
#
|
2288
2315
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
|
2289
2316
|
#
|
2290
2317
|
class CreateClusterMessage < Struct.new(
|
@@ -2325,7 +2352,8 @@ module Aws::Redshift
|
|
2325
2352
|
:manage_master_password,
|
2326
2353
|
:master_password_secret_kms_key_id,
|
2327
2354
|
:ip_address_type,
|
2328
|
-
:multi_az
|
2355
|
+
:multi_az,
|
2356
|
+
:redshift_idc_application_arn)
|
2329
2357
|
SENSITIVE = [:master_user_password]
|
2330
2358
|
include Aws::Structure
|
2331
2359
|
end
|
@@ -2843,6 +2871,68 @@ module Aws::Redshift
|
|
2843
2871
|
include Aws::Structure
|
2844
2872
|
end
|
2845
2873
|
|
2874
|
+
# @!attribute [rw] idc_instance_arn
|
2875
|
+
# The Amazon resource name (ARN) of the IAM Identity Center instance
|
2876
|
+
# where Amazon Redshift creates a new managed application.
|
2877
|
+
# @return [String]
|
2878
|
+
#
|
2879
|
+
# @!attribute [rw] redshift_idc_application_name
|
2880
|
+
# The name of the Redshift application in IAM Identity Center.
|
2881
|
+
# @return [String]
|
2882
|
+
#
|
2883
|
+
# @!attribute [rw] identity_namespace
|
2884
|
+
# The namespace for the Amazon Redshift IAM Identity Center
|
2885
|
+
# application instance. It determines which managed application
|
2886
|
+
# verifies the connection token.
|
2887
|
+
# @return [String]
|
2888
|
+
#
|
2889
|
+
# @!attribute [rw] idc_display_name
|
2890
|
+
# The display name for the Amazon Redshift IAM Identity Center
|
2891
|
+
# application instance. It appears in the console.
|
2892
|
+
# @return [String]
|
2893
|
+
#
|
2894
|
+
# @!attribute [rw] iam_role_arn
|
2895
|
+
# The IAM role ARN for the Amazon Redshift IAM Identity Center
|
2896
|
+
# application instance. It has the required permissions to be assumed
|
2897
|
+
# and invoke the IDC Identity Center API.
|
2898
|
+
# @return [String]
|
2899
|
+
#
|
2900
|
+
# @!attribute [rw] authorized_token_issuer_list
|
2901
|
+
# The token issuer list for the Amazon Redshift IAM Identity Center
|
2902
|
+
# application instance.
|
2903
|
+
# @return [Array<Types::AuthorizedTokenIssuer>]
|
2904
|
+
#
|
2905
|
+
# @!attribute [rw] service_integrations
|
2906
|
+
# A collection of service integrations for the Redshift IAM Identity
|
2907
|
+
# Center application.
|
2908
|
+
# @return [Array<Types::ServiceIntegrationsUnion>]
|
2909
|
+
#
|
2910
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateRedshiftIdcApplicationMessage AWS API Documentation
|
2911
|
+
#
|
2912
|
+
class CreateRedshiftIdcApplicationMessage < Struct.new(
|
2913
|
+
:idc_instance_arn,
|
2914
|
+
:redshift_idc_application_name,
|
2915
|
+
:identity_namespace,
|
2916
|
+
:idc_display_name,
|
2917
|
+
:iam_role_arn,
|
2918
|
+
:authorized_token_issuer_list,
|
2919
|
+
:service_integrations)
|
2920
|
+
SENSITIVE = []
|
2921
|
+
include Aws::Structure
|
2922
|
+
end
|
2923
|
+
|
2924
|
+
# @!attribute [rw] redshift_idc_application
|
2925
|
+
# Contains properties for the Redshift IDC application.
|
2926
|
+
# @return [Types::RedshiftIdcApplication]
|
2927
|
+
#
|
2928
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateRedshiftIdcApplicationResult AWS API Documentation
|
2929
|
+
#
|
2930
|
+
class CreateRedshiftIdcApplicationResult < Struct.new(
|
2931
|
+
:redshift_idc_application)
|
2932
|
+
SENSITIVE = []
|
2933
|
+
include Aws::Structure
|
2934
|
+
end
|
2935
|
+
|
2846
2936
|
# @!attribute [rw] scheduled_action_name
|
2847
2937
|
# The name of the scheduled action. The name must be unique within an
|
2848
2938
|
# account. For more information about this parameter, see
|
@@ -3568,6 +3658,19 @@ module Aws::Redshift
|
|
3568
3658
|
include Aws::Structure
|
3569
3659
|
end
|
3570
3660
|
|
3661
|
+
# @!attribute [rw] redshift_idc_application_arn
|
3662
|
+
# The ARN for a deleted Amazon Redshift IAM Identity Center
|
3663
|
+
# application.
|
3664
|
+
# @return [String]
|
3665
|
+
#
|
3666
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteRedshiftIdcApplicationMessage AWS API Documentation
|
3667
|
+
#
|
3668
|
+
class DeleteRedshiftIdcApplicationMessage < Struct.new(
|
3669
|
+
:redshift_idc_application_arn)
|
3670
|
+
SENSITIVE = []
|
3671
|
+
include Aws::Structure
|
3672
|
+
end
|
3673
|
+
|
3571
3674
|
# @!attribute [rw] resource_arn
|
3572
3675
|
# The Amazon Resource Name (ARN) of the resource of which its resource
|
3573
3676
|
# policy is deleted.
|
@@ -3652,6 +3755,12 @@ module Aws::Redshift
|
|
3652
3755
|
include Aws::Structure
|
3653
3756
|
end
|
3654
3757
|
|
3758
|
+
# A dependent service denied access for the integration.
|
3759
|
+
#
|
3760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DependentServiceAccessDeniedFault AWS API Documentation
|
3761
|
+
#
|
3762
|
+
class DependentServiceAccessDeniedFault < Aws::EmptyStructure; end
|
3763
|
+
|
3655
3764
|
# The request cannot be completed because a dependent service is
|
3656
3765
|
# throttling requests made by Amazon Redshift on your behalf. Wait and
|
3657
3766
|
# retry the request.
|
@@ -5137,6 +5246,60 @@ module Aws::Redshift
|
|
5137
5246
|
include Aws::Structure
|
5138
5247
|
end
|
5139
5248
|
|
5249
|
+
# @!attribute [rw] redshift_idc_application_arn
|
5250
|
+
# The ARN for the Redshift application that integrates with IAM
|
5251
|
+
# Identity Center.
|
5252
|
+
# @return [String]
|
5253
|
+
#
|
5254
|
+
# @!attribute [rw] max_records
|
5255
|
+
# The maximum number of response records to return in each call. If
|
5256
|
+
# the number of remaining response records exceeds the specified
|
5257
|
+
# MaxRecords value, a value is returned in a marker field of the
|
5258
|
+
# response. You can retrieve the next set of records by retrying the
|
5259
|
+
# command with the returned marker value.
|
5260
|
+
# @return [Integer]
|
5261
|
+
#
|
5262
|
+
# @!attribute [rw] marker
|
5263
|
+
# A value that indicates the starting point for the next set of
|
5264
|
+
# response records in a subsequent request. If a value is returned in
|
5265
|
+
# a response, you can retrieve the next set of records by providing
|
5266
|
+
# this returned marker value in the Marker parameter and retrying the
|
5267
|
+
# command. If the Marker field is empty, all response records have
|
5268
|
+
# been retrieved for the request.
|
5269
|
+
# @return [String]
|
5270
|
+
#
|
5271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeRedshiftIdcApplicationsMessage AWS API Documentation
|
5272
|
+
#
|
5273
|
+
class DescribeRedshiftIdcApplicationsMessage < Struct.new(
|
5274
|
+
:redshift_idc_application_arn,
|
5275
|
+
:max_records,
|
5276
|
+
:marker)
|
5277
|
+
SENSITIVE = []
|
5278
|
+
include Aws::Structure
|
5279
|
+
end
|
5280
|
+
|
5281
|
+
# @!attribute [rw] redshift_idc_applications
|
5282
|
+
# The list of Amazon Redshift IAM Identity Center applications.
|
5283
|
+
# @return [Array<Types::RedshiftIdcApplication>]
|
5284
|
+
#
|
5285
|
+
# @!attribute [rw] marker
|
5286
|
+
# A value that indicates the starting point for the next set of
|
5287
|
+
# response records in a subsequent request. If a value is returned in
|
5288
|
+
# a response, you can retrieve the next set of records by providing
|
5289
|
+
# this returned marker value in the Marker parameter and retrying the
|
5290
|
+
# command. If the Marker field is empty, all response records have
|
5291
|
+
# been retrieved for the request.
|
5292
|
+
# @return [String]
|
5293
|
+
#
|
5294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeRedshiftIdcApplicationsResult AWS API Documentation
|
5295
|
+
#
|
5296
|
+
class DescribeRedshiftIdcApplicationsResult < Struct.new(
|
5297
|
+
:redshift_idc_applications,
|
5298
|
+
:marker)
|
5299
|
+
SENSITIVE = []
|
5300
|
+
include Aws::Structure
|
5301
|
+
end
|
5302
|
+
|
5140
5303
|
# @!attribute [rw] reserved_node_id
|
5141
5304
|
# The identifier of the source reserved node in a reserved-node
|
5142
5305
|
# exchange request.
|
@@ -7284,6 +7447,43 @@ module Aws::Redshift
|
|
7284
7447
|
#
|
7285
7448
|
class Ipv6CidrBlockNotFoundFault < Aws::EmptyStructure; end
|
7286
7449
|
|
7450
|
+
# The Lake Formation scope.
|
7451
|
+
#
|
7452
|
+
# @!attribute [rw] authorization
|
7453
|
+
# Determines whether the query scope is enabled or disabled.
|
7454
|
+
# @return [String]
|
7455
|
+
#
|
7456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/LakeFormationQuery AWS API Documentation
|
7457
|
+
#
|
7458
|
+
class LakeFormationQuery < Struct.new(
|
7459
|
+
:authorization)
|
7460
|
+
SENSITIVE = []
|
7461
|
+
include Aws::Structure
|
7462
|
+
end
|
7463
|
+
|
7464
|
+
# A list of scopes set up for Lake Formation integration.
|
7465
|
+
#
|
7466
|
+
# @note LakeFormationScopeUnion is a union - when making an API calls you must set exactly one of the members.
|
7467
|
+
#
|
7468
|
+
# @note LakeFormationScopeUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of LakeFormationScopeUnion corresponding to the set member.
|
7469
|
+
#
|
7470
|
+
# @!attribute [rw] lake_formation_query
|
7471
|
+
# The Lake Formation scope.
|
7472
|
+
# @return [Types::LakeFormationQuery]
|
7473
|
+
#
|
7474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/LakeFormationScopeUnion AWS API Documentation
|
7475
|
+
#
|
7476
|
+
class LakeFormationScopeUnion < Struct.new(
|
7477
|
+
:lake_formation_query,
|
7478
|
+
:unknown)
|
7479
|
+
SENSITIVE = []
|
7480
|
+
include Aws::Structure
|
7481
|
+
include Aws::Structure::Union
|
7482
|
+
|
7483
|
+
class LakeFormationQuery < LakeFormationScopeUnion; end
|
7484
|
+
class Unknown < LakeFormationScopeUnion; end
|
7485
|
+
end
|
7486
|
+
|
7287
7487
|
# The encryption key has exceeded its grant limit in Amazon Web Services
|
7288
7488
|
# KMS.
|
7289
7489
|
#
|
@@ -8218,6 +8418,63 @@ module Aws::Redshift
|
|
8218
8418
|
include Aws::Structure
|
8219
8419
|
end
|
8220
8420
|
|
8421
|
+
# @!attribute [rw] redshift_idc_application_arn
|
8422
|
+
# The ARN for the Redshift application that integrates with IAM
|
8423
|
+
# Identity Center.
|
8424
|
+
# @return [String]
|
8425
|
+
#
|
8426
|
+
# @!attribute [rw] identity_namespace
|
8427
|
+
# The namespace for the Amazon Redshift IAM Identity Center
|
8428
|
+
# application to change. It determines which managed application
|
8429
|
+
# verifies the connection token.
|
8430
|
+
# @return [String]
|
8431
|
+
#
|
8432
|
+
# @!attribute [rw] iam_role_arn
|
8433
|
+
# The IAM role ARN associated with the Amazon Redshift IAM Identity
|
8434
|
+
# Center application to change. It has the required permissions to be
|
8435
|
+
# assumed and invoke the IDC Identity Center API.
|
8436
|
+
# @return [String]
|
8437
|
+
#
|
8438
|
+
# @!attribute [rw] idc_display_name
|
8439
|
+
# The display name for the Amazon Redshift IAM Identity Center
|
8440
|
+
# application to change. It appears on the console.
|
8441
|
+
# @return [String]
|
8442
|
+
#
|
8443
|
+
# @!attribute [rw] authorized_token_issuer_list
|
8444
|
+
# The authorized token issuer list for the Amazon Redshift IAM
|
8445
|
+
# Identity Center application to change.
|
8446
|
+
# @return [Array<Types::AuthorizedTokenIssuer>]
|
8447
|
+
#
|
8448
|
+
# @!attribute [rw] service_integrations
|
8449
|
+
# A collection of service integrations associated with the
|
8450
|
+
# application.
|
8451
|
+
# @return [Array<Types::ServiceIntegrationsUnion>]
|
8452
|
+
#
|
8453
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyRedshiftIdcApplicationMessage AWS API Documentation
|
8454
|
+
#
|
8455
|
+
class ModifyRedshiftIdcApplicationMessage < Struct.new(
|
8456
|
+
:redshift_idc_application_arn,
|
8457
|
+
:identity_namespace,
|
8458
|
+
:iam_role_arn,
|
8459
|
+
:idc_display_name,
|
8460
|
+
:authorized_token_issuer_list,
|
8461
|
+
:service_integrations)
|
8462
|
+
SENSITIVE = []
|
8463
|
+
include Aws::Structure
|
8464
|
+
end
|
8465
|
+
|
8466
|
+
# @!attribute [rw] redshift_idc_application
|
8467
|
+
# Contains properties for the Redshift IDC application.
|
8468
|
+
# @return [Types::RedshiftIdcApplication]
|
8469
|
+
#
|
8470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyRedshiftIdcApplicationResult AWS API Documentation
|
8471
|
+
#
|
8472
|
+
class ModifyRedshiftIdcApplicationResult < Struct.new(
|
8473
|
+
:redshift_idc_application)
|
8474
|
+
SENSITIVE = []
|
8475
|
+
include Aws::Structure
|
8476
|
+
end
|
8477
|
+
|
8221
8478
|
# @!attribute [rw] scheduled_action_name
|
8222
8479
|
# The name of the scheduled action to modify.
|
8223
8480
|
# @return [String]
|
@@ -8945,6 +9202,94 @@ module Aws::Redshift
|
|
8945
9202
|
include Aws::Structure
|
8946
9203
|
end
|
8947
9204
|
|
9205
|
+
# Contains properties for the Redshift IDC application.
|
9206
|
+
#
|
9207
|
+
# @!attribute [rw] idc_instance_arn
|
9208
|
+
# The ARN for the IAM Identity Center instance that Redshift
|
9209
|
+
# integrates with.
|
9210
|
+
# @return [String]
|
9211
|
+
#
|
9212
|
+
# @!attribute [rw] redshift_idc_application_name
|
9213
|
+
# The name of the Redshift application in IAM Identity Center.
|
9214
|
+
# @return [String]
|
9215
|
+
#
|
9216
|
+
# @!attribute [rw] redshift_idc_application_arn
|
9217
|
+
# The ARN for the Redshift application that integrates with IAM
|
9218
|
+
# Identity Center.
|
9219
|
+
# @return [String]
|
9220
|
+
#
|
9221
|
+
# @!attribute [rw] identity_namespace
|
9222
|
+
# The identity namespace for the Amazon Redshift IAM Identity Center
|
9223
|
+
# application. It determines which managed application verifies the
|
9224
|
+
# connection token.
|
9225
|
+
# @return [String]
|
9226
|
+
#
|
9227
|
+
# @!attribute [rw] idc_display_name
|
9228
|
+
# The display name for the Amazon Redshift IAM Identity Center
|
9229
|
+
# application. It appears on the console.
|
9230
|
+
# @return [String]
|
9231
|
+
#
|
9232
|
+
# @!attribute [rw] iam_role_arn
|
9233
|
+
# The ARN for the Amazon Redshift IAM Identity Center application. It
|
9234
|
+
# has the required permissions to be assumed and invoke the IDC
|
9235
|
+
# Identity Center API.
|
9236
|
+
# @return [String]
|
9237
|
+
#
|
9238
|
+
# @!attribute [rw] idc_managed_application_arn
|
9239
|
+
# The ARN for the Amazon Redshift IAM Identity Center application.
|
9240
|
+
# @return [String]
|
9241
|
+
#
|
9242
|
+
# @!attribute [rw] idc_onboard_status
|
9243
|
+
# The onboarding status for the Amazon Redshift IAM Identity Center
|
9244
|
+
# application.
|
9245
|
+
# @return [String]
|
9246
|
+
#
|
9247
|
+
# @!attribute [rw] authorized_token_issuer_list
|
9248
|
+
# The authorized token issuer list for the Amazon Redshift IAM
|
9249
|
+
# Identity Center application.
|
9250
|
+
# @return [Array<Types::AuthorizedTokenIssuer>]
|
9251
|
+
#
|
9252
|
+
# @!attribute [rw] service_integrations
|
9253
|
+
# A list of service integrations for the Redshift IAM Identity Center
|
9254
|
+
# application.
|
9255
|
+
# @return [Array<Types::ServiceIntegrationsUnion>]
|
9256
|
+
#
|
9257
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RedshiftIdcApplication AWS API Documentation
|
9258
|
+
#
|
9259
|
+
class RedshiftIdcApplication < Struct.new(
|
9260
|
+
:idc_instance_arn,
|
9261
|
+
:redshift_idc_application_name,
|
9262
|
+
:redshift_idc_application_arn,
|
9263
|
+
:identity_namespace,
|
9264
|
+
:idc_display_name,
|
9265
|
+
:iam_role_arn,
|
9266
|
+
:idc_managed_application_arn,
|
9267
|
+
:idc_onboard_status,
|
9268
|
+
:authorized_token_issuer_list,
|
9269
|
+
:service_integrations)
|
9270
|
+
SENSITIVE = []
|
9271
|
+
include Aws::Structure
|
9272
|
+
end
|
9273
|
+
|
9274
|
+
# The application you attempted to add already exists.
|
9275
|
+
#
|
9276
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RedshiftIdcApplicationAlreadyExistsFault AWS API Documentation
|
9277
|
+
#
|
9278
|
+
class RedshiftIdcApplicationAlreadyExistsFault < Aws::EmptyStructure; end
|
9279
|
+
|
9280
|
+
# The application you attempted to find doesn't exist.
|
9281
|
+
#
|
9282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RedshiftIdcApplicationNotExistsFault AWS API Documentation
|
9283
|
+
#
|
9284
|
+
class RedshiftIdcApplicationNotExistsFault < Aws::EmptyStructure; end
|
9285
|
+
|
9286
|
+
# The maximum number of Redshift IAM Identity Center applications was
|
9287
|
+
# exceeded.
|
9288
|
+
#
|
9289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RedshiftIdcApplicationQuotaExceededFault AWS API Documentation
|
9290
|
+
#
|
9291
|
+
class RedshiftIdcApplicationQuotaExceededFault < Aws::EmptyStructure; end
|
9292
|
+
|
8948
9293
|
# @!attribute [rw] data_share_arn
|
8949
9294
|
# The Amazon Resource Name (ARN) of the datashare to reject.
|
8950
9295
|
# @return [String]
|
@@ -10476,6 +10821,29 @@ module Aws::Redshift
|
|
10476
10821
|
include Aws::Structure
|
10477
10822
|
end
|
10478
10823
|
|
10824
|
+
# A list of service integrations.
|
10825
|
+
#
|
10826
|
+
# @note ServiceIntegrationsUnion is a union - when making an API calls you must set exactly one of the members.
|
10827
|
+
#
|
10828
|
+
# @note ServiceIntegrationsUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ServiceIntegrationsUnion corresponding to the set member.
|
10829
|
+
#
|
10830
|
+
# @!attribute [rw] lake_formation
|
10831
|
+
# A list of scopes set up for Lake Formation integration.
|
10832
|
+
# @return [Array<Types::LakeFormationScopeUnion>]
|
10833
|
+
#
|
10834
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ServiceIntegrationsUnion AWS API Documentation
|
10835
|
+
#
|
10836
|
+
class ServiceIntegrationsUnion < Struct.new(
|
10837
|
+
:lake_formation,
|
10838
|
+
:unknown)
|
10839
|
+
SENSITIVE = []
|
10840
|
+
include Aws::Structure
|
10841
|
+
include Aws::Structure::Union
|
10842
|
+
|
10843
|
+
class LakeFormation < ServiceIntegrationsUnion; end
|
10844
|
+
class Unknown < ServiceIntegrationsUnion; end
|
10845
|
+
end
|
10846
|
+
|
10479
10847
|
# Describes a snapshot.
|
10480
10848
|
#
|
10481
10849
|
# @!attribute [rw] snapshot_identifier
|
data/lib/aws-sdk-redshift.rb
CHANGED
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.
|
4
|
+
version: 1.104.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-11-
|
11
|
+
date: 2023-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|