aws-sdk-redshift 1.126.0 → 1.128.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.
@@ -1974,8 +1974,8 @@ module Aws::Redshift
1974
1974
  # about node types, go to [ Working with Clusters][1] in the *Amazon
1975
1975
  # Redshift Cluster Management Guide*.
1976
1976
  #
1977
- # Valid Values: `dc2.large` \| `dc2.8xlarge` \| `ra3.xlplus` \|
1978
- # `ra3.4xlarge` \| `ra3.16xlarge`
1977
+ # Valid Values: `dc2.large` \| `dc2.8xlarge` \| `ra3.large` \|
1978
+ # `ra3.xlplus` \| `ra3.4xlarge` \| `ra3.16xlarge`
1979
1979
  #
1980
1980
  #
1981
1981
  #
@@ -2894,6 +2894,62 @@ module Aws::Redshift
2894
2894
  include Aws::Structure
2895
2895
  end
2896
2896
 
2897
+ # @!attribute [rw] source_arn
2898
+ # The Amazon Resource Name (ARN) of the database to use as the source
2899
+ # for replication.
2900
+ # @return [String]
2901
+ #
2902
+ # @!attribute [rw] target_arn
2903
+ # The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse
2904
+ # to use as the target for replication.
2905
+ # @return [String]
2906
+ #
2907
+ # @!attribute [rw] integration_name
2908
+ # The name of the integration.
2909
+ # @return [String]
2910
+ #
2911
+ # @!attribute [rw] kms_key_id
2912
+ # An Key Management Service (KMS) key identifier for the key to use to
2913
+ # encrypt the integration. If you don't specify an encryption key,
2914
+ # the default Amazon Web Services owned key is used.
2915
+ # @return [String]
2916
+ #
2917
+ # @!attribute [rw] tag_list
2918
+ # A list of tags.
2919
+ # @return [Array<Types::Tag>]
2920
+ #
2921
+ # @!attribute [rw] additional_encryption_context
2922
+ # An optional set of non-secret key–value pairs that contains
2923
+ # additional contextual information about the data. For more
2924
+ # information, see [Encryption context][1] in the *Amazon Web Services
2925
+ # Key Management Service Developer Guide*.
2926
+ #
2927
+ # You can only include this parameter if you specify the `KMSKeyId`
2928
+ # parameter.
2929
+ #
2930
+ #
2931
+ #
2932
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
2933
+ # @return [Hash<String,String>]
2934
+ #
2935
+ # @!attribute [rw] description
2936
+ # A description of the integration.
2937
+ # @return [String]
2938
+ #
2939
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateIntegrationMessage AWS API Documentation
2940
+ #
2941
+ class CreateIntegrationMessage < Struct.new(
2942
+ :source_arn,
2943
+ :target_arn,
2944
+ :integration_name,
2945
+ :kms_key_id,
2946
+ :tag_list,
2947
+ :additional_encryption_context,
2948
+ :description)
2949
+ SENSITIVE = []
2950
+ include Aws::Structure
2951
+ end
2952
+
2897
2953
  # @!attribute [rw] idc_instance_arn
2898
2954
  # The Amazon resource name (ARN) of the IAM Identity Center instance
2899
2955
  # where Amazon Redshift creates a new managed application.
@@ -3690,6 +3746,18 @@ module Aws::Redshift
3690
3746
  include Aws::Structure
3691
3747
  end
3692
3748
 
3749
+ # @!attribute [rw] integration_arn
3750
+ # The unique identifier of the integration to delete.
3751
+ # @return [String]
3752
+ #
3753
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteIntegrationMessage AWS API Documentation
3754
+ #
3755
+ class DeleteIntegrationMessage < Struct.new(
3756
+ :integration_arn)
3757
+ SENSITIVE = []
3758
+ include Aws::Structure
3759
+ end
3760
+
3693
3761
  # @!attribute [rw] redshift_idc_application_arn
3694
3762
  # The ARN for a deleted Amazon Redshift IAM Identity Center
3695
3763
  # application.
@@ -5103,6 +5171,63 @@ module Aws::Redshift
5103
5171
  include Aws::Structure
5104
5172
  end
5105
5173
 
5174
+ # A set of elements to filter the returned integrations.
5175
+ #
5176
+ # @!attribute [rw] name
5177
+ # Specifies the type of integration filter.
5178
+ # @return [String]
5179
+ #
5180
+ # @!attribute [rw] values
5181
+ # Specifies the values to filter on.
5182
+ # @return [Array<String>]
5183
+ #
5184
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeIntegrationsFilter AWS API Documentation
5185
+ #
5186
+ class DescribeIntegrationsFilter < Struct.new(
5187
+ :name,
5188
+ :values)
5189
+ SENSITIVE = []
5190
+ include Aws::Structure
5191
+ end
5192
+
5193
+ # @!attribute [rw] integration_arn
5194
+ # The unique identifier of the integration.
5195
+ # @return [String]
5196
+ #
5197
+ # @!attribute [rw] max_records
5198
+ # The maximum number of response records to return in each call. If
5199
+ # the number of remaining response records exceeds the specified
5200
+ # `MaxRecords` value, a value is returned in a `marker` field of the
5201
+ # response. You can retrieve the next set of records by retrying the
5202
+ # command with the returned marker value.
5203
+ #
5204
+ # Default: `100`
5205
+ #
5206
+ # Constraints: minimum 20, maximum 100.
5207
+ # @return [Integer]
5208
+ #
5209
+ # @!attribute [rw] marker
5210
+ # An optional pagination token provided by a previous
5211
+ # `DescribeIntegrations` request. If this parameter is specified, the
5212
+ # response includes only records beyond the marker, up to the value
5213
+ # specified by `MaxRecords`.
5214
+ # @return [String]
5215
+ #
5216
+ # @!attribute [rw] filters
5217
+ # A filter that specifies one or more resources to return.
5218
+ # @return [Array<Types::DescribeIntegrationsFilter>]
5219
+ #
5220
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeIntegrationsMessage AWS API Documentation
5221
+ #
5222
+ class DescribeIntegrationsMessage < Struct.new(
5223
+ :integration_arn,
5224
+ :max_records,
5225
+ :marker,
5226
+ :filters)
5227
+ SENSITIVE = []
5228
+ include Aws::Structure
5229
+ end
5230
+
5106
5231
  # @!attribute [rw] cluster_identifier
5107
5232
  # The identifier of the cluster from which to get the logging status.
5108
5233
  #
@@ -5741,6 +5866,14 @@ module Aws::Redshift
5741
5866
  #
5742
5867
  # * Snapshot copy grant
5743
5868
  #
5869
+ # * Integration (zero-ETL integration)
5870
+ #
5871
+ # <note markdown="1"> To describe the tags associated with an `integration`, don't
5872
+ # specify `ResourceType`, instead specify the `ResourceName` of the
5873
+ # integration.
5874
+ #
5875
+ # </note>
5876
+ #
5744
5877
  # For more information about Amazon Redshift resource types and
5745
5878
  # constructing ARNs, go to [Specifying Policy Elements: Actions,
5746
5879
  # Effects, Resources, and Principals][1] in the Amazon Redshift
@@ -7224,6 +7357,99 @@ module Aws::Redshift
7224
7357
  #
7225
7358
  class InsufficientS3BucketPolicyFault < Aws::EmptyStructure; end
7226
7359
 
7360
+ # @!attribute [rw] integration_arn
7361
+ # The Amazon Resource Name (ARN) of the integration.
7362
+ # @return [String]
7363
+ #
7364
+ # @!attribute [rw] integration_name
7365
+ # The name of the integration.
7366
+ # @return [String]
7367
+ #
7368
+ # @!attribute [rw] source_arn
7369
+ # The Amazon Resource Name (ARN) of the database used as the source
7370
+ # for replication.
7371
+ # @return [String]
7372
+ #
7373
+ # @!attribute [rw] target_arn
7374
+ # The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse
7375
+ # to use as the target for replication.
7376
+ # @return [String]
7377
+ #
7378
+ # @!attribute [rw] status
7379
+ # The current status of the integration.
7380
+ # @return [String]
7381
+ #
7382
+ # @!attribute [rw] errors
7383
+ # Any errors associated with the integration.
7384
+ # @return [Array<Types::IntegrationError>]
7385
+ #
7386
+ # @!attribute [rw] create_time
7387
+ # The time (UTC) when the integration was created.
7388
+ # @return [Time]
7389
+ #
7390
+ # @!attribute [rw] description
7391
+ # The description of the integration.
7392
+ # @return [String]
7393
+ #
7394
+ # @!attribute [rw] kms_key_id
7395
+ # The Key Management Service (KMS) key identifier for the key used to
7396
+ # encrypt the integration.
7397
+ # @return [String]
7398
+ #
7399
+ # @!attribute [rw] additional_encryption_context
7400
+ # The encryption context for the integration. For more information,
7401
+ # see [Encryption context][1] in the *Amazon Web Services Key
7402
+ # Management Service Developer Guide*.
7403
+ #
7404
+ #
7405
+ #
7406
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
7407
+ # @return [Hash<String,String>]
7408
+ #
7409
+ # @!attribute [rw] tags
7410
+ # The list of tags associated with the integration.
7411
+ # @return [Array<Types::Tag>]
7412
+ #
7413
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Integration AWS API Documentation
7414
+ #
7415
+ class Integration < Struct.new(
7416
+ :integration_arn,
7417
+ :integration_name,
7418
+ :source_arn,
7419
+ :target_arn,
7420
+ :status,
7421
+ :errors,
7422
+ :create_time,
7423
+ :description,
7424
+ :kms_key_id,
7425
+ :additional_encryption_context,
7426
+ :tags)
7427
+ SENSITIVE = []
7428
+ include Aws::Structure
7429
+ end
7430
+
7431
+ # The integration you are trying to create already exists.
7432
+ #
7433
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationAlreadyExistsFault AWS API Documentation
7434
+ #
7435
+ class IntegrationAlreadyExistsFault < Aws::EmptyStructure; end
7436
+
7437
+ # A conflicting conditional operation is currently in progress against
7438
+ # this resource. This typically occurs when there are multiple requests
7439
+ # being made to the same resource at the same time, and these requests
7440
+ # conflict with each other.
7441
+ #
7442
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationConflictOperationFault AWS API Documentation
7443
+ #
7444
+ class IntegrationConflictOperationFault < Aws::EmptyStructure; end
7445
+
7446
+ # The integration is in an invalid state and can't perform the
7447
+ # requested operation.
7448
+ #
7449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationConflictStateFault AWS API Documentation
7450
+ #
7451
+ class IntegrationConflictStateFault < Aws::EmptyStructure; end
7452
+
7227
7453
  # The error of an inbound integration.
7228
7454
  #
7229
7455
  # @!attribute [rw] error_code
@@ -7249,6 +7475,47 @@ module Aws::Redshift
7249
7475
  #
7250
7476
  class IntegrationNotFoundFault < Aws::EmptyStructure; end
7251
7477
 
7478
+ # You can't create any more zero-ETL integrations because the quota has
7479
+ # been reached.
7480
+ #
7481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationQuotaExceededFault AWS API Documentation
7482
+ #
7483
+ class IntegrationQuotaExceededFault < Aws::EmptyStructure; end
7484
+
7485
+ # The specified integration source can't be found.
7486
+ #
7487
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationSourceNotFoundFault AWS API Documentation
7488
+ #
7489
+ class IntegrationSourceNotFoundFault < Aws::EmptyStructure; end
7490
+
7491
+ # The specified integration target can't be found.
7492
+ #
7493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationTargetNotFoundFault AWS API Documentation
7494
+ #
7495
+ class IntegrationTargetNotFoundFault < Aws::EmptyStructure; end
7496
+
7497
+ # @!attribute [rw] marker
7498
+ # A value that indicates the starting point for the next set of
7499
+ # response records in a subsequent request. If a value is returned in
7500
+ # a response, you can retrieve the next set of records by providing
7501
+ # this returned marker value in the `Marker` parameter and retrying
7502
+ # the command. If the `Marker` field is empty, all response records
7503
+ # have been retrieved for the request.
7504
+ # @return [String]
7505
+ #
7506
+ # @!attribute [rw] integrations
7507
+ # List of integrations that are described.
7508
+ # @return [Array<Types::Integration>]
7509
+ #
7510
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationsMessage AWS API Documentation
7511
+ #
7512
+ class IntegrationsMessage < Struct.new(
7513
+ :marker,
7514
+ :integrations)
7515
+ SENSITIVE = []
7516
+ include Aws::Structure
7517
+ end
7518
+
7252
7519
  # The authentication profile request is not valid. The profile name
7253
7520
  # can't be null or empty. The authentication profile API operation must
7254
7521
  # be available in the Amazon Web Services Region.
@@ -7884,8 +8151,8 @@ module Aws::Redshift
7884
8151
  # Clusters in Amazon Redshift][1] in the *Amazon Redshift Cluster
7885
8152
  # Management Guide*.
7886
8153
  #
7887
- # Valid Values: `dc2.large` \| `dc2.8xlarge` \| `ra3.xlplus` \|
7888
- # `ra3.4xlarge` \| `ra3.16xlarge`
8154
+ # Valid Values: `dc2.large` \| `dc2.8xlarge` \| `ra3.large` \|
8155
+ # `ra3.xlplus` \| `ra3.4xlarge` \| `ra3.16xlarge`
7889
8156
  #
7890
8157
  #
7891
8158
  #
@@ -8514,6 +8781,28 @@ module Aws::Redshift
8514
8781
  include Aws::Structure
8515
8782
  end
8516
8783
 
8784
+ # @!attribute [rw] integration_arn
8785
+ # The unique identifier of the integration to modify.
8786
+ # @return [String]
8787
+ #
8788
+ # @!attribute [rw] description
8789
+ # A new description for the integration.
8790
+ # @return [String]
8791
+ #
8792
+ # @!attribute [rw] integration_name
8793
+ # A new name for the integration.
8794
+ # @return [String]
8795
+ #
8796
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyIntegrationMessage AWS API Documentation
8797
+ #
8798
+ class ModifyIntegrationMessage < Struct.new(
8799
+ :integration_arn,
8800
+ :description,
8801
+ :integration_name)
8802
+ SENSITIVE = []
8803
+ include Aws::Structure
8804
+ end
8805
+
8517
8806
  # @!attribute [rw] redshift_idc_application_arn
8518
8807
  # The ARN for the Redshift application that integrates with IAM
8519
8808
  # Identity Center.
@@ -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.126.0'
58
+ GEM_VERSION = '1.128.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -480,6 +480,37 @@ module Aws
480
480
  ) -> _CreateHsmConfigurationResponseSuccess
481
481
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHsmConfigurationResponseSuccess
482
482
 
483
+ interface _CreateIntegrationResponseSuccess
484
+ include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
485
+ def integration_arn: () -> ::String
486
+ def integration_name: () -> ::String
487
+ def source_arn: () -> ::String
488
+ def target_arn: () -> ::String
489
+ def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
490
+ def errors: () -> ::Array[Types::IntegrationError]
491
+ def create_time: () -> ::Time
492
+ def description: () -> ::String
493
+ def kms_key_id: () -> ::String
494
+ def additional_encryption_context: () -> ::Hash[::String, ::String]
495
+ def tags: () -> ::Array[Types::Tag]
496
+ end
497
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#create_integration-instance_method
498
+ def create_integration: (
499
+ source_arn: ::String,
500
+ target_arn: ::String,
501
+ integration_name: ::String,
502
+ ?kms_key_id: ::String,
503
+ ?tag_list: Array[
504
+ {
505
+ key: ::String?,
506
+ value: ::String?
507
+ },
508
+ ],
509
+ ?additional_encryption_context: Hash[::String, ::String],
510
+ ?description: ::String
511
+ ) -> _CreateIntegrationResponseSuccess
512
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResponseSuccess
513
+
483
514
  interface _CreateRedshiftIdcApplicationResponseSuccess
484
515
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateRedshiftIdcApplicationResult]
485
516
  def redshift_idc_application: () -> Types::RedshiftIdcApplication
@@ -746,6 +777,26 @@ module Aws
746
777
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
747
778
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
748
779
 
780
+ interface _DeleteIntegrationResponseSuccess
781
+ include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
782
+ def integration_arn: () -> ::String
783
+ def integration_name: () -> ::String
784
+ def source_arn: () -> ::String
785
+ def target_arn: () -> ::String
786
+ def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
787
+ def errors: () -> ::Array[Types::IntegrationError]
788
+ def create_time: () -> ::Time
789
+ def description: () -> ::String
790
+ def kms_key_id: () -> ::String
791
+ def additional_encryption_context: () -> ::Hash[::String, ::String]
792
+ def tags: () -> ::Array[Types::Tag]
793
+ end
794
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#delete_integration-instance_method
795
+ def delete_integration: (
796
+ integration_arn: ::String
797
+ ) -> _DeleteIntegrationResponseSuccess
798
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIntegrationResponseSuccess
799
+
749
800
  interface _DeletePartnerResponseSuccess
750
801
  include ::Seahorse::Client::_ResponseSuccess[Types::PartnerIntegrationOutputMessage]
751
802
  def database_name: () -> ::String
@@ -1149,6 +1200,25 @@ module Aws
1149
1200
  ) -> _DescribeInboundIntegrationsResponseSuccess
1150
1201
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInboundIntegrationsResponseSuccess
1151
1202
 
1203
+ interface _DescribeIntegrationsResponseSuccess
1204
+ include ::Seahorse::Client::_ResponseSuccess[Types::IntegrationsMessage]
1205
+ def marker: () -> ::String
1206
+ def integrations: () -> ::Array[Types::Integration]
1207
+ end
1208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#describe_integrations-instance_method
1209
+ def describe_integrations: (
1210
+ ?integration_arn: ::String,
1211
+ ?max_records: ::Integer,
1212
+ ?marker: ::String,
1213
+ ?filters: Array[
1214
+ {
1215
+ name: ("integration-arn" | "source-arn" | "source-types" | "status"),
1216
+ values: Array[::String]
1217
+ },
1218
+ ]
1219
+ ) -> _DescribeIntegrationsResponseSuccess
1220
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeIntegrationsResponseSuccess
1221
+
1152
1222
  interface _DescribeLoggingStatusResponseSuccess
1153
1223
  include ::Seahorse::Client::_ResponseSuccess[Types::LoggingStatus]
1154
1224
  def logging_enabled: () -> bool
@@ -1787,6 +1857,28 @@ module Aws
1787
1857
  ) -> _ModifyEventSubscriptionResponseSuccess
1788
1858
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyEventSubscriptionResponseSuccess
1789
1859
 
1860
+ interface _ModifyIntegrationResponseSuccess
1861
+ include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
1862
+ def integration_arn: () -> ::String
1863
+ def integration_name: () -> ::String
1864
+ def source_arn: () -> ::String
1865
+ def target_arn: () -> ::String
1866
+ def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
1867
+ def errors: () -> ::Array[Types::IntegrationError]
1868
+ def create_time: () -> ::Time
1869
+ def description: () -> ::String
1870
+ def kms_key_id: () -> ::String
1871
+ def additional_encryption_context: () -> ::Hash[::String, ::String]
1872
+ def tags: () -> ::Array[Types::Tag]
1873
+ end
1874
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Redshift/Client.html#modify_integration-instance_method
1875
+ def modify_integration: (
1876
+ integration_arn: ::String,
1877
+ ?description: ::String,
1878
+ ?integration_name: ::String
1879
+ ) -> _ModifyIntegrationResponseSuccess
1880
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIntegrationResponseSuccess
1881
+
1790
1882
  interface _ModifyRedshiftIdcApplicationResponseSuccess
1791
1883
  include ::Seahorse::Client::_ResponseSuccess[Types::ModifyRedshiftIdcApplicationResult]
1792
1884
  def redshift_idc_application: () -> Types::RedshiftIdcApplication
data/sig/errors.rbs CHANGED
@@ -117,8 +117,20 @@ module Aws
117
117
  end
118
118
  class InsufficientS3BucketPolicyFault < ::Aws::Errors::ServiceError
119
119
  end
120
+ class IntegrationAlreadyExistsFault < ::Aws::Errors::ServiceError
121
+ end
122
+ class IntegrationConflictOperationFault < ::Aws::Errors::ServiceError
123
+ end
124
+ class IntegrationConflictStateFault < ::Aws::Errors::ServiceError
125
+ end
120
126
  class IntegrationNotFoundFault < ::Aws::Errors::ServiceError
121
127
  end
128
+ class IntegrationQuotaExceededFault < ::Aws::Errors::ServiceError
129
+ end
130
+ class IntegrationSourceNotFoundFault < ::Aws::Errors::ServiceError
131
+ end
132
+ class IntegrationTargetNotFoundFault < ::Aws::Errors::ServiceError
133
+ end
122
134
  class InvalidAuthenticationProfileRequestFault < ::Aws::Errors::ServiceError
123
135
  end
124
136
  class InvalidAuthorizationStateFault < ::Aws::Errors::ServiceError
data/sig/types.rbs CHANGED
@@ -655,6 +655,17 @@ module Aws::Redshift
655
655
  SENSITIVE: []
656
656
  end
657
657
 
658
+ class CreateIntegrationMessage
659
+ attr_accessor source_arn: ::String
660
+ attr_accessor target_arn: ::String
661
+ attr_accessor integration_name: ::String
662
+ attr_accessor kms_key_id: ::String
663
+ attr_accessor tag_list: ::Array[Types::Tag]
664
+ attr_accessor additional_encryption_context: ::Hash[::String, ::String]
665
+ attr_accessor description: ::String
666
+ SENSITIVE: []
667
+ end
668
+
658
669
  class CreateRedshiftIdcApplicationMessage
659
670
  attr_accessor idc_instance_arn: ::String
660
671
  attr_accessor redshift_idc_application_name: ::String
@@ -865,6 +876,11 @@ module Aws::Redshift
865
876
  SENSITIVE: []
866
877
  end
867
878
 
879
+ class DeleteIntegrationMessage
880
+ attr_accessor integration_arn: ::String
881
+ SENSITIVE: []
882
+ end
883
+
868
884
  class DeleteRedshiftIdcApplicationMessage
869
885
  attr_accessor redshift_idc_application_arn: ::String
870
886
  SENSITIVE: []
@@ -1139,6 +1155,20 @@ module Aws::Redshift
1139
1155
  SENSITIVE: []
1140
1156
  end
1141
1157
 
1158
+ class DescribeIntegrationsFilter
1159
+ attr_accessor name: ("integration-arn" | "source-arn" | "source-types" | "status")
1160
+ attr_accessor values: ::Array[::String]
1161
+ SENSITIVE: []
1162
+ end
1163
+
1164
+ class DescribeIntegrationsMessage
1165
+ attr_accessor integration_arn: ::String
1166
+ attr_accessor max_records: ::Integer
1167
+ attr_accessor marker: ::String
1168
+ attr_accessor filters: ::Array[Types::DescribeIntegrationsFilter]
1169
+ SENSITIVE: []
1170
+ end
1171
+
1142
1172
  class DescribeLoggingStatusMessage
1143
1173
  attr_accessor cluster_identifier: ::String
1144
1174
  SENSITIVE: []
@@ -1631,6 +1661,30 @@ module Aws::Redshift
1631
1661
  class InsufficientS3BucketPolicyFault < Aws::EmptyStructure
1632
1662
  end
1633
1663
 
1664
+ class Integration
1665
+ attr_accessor integration_arn: ::String
1666
+ attr_accessor integration_name: ::String
1667
+ attr_accessor source_arn: ::String
1668
+ attr_accessor target_arn: ::String
1669
+ attr_accessor status: ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
1670
+ attr_accessor errors: ::Array[Types::IntegrationError]
1671
+ attr_accessor create_time: ::Time
1672
+ attr_accessor description: ::String
1673
+ attr_accessor kms_key_id: ::String
1674
+ attr_accessor additional_encryption_context: ::Hash[::String, ::String]
1675
+ attr_accessor tags: ::Array[Types::Tag]
1676
+ SENSITIVE: []
1677
+ end
1678
+
1679
+ class IntegrationAlreadyExistsFault < Aws::EmptyStructure
1680
+ end
1681
+
1682
+ class IntegrationConflictOperationFault < Aws::EmptyStructure
1683
+ end
1684
+
1685
+ class IntegrationConflictStateFault < Aws::EmptyStructure
1686
+ end
1687
+
1634
1688
  class IntegrationError
1635
1689
  attr_accessor error_code: ::String
1636
1690
  attr_accessor error_message: ::String
@@ -1640,6 +1694,21 @@ module Aws::Redshift
1640
1694
  class IntegrationNotFoundFault < Aws::EmptyStructure
1641
1695
  end
1642
1696
 
1697
+ class IntegrationQuotaExceededFault < Aws::EmptyStructure
1698
+ end
1699
+
1700
+ class IntegrationSourceNotFoundFault < Aws::EmptyStructure
1701
+ end
1702
+
1703
+ class IntegrationTargetNotFoundFault < Aws::EmptyStructure
1704
+ end
1705
+
1706
+ class IntegrationsMessage
1707
+ attr_accessor marker: ::String
1708
+ attr_accessor integrations: ::Array[Types::Integration]
1709
+ SENSITIVE: []
1710
+ end
1711
+
1643
1712
  class InvalidAuthenticationProfileRequestFault < Aws::EmptyStructure
1644
1713
  end
1645
1714
 
@@ -1962,6 +2031,13 @@ module Aws::Redshift
1962
2031
  SENSITIVE: []
1963
2032
  end
1964
2033
 
2034
+ class ModifyIntegrationMessage
2035
+ attr_accessor integration_arn: ::String
2036
+ attr_accessor description: ::String
2037
+ attr_accessor integration_name: ::String
2038
+ SENSITIVE: []
2039
+ end
2040
+
1965
2041
  class ModifyRedshiftIdcApplicationMessage
1966
2042
  attr_accessor redshift_idc_application_arn: ::String
1967
2043
  attr_accessor identity_namespace: ::String
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.126.0
4
+ version: 1.128.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: 2024-10-07 00:00:00.000000000 Z
11
+ date: 2024-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.207.0
22
+ version: 3.210.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.207.0
32
+ version: 3.210.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement