aws-sdk-redshift 1.37.0 → 1.38.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6a171187f0be8e2c0670a7ee03fe24f93ea468b2
4
- data.tar.gz: 6810f12f084448dbe565cca8004f91728e51977d
3
+ metadata.gz: 75fc11aeaa8114acfa69cc030fdcc9874312e561
4
+ data.tar.gz: 8bbf71b0b59a5862354953ef491cb32eda665c6e
5
5
  SHA512:
6
- metadata.gz: '087ce50c80078415c050ee9e638baf8c01a5eca091332dee3ab1018e4059c710718ad604a1b2d46b834f773a0d03800ee08cf2679f88627e5a4bc5b358aa82f5'
7
- data.tar.gz: ab866753465e9e83a647cd3916165772add193d19347881043bcd1b859a9ffe4e5fa13bec60d74ae08c573d01870e3f833b5a7c60db8a59d46f21191224ec98c
6
+ metadata.gz: 72019218bbac095d542c00677eb60be57cf624d465ab343b4ad1984288891e05ce8abd4545b4d637c22fe4c5f9209fc7cbd553aabb8457fc4a597151613fbb56
7
+ data.tar.gz: d0dedb1f2ab7d529cd67c802f2b154fc578d76e4864c5c2fb0be51cec905f2547f2a9976c35bd268995f1cb9c3fda131a04bf66ae4a6be8c5c24520ea5fecc59
@@ -25,17 +25,20 @@ require_relative 'aws-sdk-redshift/customizations'
25
25
  # methods each accept a hash of request parameters and return a response
26
26
  # structure.
27
27
  #
28
+ # redshift = Aws::Redshift::Client.new
29
+ # resp = redshift.accept_reserved_node_exchange(params)
30
+ #
28
31
  # See {Client} for more information.
29
32
  #
30
33
  # # Errors
31
34
  #
32
- # Errors returned from Amazon Redshift all
33
- # extend {Errors::ServiceError}.
35
+ # Errors returned from Amazon Redshift are defined in the
36
+ # {Errors} module and all extend {Errors::ServiceError}.
34
37
  #
35
38
  # begin
36
39
  # # do stuff
37
40
  # rescue Aws::Redshift::Errors::ServiceError
38
- # # rescues all service API errors
41
+ # # rescues all Amazon Redshift API errors
39
42
  # end
40
43
  #
41
44
  # See {Errors} for more information.
@@ -43,6 +46,6 @@ require_relative 'aws-sdk-redshift/customizations'
43
46
  # @service
44
47
  module Aws::Redshift
45
48
 
46
- GEM_VERSION = '1.37.0'
49
+ GEM_VERSION = '1.38.0'
47
50
 
48
51
  end
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/query.rb'
30
30
  Aws::Plugins::GlobalConfiguration.add_identifier(:redshift)
31
31
 
32
32
  module Aws::Redshift
33
+ # An API client for Redshift. To construct a client, you need to configure a `:region` and `:credentials`.
34
+ #
35
+ # client = Aws::Redshift::Client.new(
36
+ # region: region_name,
37
+ # credentials: credentials,
38
+ # # ...
39
+ # )
40
+ #
41
+ # For details on configuring region and credentials see
42
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
43
+ #
44
+ # See {#initialize} for a full list of supported configuration options.
33
45
  class Client < Seahorse::Client::Base
34
46
 
35
47
  include Aws::ClientStubs
@@ -108,6 +120,12 @@ module Aws::Redshift
108
120
  # When set to `true`, a thread polling for endpoints will be running in
109
121
  # the background every 60 secs (default). Defaults to `false`.
110
122
  #
123
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
124
+ # Used only in `adaptive` retry mode. When true, the request will sleep
125
+ # until there is sufficent client side capacity to retry the request.
126
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
127
+ # not retry instead of sleeping.
128
+ #
111
129
  # @option options [Boolean] :client_side_monitoring (false)
112
130
  # When `true`, client-side metrics will be collected for all API requests from
113
131
  # this client.
@@ -132,6 +150,10 @@ module Aws::Redshift
132
150
  # When `true`, an attempt is made to coerce request parameters into
133
151
  # the required types.
134
152
  #
153
+ # @option options [Boolean] :correct_clock_skew (true)
154
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
155
+ # a clock skew correction and retry requests with skewed client clocks.
156
+ #
135
157
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
158
  # Set to true to disable SDK automatically adding host prefix
137
159
  # to default service endpoint when available.
@@ -166,15 +188,29 @@ module Aws::Redshift
166
188
  # The Logger instance to send log messages to. If this option
167
189
  # is not set, logging will be disabled.
168
190
  #
191
+ # @option options [Integer] :max_attempts (3)
192
+ # An integer representing the maximum number attempts that will be made for
193
+ # a single request, including the initial attempt. For example,
194
+ # setting this value to 5 will result in a request being retried up to
195
+ # 4 times. Used in `standard` and `adaptive` retry modes.
196
+ #
169
197
  # @option options [String] :profile ("default")
170
198
  # Used when loading credentials from the shared credentials file
171
199
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
200
  #
201
+ # @option options [Proc] :retry_backoff
202
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
203
+ # This option is only used in the `legacy` retry mode.
204
+ #
173
205
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
206
+ # The base delay in seconds used by the default backoff function. This option
207
+ # is only used in the `legacy` retry mode.
175
208
  #
176
209
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
210
+ # A delay randomiser function used by the default backoff function.
211
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
212
+ # otherwise a Proc that takes and returns a number. This option is only used
213
+ # in the `legacy` retry mode.
178
214
  #
179
215
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
216
  #
@@ -182,11 +218,26 @@ module Aws::Redshift
182
218
  # The maximum number of times to retry failed requests. Only
183
219
  # ~ 500 level server errors and certain ~ 400 level client errors
184
220
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
221
+ # checksum errors, networking errors, timeout errors, auth errors,
222
+ # endpoint discovery, and errors from expired credentials.
223
+ # This option is only used in the `legacy` retry mode.
187
224
  #
188
225
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
226
+ # The maximum number of seconds to delay between retries (0 for no limit)
227
+ # used by the default backoff function. This option is only used in the
228
+ # `legacy` retry mode.
229
+ #
230
+ # @option options [String] :retry_mode ("legacy")
231
+ # Specifies which retry algorithm to use. Values are:
232
+ # * `legacy` - The pre-existing retry behavior. This is default value if
233
+ # no retry mode is provided.
234
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
+ # This includes support for retry quotas, which limit the number of
236
+ # unsuccessful retries a client can make.
237
+ # * `adaptive` - An experimental retry mode that includes all the
238
+ # functionality of `standard` mode along with automatic client side
239
+ # throttling. This is a provisional mode that may change behavior
240
+ # in the future.
190
241
  #
191
242
  # @option options [String] :secret_access_key
192
243
  #
@@ -209,16 +260,16 @@ module Aws::Redshift
209
260
  # requests through. Formatted like 'http://proxy.com:123'.
210
261
  #
211
262
  # @option options [Float] :http_open_timeout (15) The number of
212
- # seconds to wait when opening a HTTP session before rasing a
263
+ # seconds to wait when opening a HTTP session before raising a
213
264
  # `Timeout::Error`.
214
265
  #
215
266
  # @option options [Integer] :http_read_timeout (60) The default
216
267
  # number of seconds to wait for response data. This value can
217
268
  # safely be set
218
- # per-request on the session yeidled by {#session_for}.
269
+ # per-request on the session yielded by {#session_for}.
219
270
  #
220
271
  # @option options [Float] :http_idle_timeout (5) The number of
221
- # seconds a connection is allowed to sit idble before it is
272
+ # seconds a connection is allowed to sit idle before it is
222
273
  # considered stale. Stale connections are closed and removed
223
274
  # from the pool before making a request.
224
275
  #
@@ -227,7 +278,7 @@ module Aws::Redshift
227
278
  # request body. This option has no effect unless the request has
228
279
  # "Expect" header set to "100-continue". Defaults to `nil` which
229
280
  # disables this behaviour. This value can safely be set per
230
- # request on the session yeidled by {#session_for}.
281
+ # request on the session yielded by {#session_for}.
231
282
  #
232
283
  # @option options [Boolean] :http_wire_trace (false) When `true`,
233
284
  # HTTP debug output will be sent to the `:logger`.
@@ -8387,7 +8438,7 @@ module Aws::Redshift
8387
8438
  params: params,
8388
8439
  config: config)
8389
8440
  context[:gem_name] = 'aws-sdk-redshift'
8390
- context[:gem_version] = '1.37.0'
8441
+ context[:gem_version] = '1.38.0'
8391
8442
  Seahorse::Client::Request.new(handlers, context)
8392
8443
  end
8393
8444
 
@@ -429,6 +429,8 @@ module Aws::Redshift
429
429
  AcceptReservedNodeExchangeOutputMessage.add_member(:exchanged_reserved_node, Shapes::ShapeRef.new(shape: ReservedNode, location_name: "ExchangedReservedNode"))
430
430
  AcceptReservedNodeExchangeOutputMessage.struct_class = Types::AcceptReservedNodeExchangeOutputMessage
431
431
 
432
+ AccessToSnapshotDeniedFault.struct_class = Types::AccessToSnapshotDeniedFault
433
+
432
434
  AccountAttribute.add_member(:attribute_name, Shapes::ShapeRef.new(shape: String, location_name: "AttributeName"))
433
435
  AccountAttribute.add_member(:attribute_values, Shapes::ShapeRef.new(shape: AttributeValueList, location_name: "AttributeValues"))
434
436
  AccountAttribute.struct_class = Types::AccountAttribute
@@ -453,6 +455,12 @@ module Aws::Redshift
453
455
  AttributeValueTarget.add_member(:attribute_value, Shapes::ShapeRef.new(shape: String, location_name: "AttributeValue"))
454
456
  AttributeValueTarget.struct_class = Types::AttributeValueTarget
455
457
 
458
+ AuthorizationAlreadyExistsFault.struct_class = Types::AuthorizationAlreadyExistsFault
459
+
460
+ AuthorizationNotFoundFault.struct_class = Types::AuthorizationNotFoundFault
461
+
462
+ AuthorizationQuotaExceededFault.struct_class = Types::AuthorizationQuotaExceededFault
463
+
456
464
  AuthorizeClusterSecurityGroupIngressMessage.add_member(:cluster_security_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterSecurityGroupName"))
457
465
  AuthorizeClusterSecurityGroupIngressMessage.add_member(:cidrip, Shapes::ShapeRef.new(shape: String, location_name: "CIDRIP"))
458
466
  AuthorizeClusterSecurityGroupIngressMessage.add_member(:ec2_security_group_name, Shapes::ShapeRef.new(shape: String, location_name: "EC2SecurityGroupName"))
@@ -483,6 +491,10 @@ module Aws::Redshift
483
491
  BatchDeleteClusterSnapshotsResult.add_member(:errors, Shapes::ShapeRef.new(shape: BatchSnapshotOperationErrorList, location_name: "Errors"))
484
492
  BatchDeleteClusterSnapshotsResult.struct_class = Types::BatchDeleteClusterSnapshotsResult
485
493
 
494
+ BatchDeleteRequestSizeExceededFault.struct_class = Types::BatchDeleteRequestSizeExceededFault
495
+
496
+ BatchModifyClusterSnapshotsLimitExceededFault.struct_class = Types::BatchModifyClusterSnapshotsLimitExceededFault
497
+
486
498
  BatchModifyClusterSnapshotsMessage.add_member(:snapshot_identifier_list, Shapes::ShapeRef.new(shape: SnapshotIdentifierList, required: true, location_name: "SnapshotIdentifierList"))
487
499
  BatchModifyClusterSnapshotsMessage.add_member(:manual_snapshot_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ManualSnapshotRetentionPeriod"))
488
500
  BatchModifyClusterSnapshotsMessage.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location_name: "Force"))
@@ -496,6 +508,8 @@ module Aws::Redshift
496
508
 
497
509
  BatchSnapshotOperationErrors.member = Shapes::ShapeRef.new(shape: SnapshotErrorMessage, location_name: "SnapshotErrorMessage")
498
510
 
511
+ BucketNotFoundFault.struct_class = Types::BucketNotFoundFault
512
+
499
513
  CancelResizeMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
500
514
  CancelResizeMessage.struct_class = Types::CancelResizeMessage
501
515
 
@@ -547,6 +561,8 @@ module Aws::Redshift
547
561
  Cluster.add_member(:resize_info, Shapes::ShapeRef.new(shape: ResizeInfo, location_name: "ResizeInfo"))
548
562
  Cluster.struct_class = Types::Cluster
549
563
 
564
+ ClusterAlreadyExistsFault.struct_class = Types::ClusterAlreadyExistsFault
565
+
550
566
  ClusterAssociatedToSchedule.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ClusterIdentifier"))
551
567
  ClusterAssociatedToSchedule.add_member(:schedule_association_state, Shapes::ShapeRef.new(shape: ScheduleState, location_name: "ScheduleAssociationState"))
552
568
  ClusterAssociatedToSchedule.struct_class = Types::ClusterAssociatedToSchedule
@@ -583,12 +599,18 @@ module Aws::Redshift
583
599
 
584
600
  ClusterNodesList.member = Shapes::ShapeRef.new(shape: ClusterNode)
585
601
 
602
+ ClusterNotFoundFault.struct_class = Types::ClusterNotFoundFault
603
+
604
+ ClusterOnLatestRevisionFault.struct_class = Types::ClusterOnLatestRevisionFault
605
+
586
606
  ClusterParameterGroup.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "ParameterGroupName"))
587
607
  ClusterParameterGroup.add_member(:parameter_group_family, Shapes::ShapeRef.new(shape: String, location_name: "ParameterGroupFamily"))
588
608
  ClusterParameterGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
589
609
  ClusterParameterGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
590
610
  ClusterParameterGroup.struct_class = Types::ClusterParameterGroup
591
611
 
612
+ ClusterParameterGroupAlreadyExistsFault.struct_class = Types::ClusterParameterGroupAlreadyExistsFault
613
+
592
614
  ClusterParameterGroupDetails.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersList, location_name: "Parameters"))
593
615
  ClusterParameterGroupDetails.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
594
616
  ClusterParameterGroupDetails.struct_class = Types::ClusterParameterGroupDetails
@@ -597,6 +619,10 @@ module Aws::Redshift
597
619
  ClusterParameterGroupNameMessage.add_member(:parameter_group_status, Shapes::ShapeRef.new(shape: String, location_name: "ParameterGroupStatus"))
598
620
  ClusterParameterGroupNameMessage.struct_class = Types::ClusterParameterGroupNameMessage
599
621
 
622
+ ClusterParameterGroupNotFoundFault.struct_class = Types::ClusterParameterGroupNotFoundFault
623
+
624
+ ClusterParameterGroupQuotaExceededFault.struct_class = Types::ClusterParameterGroupQuotaExceededFault
625
+
600
626
  ClusterParameterGroupStatus.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "ParameterGroupName"))
601
627
  ClusterParameterGroupStatus.add_member(:parameter_apply_status, Shapes::ShapeRef.new(shape: String, location_name: "ParameterApplyStatus"))
602
628
  ClusterParameterGroupStatus.add_member(:cluster_parameter_status_list, Shapes::ShapeRef.new(shape: ClusterParameterStatusList, location_name: "ClusterParameterStatusList"))
@@ -615,6 +641,8 @@ module Aws::Redshift
615
641
 
616
642
  ClusterParameterStatusList.member = Shapes::ShapeRef.new(shape: ClusterParameterStatus)
617
643
 
644
+ ClusterQuotaExceededFault.struct_class = Types::ClusterQuotaExceededFault
645
+
618
646
  ClusterSecurityGroup.add_member(:cluster_security_group_name, Shapes::ShapeRef.new(shape: String, location_name: "ClusterSecurityGroupName"))
619
647
  ClusterSecurityGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
620
648
  ClusterSecurityGroup.add_member(:ec2_security_groups, Shapes::ShapeRef.new(shape: EC2SecurityGroupList, location_name: "EC2SecurityGroups"))
@@ -622,6 +650,8 @@ module Aws::Redshift
622
650
  ClusterSecurityGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
623
651
  ClusterSecurityGroup.struct_class = Types::ClusterSecurityGroup
624
652
 
653
+ ClusterSecurityGroupAlreadyExistsFault.struct_class = Types::ClusterSecurityGroupAlreadyExistsFault
654
+
625
655
  ClusterSecurityGroupMembership.add_member(:cluster_security_group_name, Shapes::ShapeRef.new(shape: String, location_name: "ClusterSecurityGroupName"))
626
656
  ClusterSecurityGroupMembership.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
627
657
  ClusterSecurityGroupMembership.struct_class = Types::ClusterSecurityGroupMembership
@@ -634,14 +664,24 @@ module Aws::Redshift
634
664
 
635
665
  ClusterSecurityGroupNameList.member = Shapes::ShapeRef.new(shape: String, location_name: "ClusterSecurityGroupName")
636
666
 
667
+ ClusterSecurityGroupNotFoundFault.struct_class = Types::ClusterSecurityGroupNotFoundFault
668
+
669
+ ClusterSecurityGroupQuotaExceededFault.struct_class = Types::ClusterSecurityGroupQuotaExceededFault
670
+
637
671
  ClusterSecurityGroups.member = Shapes::ShapeRef.new(shape: ClusterSecurityGroup, location_name: "ClusterSecurityGroup")
638
672
 
673
+ ClusterSnapshotAlreadyExistsFault.struct_class = Types::ClusterSnapshotAlreadyExistsFault
674
+
639
675
  ClusterSnapshotCopyStatus.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "DestinationRegion"))
640
676
  ClusterSnapshotCopyStatus.add_member(:retention_period, Shapes::ShapeRef.new(shape: Long, location_name: "RetentionPeriod"))
641
677
  ClusterSnapshotCopyStatus.add_member(:manual_snapshot_retention_period, Shapes::ShapeRef.new(shape: Integer, location_name: "ManualSnapshotRetentionPeriod"))
642
678
  ClusterSnapshotCopyStatus.add_member(:snapshot_copy_grant_name, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotCopyGrantName"))
643
679
  ClusterSnapshotCopyStatus.struct_class = Types::ClusterSnapshotCopyStatus
644
680
 
681
+ ClusterSnapshotNotFoundFault.struct_class = Types::ClusterSnapshotNotFoundFault
682
+
683
+ ClusterSnapshotQuotaExceededFault.struct_class = Types::ClusterSnapshotQuotaExceededFault
684
+
645
685
  ClusterSubnetGroup.add_member(:cluster_subnet_group_name, Shapes::ShapeRef.new(shape: String, location_name: "ClusterSubnetGroupName"))
646
686
  ClusterSubnetGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
647
687
  ClusterSubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
@@ -650,12 +690,20 @@ module Aws::Redshift
650
690
  ClusterSubnetGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
651
691
  ClusterSubnetGroup.struct_class = Types::ClusterSubnetGroup
652
692
 
693
+ ClusterSubnetGroupAlreadyExistsFault.struct_class = Types::ClusterSubnetGroupAlreadyExistsFault
694
+
653
695
  ClusterSubnetGroupMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
654
696
  ClusterSubnetGroupMessage.add_member(:cluster_subnet_groups, Shapes::ShapeRef.new(shape: ClusterSubnetGroups, location_name: "ClusterSubnetGroups"))
655
697
  ClusterSubnetGroupMessage.struct_class = Types::ClusterSubnetGroupMessage
656
698
 
699
+ ClusterSubnetGroupNotFoundFault.struct_class = Types::ClusterSubnetGroupNotFoundFault
700
+
701
+ ClusterSubnetGroupQuotaExceededFault.struct_class = Types::ClusterSubnetGroupQuotaExceededFault
702
+
657
703
  ClusterSubnetGroups.member = Shapes::ShapeRef.new(shape: ClusterSubnetGroup, location_name: "ClusterSubnetGroup")
658
704
 
705
+ ClusterSubnetQuotaExceededFault.struct_class = Types::ClusterSubnetQuotaExceededFault
706
+
659
707
  ClusterVersion.add_member(:cluster_version, Shapes::ShapeRef.new(shape: String, location_name: "ClusterVersion"))
660
708
  ClusterVersion.add_member(:cluster_parameter_group_family, Shapes::ShapeRef.new(shape: String, location_name: "ClusterParameterGroupFamily"))
661
709
  ClusterVersion.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
@@ -680,6 +728,8 @@ module Aws::Redshift
680
728
  CopyClusterSnapshotResult.add_member(:snapshot, Shapes::ShapeRef.new(shape: Snapshot, location_name: "Snapshot"))
681
729
  CopyClusterSnapshotResult.struct_class = Types::CopyClusterSnapshotResult
682
730
 
731
+ CopyToRegionDisabledFault.struct_class = Types::CopyToRegionDisabledFault
732
+
683
733
  CreateClusterMessage.add_member(:db_name, Shapes::ShapeRef.new(shape: String, location_name: "DBName"))
684
734
  CreateClusterMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
685
735
  CreateClusterMessage.add_member(:cluster_type, Shapes::ShapeRef.new(shape: String, location_name: "ClusterType"))
@@ -887,6 +937,10 @@ module Aws::Redshift
887
937
  DeleteTagsMessage.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
888
938
  DeleteTagsMessage.struct_class = Types::DeleteTagsMessage
889
939
 
940
+ DependentServiceRequestThrottlingFault.struct_class = Types::DependentServiceRequestThrottlingFault
941
+
942
+ DependentServiceUnavailableFault.struct_class = Types::DependentServiceUnavailableFault
943
+
890
944
  DescribeAccountAttributesMessage.add_member(:attribute_names, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributeNames"))
891
945
  DescribeAccountAttributesMessage.struct_class = Types::DescribeAccountAttributesMessage
892
946
 
@@ -1154,6 +1208,8 @@ module Aws::Redshift
1154
1208
  EventSubscription.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1155
1209
  EventSubscription.struct_class = Types::EventSubscription
1156
1210
 
1211
+ EventSubscriptionQuotaExceededFault.struct_class = Types::EventSubscriptionQuotaExceededFault
1212
+
1157
1213
  EventSubscriptionsList.member = Shapes::ShapeRef.new(shape: EventSubscription, location_name: "EventSubscription")
1158
1214
 
1159
1215
  EventSubscriptionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
@@ -1186,12 +1242,18 @@ module Aws::Redshift
1186
1242
  HsmClientCertificate.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1187
1243
  HsmClientCertificate.struct_class = Types::HsmClientCertificate
1188
1244
 
1245
+ HsmClientCertificateAlreadyExistsFault.struct_class = Types::HsmClientCertificateAlreadyExistsFault
1246
+
1189
1247
  HsmClientCertificateList.member = Shapes::ShapeRef.new(shape: HsmClientCertificate, location_name: "HsmClientCertificate")
1190
1248
 
1191
1249
  HsmClientCertificateMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
1192
1250
  HsmClientCertificateMessage.add_member(:hsm_client_certificates, Shapes::ShapeRef.new(shape: HsmClientCertificateList, location_name: "HsmClientCertificates"))
1193
1251
  HsmClientCertificateMessage.struct_class = Types::HsmClientCertificateMessage
1194
1252
 
1253
+ HsmClientCertificateNotFoundFault.struct_class = Types::HsmClientCertificateNotFoundFault
1254
+
1255
+ HsmClientCertificateQuotaExceededFault.struct_class = Types::HsmClientCertificateQuotaExceededFault
1256
+
1195
1257
  HsmConfiguration.add_member(:hsm_configuration_identifier, Shapes::ShapeRef.new(shape: String, location_name: "HsmConfigurationIdentifier"))
1196
1258
  HsmConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
1197
1259
  HsmConfiguration.add_member(:hsm_ip_address, Shapes::ShapeRef.new(shape: String, location_name: "HsmIpAddress"))
@@ -1199,12 +1261,18 @@ module Aws::Redshift
1199
1261
  HsmConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1200
1262
  HsmConfiguration.struct_class = Types::HsmConfiguration
1201
1263
 
1264
+ HsmConfigurationAlreadyExistsFault.struct_class = Types::HsmConfigurationAlreadyExistsFault
1265
+
1202
1266
  HsmConfigurationList.member = Shapes::ShapeRef.new(shape: HsmConfiguration, location_name: "HsmConfiguration")
1203
1267
 
1204
1268
  HsmConfigurationMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
1205
1269
  HsmConfigurationMessage.add_member(:hsm_configurations, Shapes::ShapeRef.new(shape: HsmConfigurationList, location_name: "HsmConfigurations"))
1206
1270
  HsmConfigurationMessage.struct_class = Types::HsmConfigurationMessage
1207
1271
 
1272
+ HsmConfigurationNotFoundFault.struct_class = Types::HsmConfigurationNotFoundFault
1273
+
1274
+ HsmConfigurationQuotaExceededFault.struct_class = Types::HsmConfigurationQuotaExceededFault
1275
+
1208
1276
  HsmStatus.add_member(:hsm_client_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "HsmClientCertificateIdentifier"))
1209
1277
  HsmStatus.add_member(:hsm_configuration_identifier, Shapes::ShapeRef.new(shape: String, location_name: "HsmConfigurationIdentifier"))
1210
1278
  HsmStatus.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
@@ -1225,6 +1293,64 @@ module Aws::Redshift
1225
1293
 
1226
1294
  ImportTablesNotStarted.member = Shapes::ShapeRef.new(shape: String)
1227
1295
 
1296
+ InProgressTableRestoreQuotaExceededFault.struct_class = Types::InProgressTableRestoreQuotaExceededFault
1297
+
1298
+ IncompatibleOrderableOptions.struct_class = Types::IncompatibleOrderableOptions
1299
+
1300
+ InsufficientClusterCapacityFault.struct_class = Types::InsufficientClusterCapacityFault
1301
+
1302
+ InsufficientS3BucketPolicyFault.struct_class = Types::InsufficientS3BucketPolicyFault
1303
+
1304
+ InvalidClusterParameterGroupStateFault.struct_class = Types::InvalidClusterParameterGroupStateFault
1305
+
1306
+ InvalidClusterSecurityGroupStateFault.struct_class = Types::InvalidClusterSecurityGroupStateFault
1307
+
1308
+ InvalidClusterSnapshotScheduleStateFault.struct_class = Types::InvalidClusterSnapshotScheduleStateFault
1309
+
1310
+ InvalidClusterSnapshotStateFault.struct_class = Types::InvalidClusterSnapshotStateFault
1311
+
1312
+ InvalidClusterStateFault.struct_class = Types::InvalidClusterStateFault
1313
+
1314
+ InvalidClusterSubnetGroupStateFault.struct_class = Types::InvalidClusterSubnetGroupStateFault
1315
+
1316
+ InvalidClusterSubnetStateFault.struct_class = Types::InvalidClusterSubnetStateFault
1317
+
1318
+ InvalidClusterTrackFault.struct_class = Types::InvalidClusterTrackFault
1319
+
1320
+ InvalidElasticIpFault.struct_class = Types::InvalidElasticIpFault
1321
+
1322
+ InvalidHsmClientCertificateStateFault.struct_class = Types::InvalidHsmClientCertificateStateFault
1323
+
1324
+ InvalidHsmConfigurationStateFault.struct_class = Types::InvalidHsmConfigurationStateFault
1325
+
1326
+ InvalidReservedNodeStateFault.struct_class = Types::InvalidReservedNodeStateFault
1327
+
1328
+ InvalidRestoreFault.struct_class = Types::InvalidRestoreFault
1329
+
1330
+ InvalidRetentionPeriodFault.struct_class = Types::InvalidRetentionPeriodFault
1331
+
1332
+ InvalidS3BucketNameFault.struct_class = Types::InvalidS3BucketNameFault
1333
+
1334
+ InvalidS3KeyPrefixFault.struct_class = Types::InvalidS3KeyPrefixFault
1335
+
1336
+ InvalidScheduleFault.struct_class = Types::InvalidScheduleFault
1337
+
1338
+ InvalidScheduledActionFault.struct_class = Types::InvalidScheduledActionFault
1339
+
1340
+ InvalidSnapshotCopyGrantStateFault.struct_class = Types::InvalidSnapshotCopyGrantStateFault
1341
+
1342
+ InvalidSubnet.struct_class = Types::InvalidSubnet
1343
+
1344
+ InvalidSubscriptionStateFault.struct_class = Types::InvalidSubscriptionStateFault
1345
+
1346
+ InvalidTableRestoreArgumentFault.struct_class = Types::InvalidTableRestoreArgumentFault
1347
+
1348
+ InvalidTagFault.struct_class = Types::InvalidTagFault
1349
+
1350
+ InvalidVPCNetworkStateFault.struct_class = Types::InvalidVPCNetworkStateFault
1351
+
1352
+ LimitExceededFault.struct_class = Types::LimitExceededFault
1353
+
1228
1354
  LoggingStatus.add_member(:logging_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "LoggingEnabled"))
1229
1355
  LoggingStatus.add_member(:bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "BucketName"))
1230
1356
  LoggingStatus.add_member(:s3_key_prefix, Shapes::ShapeRef.new(shape: String, location_name: "S3KeyPrefix"))
@@ -1369,6 +1495,10 @@ module Aws::Redshift
1369
1495
  NodeConfigurationOptionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
1370
1496
  NodeConfigurationOptionsMessage.struct_class = Types::NodeConfigurationOptionsMessage
1371
1497
 
1498
+ NumberOfNodesPerClusterLimitExceededFault.struct_class = Types::NumberOfNodesPerClusterLimitExceededFault
1499
+
1500
+ NumberOfNodesQuotaExceededFault.struct_class = Types::NumberOfNodesQuotaExceededFault
1501
+
1372
1502
  OrderableClusterOption.add_member(:cluster_version, Shapes::ShapeRef.new(shape: String, location_name: "ClusterVersion"))
1373
1503
  OrderableClusterOption.add_member(:cluster_type, Shapes::ShapeRef.new(shape: String, location_name: "ClusterType"))
1374
1504
  OrderableClusterOption.add_member(:node_type, Shapes::ShapeRef.new(shape: String, location_name: "NodeType"))
@@ -1445,8 +1575,14 @@ module Aws::Redshift
1445
1575
  ReservedNode.add_member(:reserved_node_offering_type, Shapes::ShapeRef.new(shape: ReservedNodeOfferingType, location_name: "ReservedNodeOfferingType"))
1446
1576
  ReservedNode.struct_class = Types::ReservedNode
1447
1577
 
1578
+ ReservedNodeAlreadyExistsFault.struct_class = Types::ReservedNodeAlreadyExistsFault
1579
+
1580
+ ReservedNodeAlreadyMigratedFault.struct_class = Types::ReservedNodeAlreadyMigratedFault
1581
+
1448
1582
  ReservedNodeList.member = Shapes::ShapeRef.new(shape: ReservedNode, location_name: "ReservedNode")
1449
1583
 
1584
+ ReservedNodeNotFoundFault.struct_class = Types::ReservedNodeNotFoundFault
1585
+
1450
1586
  ReservedNodeOffering.add_member(:reserved_node_offering_id, Shapes::ShapeRef.new(shape: String, location_name: "ReservedNodeOfferingId"))
1451
1587
  ReservedNodeOffering.add_member(:node_type, Shapes::ShapeRef.new(shape: String, location_name: "NodeType"))
1452
1588
  ReservedNodeOffering.add_member(:duration, Shapes::ShapeRef.new(shape: Integer, location_name: "Duration"))
@@ -1460,10 +1596,14 @@ module Aws::Redshift
1460
1596
 
1461
1597
  ReservedNodeOfferingList.member = Shapes::ShapeRef.new(shape: ReservedNodeOffering, location_name: "ReservedNodeOffering")
1462
1598
 
1599
+ ReservedNodeOfferingNotFoundFault.struct_class = Types::ReservedNodeOfferingNotFoundFault
1600
+
1463
1601
  ReservedNodeOfferingsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
1464
1602
  ReservedNodeOfferingsMessage.add_member(:reserved_node_offerings, Shapes::ShapeRef.new(shape: ReservedNodeOfferingList, location_name: "ReservedNodeOfferings"))
1465
1603
  ReservedNodeOfferingsMessage.struct_class = Types::ReservedNodeOfferingsMessage
1466
1604
 
1605
+ ReservedNodeQuotaExceededFault.struct_class = Types::ReservedNodeQuotaExceededFault
1606
+
1467
1607
  ReservedNodesMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
1468
1608
  ReservedNodesMessage.add_member(:reserved_nodes, Shapes::ShapeRef.new(shape: ReservedNodeList, location_name: "ReservedNodes"))
1469
1609
  ReservedNodesMessage.struct_class = Types::ReservedNodesMessage
@@ -1487,6 +1627,8 @@ module Aws::Redshift
1487
1627
  ResizeInfo.add_member(:allow_cancel_resize, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowCancelResize"))
1488
1628
  ResizeInfo.struct_class = Types::ResizeInfo
1489
1629
 
1630
+ ResizeNotFoundFault.struct_class = Types::ResizeNotFoundFault
1631
+
1490
1632
  ResizeProgressMessage.add_member(:target_node_type, Shapes::ShapeRef.new(shape: String, location_name: "TargetNodeType"))
1491
1633
  ResizeProgressMessage.add_member(:target_number_of_nodes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "TargetNumberOfNodes"))
1492
1634
  ResizeProgressMessage.add_member(:target_cluster_type, Shapes::ShapeRef.new(shape: String, location_name: "TargetClusterType"))
@@ -1505,6 +1647,8 @@ module Aws::Redshift
1505
1647
  ResizeProgressMessage.add_member(:data_transfer_progress_percent, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "DataTransferProgressPercent"))
1506
1648
  ResizeProgressMessage.struct_class = Types::ResizeProgressMessage
1507
1649
 
1650
+ ResourceNotFoundFault.struct_class = Types::ResourceNotFoundFault
1651
+
1508
1652
  RestorableNodeTypeList.member = Shapes::ShapeRef.new(shape: String, location_name: "NodeType")
1509
1653
 
1510
1654
  RestoreFromClusterSnapshotMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
@@ -1589,8 +1733,16 @@ module Aws::Redshift
1589
1733
  RotateEncryptionKeyResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
1590
1734
  RotateEncryptionKeyResult.struct_class = Types::RotateEncryptionKeyResult
1591
1735
 
1736
+ SNSInvalidTopicFault.struct_class = Types::SNSInvalidTopicFault
1737
+
1738
+ SNSNoAuthorizationFault.struct_class = Types::SNSNoAuthorizationFault
1739
+
1740
+ SNSTopicArnNotFoundFault.struct_class = Types::SNSTopicArnNotFoundFault
1741
+
1592
1742
  ScheduleDefinitionList.member = Shapes::ShapeRef.new(shape: String, location_name: "ScheduleDefinition")
1593
1743
 
1744
+ ScheduleDefinitionTypeUnsupportedFault.struct_class = Types::ScheduleDefinitionTypeUnsupportedFault
1745
+
1594
1746
  ScheduledAction.add_member(:scheduled_action_name, Shapes::ShapeRef.new(shape: String, location_name: "ScheduledActionName"))
1595
1747
  ScheduledAction.add_member(:target_action, Shapes::ShapeRef.new(shape: ScheduledActionType, location_name: "TargetAction"))
1596
1748
  ScheduledAction.add_member(:schedule, Shapes::ShapeRef.new(shape: String, location_name: "Schedule"))
@@ -1602,6 +1754,8 @@ module Aws::Redshift
1602
1754
  ScheduledAction.add_member(:end_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "EndTime"))
1603
1755
  ScheduledAction.struct_class = Types::ScheduledAction
1604
1756
 
1757
+ ScheduledActionAlreadyExistsFault.struct_class = Types::ScheduledActionAlreadyExistsFault
1758
+
1605
1759
  ScheduledActionFilter.add_member(:name, Shapes::ShapeRef.new(shape: ScheduledActionFilterName, required: true, location_name: "Name"))
1606
1760
  ScheduledActionFilter.add_member(:values, Shapes::ShapeRef.new(shape: ValueStringList, required: true, location_name: "Values"))
1607
1761
  ScheduledActionFilter.struct_class = Types::ScheduledActionFilter
@@ -1610,11 +1764,17 @@ module Aws::Redshift
1610
1764
 
1611
1765
  ScheduledActionList.member = Shapes::ShapeRef.new(shape: ScheduledAction, location_name: "ScheduledAction")
1612
1766
 
1767
+ ScheduledActionNotFoundFault.struct_class = Types::ScheduledActionNotFoundFault
1768
+
1769
+ ScheduledActionQuotaExceededFault.struct_class = Types::ScheduledActionQuotaExceededFault
1770
+
1613
1771
  ScheduledActionTimeList.member = Shapes::ShapeRef.new(shape: TStamp, location_name: "ScheduledActionTime")
1614
1772
 
1615
1773
  ScheduledActionType.add_member(:resize_cluster, Shapes::ShapeRef.new(shape: ResizeClusterMessage, location_name: "ResizeCluster"))
1616
1774
  ScheduledActionType.struct_class = Types::ScheduledActionType
1617
1775
 
1776
+ ScheduledActionTypeUnsupportedFault.struct_class = Types::ScheduledActionTypeUnsupportedFault
1777
+
1618
1778
  ScheduledActionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
1619
1779
  ScheduledActionsMessage.add_member(:scheduled_actions, Shapes::ShapeRef.new(shape: ScheduledActionList, location_name: "ScheduledActions"))
1620
1780
  ScheduledActionsMessage.struct_class = Types::ScheduledActionsMessage
@@ -1656,17 +1816,29 @@ module Aws::Redshift
1656
1816
  Snapshot.add_member(:snapshot_retention_start_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "SnapshotRetentionStartTime"))
1657
1817
  Snapshot.struct_class = Types::Snapshot
1658
1818
 
1819
+ SnapshotCopyAlreadyDisabledFault.struct_class = Types::SnapshotCopyAlreadyDisabledFault
1820
+
1821
+ SnapshotCopyAlreadyEnabledFault.struct_class = Types::SnapshotCopyAlreadyEnabledFault
1822
+
1823
+ SnapshotCopyDisabledFault.struct_class = Types::SnapshotCopyDisabledFault
1824
+
1659
1825
  SnapshotCopyGrant.add_member(:snapshot_copy_grant_name, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotCopyGrantName"))
1660
1826
  SnapshotCopyGrant.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
1661
1827
  SnapshotCopyGrant.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1662
1828
  SnapshotCopyGrant.struct_class = Types::SnapshotCopyGrant
1663
1829
 
1830
+ SnapshotCopyGrantAlreadyExistsFault.struct_class = Types::SnapshotCopyGrantAlreadyExistsFault
1831
+
1664
1832
  SnapshotCopyGrantList.member = Shapes::ShapeRef.new(shape: SnapshotCopyGrant, location_name: "SnapshotCopyGrant")
1665
1833
 
1666
1834
  SnapshotCopyGrantMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
1667
1835
  SnapshotCopyGrantMessage.add_member(:snapshot_copy_grants, Shapes::ShapeRef.new(shape: SnapshotCopyGrantList, location_name: "SnapshotCopyGrants"))
1668
1836
  SnapshotCopyGrantMessage.struct_class = Types::SnapshotCopyGrantMessage
1669
1837
 
1838
+ SnapshotCopyGrantNotFoundFault.struct_class = Types::SnapshotCopyGrantNotFoundFault
1839
+
1840
+ SnapshotCopyGrantQuotaExceededFault.struct_class = Types::SnapshotCopyGrantQuotaExceededFault
1841
+
1670
1842
  SnapshotErrorMessage.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotIdentifier"))
1671
1843
  SnapshotErrorMessage.add_member(:snapshot_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotClusterIdentifier"))
1672
1844
  SnapshotErrorMessage.add_member(:failure_code, Shapes::ShapeRef.new(shape: String, location_name: "FailureCode"))
@@ -1690,8 +1862,16 @@ module Aws::Redshift
1690
1862
  SnapshotSchedule.add_member(:associated_clusters, Shapes::ShapeRef.new(shape: AssociatedClusterList, location_name: "AssociatedClusters"))
1691
1863
  SnapshotSchedule.struct_class = Types::SnapshotSchedule
1692
1864
 
1865
+ SnapshotScheduleAlreadyExistsFault.struct_class = Types::SnapshotScheduleAlreadyExistsFault
1866
+
1693
1867
  SnapshotScheduleList.member = Shapes::ShapeRef.new(shape: SnapshotSchedule, location_name: "SnapshotSchedule")
1694
1868
 
1869
+ SnapshotScheduleNotFoundFault.struct_class = Types::SnapshotScheduleNotFoundFault
1870
+
1871
+ SnapshotScheduleQuotaExceededFault.struct_class = Types::SnapshotScheduleQuotaExceededFault
1872
+
1873
+ SnapshotScheduleUpdateInProgressFault.struct_class = Types::SnapshotScheduleUpdateInProgressFault
1874
+
1695
1875
  SnapshotSortingEntity.add_member(:attribute, Shapes::ShapeRef.new(shape: SnapshotAttributeToSortBy, required: true, location_name: "Attribute"))
1696
1876
  SnapshotSortingEntity.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortByOrder, location_name: "SortOrder"))
1697
1877
  SnapshotSortingEntity.struct_class = Types::SnapshotSortingEntity
@@ -1700,15 +1880,29 @@ module Aws::Redshift
1700
1880
 
1701
1881
  SourceIdsList.member = Shapes::ShapeRef.new(shape: String, location_name: "SourceId")
1702
1882
 
1883
+ SourceNotFoundFault.struct_class = Types::SourceNotFoundFault
1884
+
1703
1885
  Subnet.add_member(:subnet_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier"))
1704
1886
  Subnet.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "SubnetAvailabilityZone"))
1705
1887
  Subnet.add_member(:subnet_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetStatus"))
1706
1888
  Subnet.struct_class = Types::Subnet
1707
1889
 
1890
+ SubnetAlreadyInUse.struct_class = Types::SubnetAlreadyInUse
1891
+
1708
1892
  SubnetIdentifierList.member = Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier")
1709
1893
 
1710
1894
  SubnetList.member = Shapes::ShapeRef.new(shape: Subnet, location_name: "Subnet")
1711
1895
 
1896
+ SubscriptionAlreadyExistFault.struct_class = Types::SubscriptionAlreadyExistFault
1897
+
1898
+ SubscriptionCategoryNotFoundFault.struct_class = Types::SubscriptionCategoryNotFoundFault
1899
+
1900
+ SubscriptionEventIdNotFoundFault.struct_class = Types::SubscriptionEventIdNotFoundFault
1901
+
1902
+ SubscriptionNotFoundFault.struct_class = Types::SubscriptionNotFoundFault
1903
+
1904
+ SubscriptionSeverityNotFoundFault.struct_class = Types::SubscriptionSeverityNotFoundFault
1905
+
1712
1906
  SupportedOperation.add_member(:operation_name, Shapes::ShapeRef.new(shape: String, location_name: "OperationName"))
1713
1907
  SupportedOperation.struct_class = Types::SupportedOperation
1714
1908
 
@@ -1719,6 +1913,10 @@ module Aws::Redshift
1719
1913
 
1720
1914
  SupportedPlatformsList.member = Shapes::ShapeRef.new(shape: SupportedPlatform, location_name: "SupportedPlatform")
1721
1915
 
1916
+ TableLimitExceededFault.struct_class = Types::TableLimitExceededFault
1917
+
1918
+ TableRestoreNotFoundFault.struct_class = Types::TableRestoreNotFoundFault
1919
+
1722
1920
  TableRestoreStatus.add_member(:table_restore_request_id, Shapes::ShapeRef.new(shape: String, location_name: "TableRestoreRequestId"))
1723
1921
  TableRestoreStatus.add_member(:status, Shapes::ShapeRef.new(shape: TableRestoreStatusType, location_name: "Status"))
1724
1922
  TableRestoreStatus.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
@@ -1747,6 +1945,8 @@ module Aws::Redshift
1747
1945
 
1748
1946
  TagKeyList.member = Shapes::ShapeRef.new(shape: String, location_name: "TagKey")
1749
1947
 
1948
+ TagLimitExceededFault.struct_class = Types::TagLimitExceededFault
1949
+
1750
1950
  TagList.member = Shapes::ShapeRef.new(shape: Tag, location_name: "Tag")
1751
1951
 
1752
1952
  TagValueList.member = Shapes::ShapeRef.new(shape: String, location_name: "TagValue")
@@ -1768,6 +1968,14 @@ module Aws::Redshift
1768
1968
  TrackListMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
1769
1969
  TrackListMessage.struct_class = Types::TrackListMessage
1770
1970
 
1971
+ UnauthorizedOperation.struct_class = Types::UnauthorizedOperation
1972
+
1973
+ UnknownSnapshotCopyRegionFault.struct_class = Types::UnknownSnapshotCopyRegionFault
1974
+
1975
+ UnsupportedOperationFault.struct_class = Types::UnsupportedOperationFault
1976
+
1977
+ UnsupportedOptionFault.struct_class = Types::UnsupportedOptionFault
1978
+
1771
1979
  UpdateTarget.add_member(:maintenance_track_name, Shapes::ShapeRef.new(shape: String, location_name: "MaintenanceTrackName"))
1772
1980
  UpdateTarget.add_member(:database_version, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseVersion"))
1773
1981
  UpdateTarget.add_member(:supported_operations, Shapes::ShapeRef.new(shape: SupportedOperationList, location_name: "SupportedOperations"))