aws-sdk-redshift 1.43.0 → 1.48.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-redshift.rb +4 -2
- data/lib/aws-sdk-redshift/client.rb +35 -13
- data/lib/aws-sdk-redshift/client_api.rb +2 -0
- data/lib/aws-sdk-redshift/customizations.rb +1 -0
- data/lib/aws-sdk-redshift/errors.rb +2 -0
- data/lib/aws-sdk-redshift/resource.rb +2 -0
- data/lib/aws-sdk-redshift/types.rb +238 -7
- data/lib/aws-sdk-redshift/waiters.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8e145adee90149cac6d16118bad8dde872c99a6e4729fc6153544dc0dcedcd1
|
4
|
+
data.tar.gz: 8912be37834411a7b5f7cade990867c9297576d7715d8f023f1a38452bde2eb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 406409280262a81564caabb3b77b77b5a2f08a01b0a5a5d3be2b111f0bb8c34c7ff2b6b8e391234a12bea36f14809c162de7f42586e74f500d6cf6256b79ed56
|
7
|
+
data.tar.gz: 9efdd9ad4f09592deb82b58a5a6047a3ddc73e90cd5106be869c54423a1b7e6df564dde1302d4609ff3746721ac924a9712bca47c52ea78d7d2e69ea33213782
|
data/lib/aws-sdk-redshift.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -43,9 +45,9 @@ require_relative 'aws-sdk-redshift/customizations'
|
|
43
45
|
#
|
44
46
|
# See {Errors} for more information.
|
45
47
|
#
|
46
|
-
#
|
48
|
+
# @!group service
|
47
49
|
module Aws::Redshift
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.48.0'
|
50
52
|
|
51
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::Redshift
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::Redshift
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::Redshift
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::Redshift
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -6339,9 +6358,7 @@ module Aws::Redshift
|
|
6339
6358
|
# Indicates whether the cluster is encrypted. If the value is encrypted
|
6340
6359
|
# (true) and you provide a value for the `KmsKeyId` parameter, we
|
6341
6360
|
# encrypt the cluster with the provided `KmsKeyId`. If you don't
|
6342
|
-
# provide a `KmsKeyId`, we encrypt with the default key.
|
6343
|
-
# region we use legacy encryption if you specify that the cluster is
|
6344
|
-
# encrypted.
|
6361
|
+
# provide a `KmsKeyId`, we encrypt with the default key.
|
6345
6362
|
#
|
6346
6363
|
# If the value is not encrypted (false), then the cluster is decrypted.
|
6347
6364
|
#
|
@@ -7979,6 +7996,10 @@ module Aws::Redshift
|
|
7979
7996
|
#
|
7980
7997
|
# * You can only resize clusters of the following types:
|
7981
7998
|
#
|
7999
|
+
# * dc1.large (if your cluster is in a VPC)
|
8000
|
+
#
|
8001
|
+
# * dc1.8xlarge (if your cluster is in a VPC)
|
8002
|
+
#
|
7982
8003
|
# * dc2.large
|
7983
8004
|
#
|
7984
8005
|
# * dc2.8xlarge
|
@@ -8005,7 +8026,8 @@ module Aws::Redshift
|
|
8005
8026
|
# cluster's current node type is used.
|
8006
8027
|
#
|
8007
8028
|
# @option params [Integer] :number_of_nodes
|
8008
|
-
# The new number of nodes for the cluster.
|
8029
|
+
# The new number of nodes for the cluster. If not specified, the
|
8030
|
+
# cluster's current number of nodes is used.
|
8009
8031
|
#
|
8010
8032
|
# @option params [Boolean] :classic
|
8011
8033
|
# A boolean value indicating whether the resize operation is using the
|
@@ -9022,7 +9044,7 @@ module Aws::Redshift
|
|
9022
9044
|
params: params,
|
9023
9045
|
config: config)
|
9024
9046
|
context[:gem_name] = 'aws-sdk-redshift'
|
9025
|
-
context[:gem_version] = '1.
|
9047
|
+
context[:gem_version] = '1.48.0'
|
9026
9048
|
Seahorse::Client::Request.new(handlers, context)
|
9027
9049
|
end
|
9028
9050
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -32,6 +34,7 @@ module Aws::Redshift
|
|
32
34
|
class AcceptReservedNodeExchangeInputMessage < Struct.new(
|
33
35
|
:reserved_node_id,
|
34
36
|
:target_reserved_node_offering_id)
|
37
|
+
SENSITIVE = []
|
35
38
|
include Aws::Structure
|
36
39
|
end
|
37
40
|
|
@@ -42,6 +45,7 @@ module Aws::Redshift
|
|
42
45
|
#
|
43
46
|
class AcceptReservedNodeExchangeOutputMessage < Struct.new(
|
44
47
|
:exchanged_reserved_node)
|
48
|
+
SENSITIVE = []
|
45
49
|
include Aws::Structure
|
46
50
|
end
|
47
51
|
|
@@ -67,6 +71,7 @@ module Aws::Redshift
|
|
67
71
|
class AccountAttribute < Struct.new(
|
68
72
|
:attribute_name,
|
69
73
|
:attribute_values)
|
74
|
+
SENSITIVE = []
|
70
75
|
include Aws::Structure
|
71
76
|
end
|
72
77
|
|
@@ -78,6 +83,7 @@ module Aws::Redshift
|
|
78
83
|
#
|
79
84
|
class AccountAttributeList < Struct.new(
|
80
85
|
:account_attributes)
|
86
|
+
SENSITIVE = []
|
81
87
|
include Aws::Structure
|
82
88
|
end
|
83
89
|
|
@@ -99,6 +105,7 @@ module Aws::Redshift
|
|
99
105
|
class AccountWithRestoreAccess < Struct.new(
|
100
106
|
:account_id,
|
101
107
|
:account_alias)
|
108
|
+
SENSITIVE = []
|
102
109
|
include Aws::Structure
|
103
110
|
end
|
104
111
|
|
@@ -112,6 +119,7 @@ module Aws::Redshift
|
|
112
119
|
#
|
113
120
|
class AttributeValueTarget < Struct.new(
|
114
121
|
:attribute_value)
|
122
|
+
SENSITIVE = []
|
115
123
|
include Aws::Structure
|
116
124
|
end
|
117
125
|
|
@@ -174,6 +182,7 @@ module Aws::Redshift
|
|
174
182
|
:cidrip,
|
175
183
|
:ec2_security_group_name,
|
176
184
|
:ec2_security_group_owner_id)
|
185
|
+
SENSITIVE = []
|
177
186
|
include Aws::Structure
|
178
187
|
end
|
179
188
|
|
@@ -185,6 +194,7 @@ module Aws::Redshift
|
|
185
194
|
#
|
186
195
|
class AuthorizeClusterSecurityGroupIngressResult < Struct.new(
|
187
196
|
:cluster_security_group)
|
197
|
+
SENSITIVE = []
|
188
198
|
include Aws::Structure
|
189
199
|
end
|
190
200
|
|
@@ -222,6 +232,7 @@ module Aws::Redshift
|
|
222
232
|
:snapshot_identifier,
|
223
233
|
:snapshot_cluster_identifier,
|
224
234
|
:account_with_restore_access)
|
235
|
+
SENSITIVE = []
|
225
236
|
include Aws::Structure
|
226
237
|
end
|
227
238
|
|
@@ -233,6 +244,7 @@ module Aws::Redshift
|
|
233
244
|
#
|
234
245
|
class AuthorizeSnapshotAccessResult < Struct.new(
|
235
246
|
:snapshot)
|
247
|
+
SENSITIVE = []
|
236
248
|
include Aws::Structure
|
237
249
|
end
|
238
250
|
|
@@ -250,6 +262,7 @@ module Aws::Redshift
|
|
250
262
|
class AvailabilityZone < Struct.new(
|
251
263
|
:name,
|
252
264
|
:supported_platforms)
|
265
|
+
SENSITIVE = []
|
253
266
|
include Aws::Structure
|
254
267
|
end
|
255
268
|
|
@@ -273,6 +286,7 @@ module Aws::Redshift
|
|
273
286
|
#
|
274
287
|
class BatchDeleteClusterSnapshotsRequest < Struct.new(
|
275
288
|
:identifiers)
|
289
|
+
SENSITIVE = []
|
276
290
|
include Aws::Structure
|
277
291
|
end
|
278
292
|
|
@@ -289,6 +303,7 @@ module Aws::Redshift
|
|
289
303
|
class BatchDeleteClusterSnapshotsResult < Struct.new(
|
290
304
|
:resources,
|
291
305
|
:errors)
|
306
|
+
SENSITIVE = []
|
292
307
|
include Aws::Structure
|
293
308
|
end
|
294
309
|
|
@@ -342,6 +357,7 @@ module Aws::Redshift
|
|
342
357
|
:snapshot_identifier_list,
|
343
358
|
:manual_snapshot_retention_period,
|
344
359
|
:force)
|
360
|
+
SENSITIVE = []
|
345
361
|
include Aws::Structure
|
346
362
|
end
|
347
363
|
|
@@ -358,6 +374,7 @@ module Aws::Redshift
|
|
358
374
|
class BatchModifyClusterSnapshotsOutputMessage < Struct.new(
|
359
375
|
:resources,
|
360
376
|
:errors)
|
377
|
+
SENSITIVE = []
|
361
378
|
include Aws::Structure
|
362
379
|
end
|
363
380
|
|
@@ -383,6 +400,7 @@ module Aws::Redshift
|
|
383
400
|
#
|
384
401
|
class CancelResizeMessage < Struct.new(
|
385
402
|
:cluster_identifier)
|
403
|
+
SENSITIVE = []
|
386
404
|
include Aws::Structure
|
387
405
|
end
|
388
406
|
|
@@ -736,6 +754,7 @@ module Aws::Redshift
|
|
736
754
|
:expected_next_snapshot_schedule_time_status,
|
737
755
|
:next_maintenance_window_start_time,
|
738
756
|
:resize_info)
|
757
|
+
SENSITIVE = []
|
739
758
|
include Aws::Structure
|
740
759
|
end
|
741
760
|
|
@@ -756,6 +775,7 @@ module Aws::Redshift
|
|
756
775
|
class ClusterAssociatedToSchedule < Struct.new(
|
757
776
|
:cluster_identifier,
|
758
777
|
:schedule_association_state)
|
778
|
+
SENSITIVE = []
|
759
779
|
include Aws::Structure
|
760
780
|
end
|
761
781
|
|
@@ -787,6 +807,7 @@ module Aws::Redshift
|
|
787
807
|
:db_user,
|
788
808
|
:db_password,
|
789
809
|
:expiration)
|
810
|
+
SENSITIVE = [:db_password]
|
790
811
|
include Aws::Structure
|
791
812
|
end
|
792
813
|
|
@@ -816,6 +837,7 @@ module Aws::Redshift
|
|
816
837
|
:current_database_revision,
|
817
838
|
:database_revision_release_date,
|
818
839
|
:revision_targets)
|
840
|
+
SENSITIVE = []
|
819
841
|
include Aws::Structure
|
820
842
|
end
|
821
843
|
|
@@ -836,6 +858,7 @@ module Aws::Redshift
|
|
836
858
|
class ClusterDbRevisionsMessage < Struct.new(
|
837
859
|
:marker,
|
838
860
|
:cluster_db_revisions)
|
861
|
+
SENSITIVE = []
|
839
862
|
include Aws::Structure
|
840
863
|
end
|
841
864
|
|
@@ -867,6 +890,7 @@ module Aws::Redshift
|
|
867
890
|
class ClusterIamRole < Struct.new(
|
868
891
|
:iam_role_arn,
|
869
892
|
:apply_status)
|
893
|
+
SENSITIVE = []
|
870
894
|
include Aws::Structure
|
871
895
|
end
|
872
896
|
|
@@ -890,6 +914,7 @@ module Aws::Redshift
|
|
890
914
|
:node_role,
|
891
915
|
:private_ip_address,
|
892
916
|
:public_ip_address)
|
917
|
+
SENSITIVE = []
|
893
918
|
include Aws::Structure
|
894
919
|
end
|
895
920
|
|
@@ -932,6 +957,7 @@ module Aws::Redshift
|
|
932
957
|
:parameter_group_family,
|
933
958
|
:description,
|
934
959
|
:tags)
|
960
|
+
SENSITIVE = []
|
935
961
|
include Aws::Structure
|
936
962
|
end
|
937
963
|
|
@@ -962,6 +988,7 @@ module Aws::Redshift
|
|
962
988
|
class ClusterParameterGroupDetails < Struct.new(
|
963
989
|
:parameters,
|
964
990
|
:marker)
|
991
|
+
SENSITIVE = []
|
965
992
|
include Aws::Structure
|
966
993
|
end
|
967
994
|
|
@@ -980,6 +1007,7 @@ module Aws::Redshift
|
|
980
1007
|
class ClusterParameterGroupNameMessage < Struct.new(
|
981
1008
|
:parameter_group_name,
|
982
1009
|
:parameter_group_status)
|
1010
|
+
SENSITIVE = []
|
983
1011
|
include Aws::Structure
|
984
1012
|
end
|
985
1013
|
|
@@ -1031,6 +1059,7 @@ module Aws::Redshift
|
|
1031
1059
|
:parameter_group_name,
|
1032
1060
|
:parameter_apply_status,
|
1033
1061
|
:cluster_parameter_status_list)
|
1062
|
+
SENSITIVE = []
|
1034
1063
|
include Aws::Structure
|
1035
1064
|
end
|
1036
1065
|
|
@@ -1055,6 +1084,7 @@ module Aws::Redshift
|
|
1055
1084
|
class ClusterParameterGroupsMessage < Struct.new(
|
1056
1085
|
:marker,
|
1057
1086
|
:parameter_groups)
|
1087
|
+
SENSITIVE = []
|
1058
1088
|
include Aws::Structure
|
1059
1089
|
end
|
1060
1090
|
|
@@ -1102,6 +1132,7 @@ module Aws::Redshift
|
|
1102
1132
|
:parameter_name,
|
1103
1133
|
:parameter_apply_status,
|
1104
1134
|
:parameter_apply_error_description)
|
1135
|
+
SENSITIVE = []
|
1105
1136
|
include Aws::Structure
|
1106
1137
|
end
|
1107
1138
|
|
@@ -1151,6 +1182,7 @@ module Aws::Redshift
|
|
1151
1182
|
:ec2_security_groups,
|
1152
1183
|
:ip_ranges,
|
1153
1184
|
:tags)
|
1185
|
+
SENSITIVE = []
|
1154
1186
|
include Aws::Structure
|
1155
1187
|
end
|
1156
1188
|
|
@@ -1175,6 +1207,7 @@ module Aws::Redshift
|
|
1175
1207
|
class ClusterSecurityGroupMembership < Struct.new(
|
1176
1208
|
:cluster_security_group_name,
|
1177
1209
|
:status)
|
1210
|
+
SENSITIVE = []
|
1178
1211
|
include Aws::Structure
|
1179
1212
|
end
|
1180
1213
|
|
@@ -1196,6 +1229,7 @@ module Aws::Redshift
|
|
1196
1229
|
class ClusterSecurityGroupMessage < Struct.new(
|
1197
1230
|
:marker,
|
1198
1231
|
:cluster_security_groups)
|
1232
|
+
SENSITIVE = []
|
1199
1233
|
include Aws::Structure
|
1200
1234
|
end
|
1201
1235
|
|
@@ -1258,6 +1292,7 @@ module Aws::Redshift
|
|
1258
1292
|
:retention_period,
|
1259
1293
|
:manual_snapshot_retention_period,
|
1260
1294
|
:snapshot_copy_grant_name)
|
1295
|
+
SENSITIVE = []
|
1261
1296
|
include Aws::Structure
|
1262
1297
|
end
|
1263
1298
|
|
@@ -1311,6 +1346,7 @@ module Aws::Redshift
|
|
1311
1346
|
:subnet_group_status,
|
1312
1347
|
:subnets,
|
1313
1348
|
:tags)
|
1349
|
+
SENSITIVE = []
|
1314
1350
|
include Aws::Structure
|
1315
1351
|
end
|
1316
1352
|
|
@@ -1341,6 +1377,7 @@ module Aws::Redshift
|
|
1341
1377
|
class ClusterSubnetGroupMessage < Struct.new(
|
1342
1378
|
:marker,
|
1343
1379
|
:cluster_subnet_groups)
|
1380
|
+
SENSITIVE = []
|
1344
1381
|
include Aws::Structure
|
1345
1382
|
end
|
1346
1383
|
|
@@ -1398,6 +1435,7 @@ module Aws::Redshift
|
|
1398
1435
|
:cluster_version,
|
1399
1436
|
:cluster_parameter_group_family,
|
1400
1437
|
:description)
|
1438
|
+
SENSITIVE = []
|
1401
1439
|
include Aws::Structure
|
1402
1440
|
end
|
1403
1441
|
|
@@ -1421,6 +1459,7 @@ module Aws::Redshift
|
|
1421
1459
|
class ClusterVersionsMessage < Struct.new(
|
1422
1460
|
:marker,
|
1423
1461
|
:cluster_versions)
|
1462
|
+
SENSITIVE = []
|
1424
1463
|
include Aws::Structure
|
1425
1464
|
end
|
1426
1465
|
|
@@ -1445,6 +1484,7 @@ module Aws::Redshift
|
|
1445
1484
|
class ClustersMessage < Struct.new(
|
1446
1485
|
:marker,
|
1447
1486
|
:clusters)
|
1487
|
+
SENSITIVE = []
|
1448
1488
|
include Aws::Structure
|
1449
1489
|
end
|
1450
1490
|
|
@@ -1514,6 +1554,7 @@ module Aws::Redshift
|
|
1514
1554
|
:source_snapshot_cluster_identifier,
|
1515
1555
|
:target_snapshot_identifier,
|
1516
1556
|
:manual_snapshot_retention_period)
|
1557
|
+
SENSITIVE = []
|
1517
1558
|
include Aws::Structure
|
1518
1559
|
end
|
1519
1560
|
|
@@ -1525,6 +1566,7 @@ module Aws::Redshift
|
|
1525
1566
|
#
|
1526
1567
|
class CopyClusterSnapshotResult < Struct.new(
|
1527
1568
|
:snapshot)
|
1569
|
+
SENSITIVE = []
|
1528
1570
|
include Aws::Structure
|
1529
1571
|
end
|
1530
1572
|
|
@@ -1960,6 +2002,7 @@ module Aws::Redshift
|
|
1960
2002
|
:iam_roles,
|
1961
2003
|
:maintenance_track_name,
|
1962
2004
|
:snapshot_schedule_identifier)
|
2005
|
+
SENSITIVE = []
|
1963
2006
|
include Aws::Structure
|
1964
2007
|
end
|
1965
2008
|
|
@@ -2025,6 +2068,7 @@ module Aws::Redshift
|
|
2025
2068
|
:parameter_group_family,
|
2026
2069
|
:description,
|
2027
2070
|
:tags)
|
2071
|
+
SENSITIVE = []
|
2028
2072
|
include Aws::Structure
|
2029
2073
|
end
|
2030
2074
|
|
@@ -2036,6 +2080,7 @@ module Aws::Redshift
|
|
2036
2080
|
#
|
2037
2081
|
class CreateClusterParameterGroupResult < Struct.new(
|
2038
2082
|
:cluster_parameter_group)
|
2083
|
+
SENSITIVE = []
|
2039
2084
|
include Aws::Structure
|
2040
2085
|
end
|
2041
2086
|
|
@@ -2047,6 +2092,7 @@ module Aws::Redshift
|
|
2047
2092
|
#
|
2048
2093
|
class CreateClusterResult < Struct.new(
|
2049
2094
|
:cluster)
|
2095
|
+
SENSITIVE = []
|
2050
2096
|
include Aws::Structure
|
2051
2097
|
end
|
2052
2098
|
|
@@ -2094,6 +2140,7 @@ module Aws::Redshift
|
|
2094
2140
|
:cluster_security_group_name,
|
2095
2141
|
:description,
|
2096
2142
|
:tags)
|
2143
|
+
SENSITIVE = []
|
2097
2144
|
include Aws::Structure
|
2098
2145
|
end
|
2099
2146
|
|
@@ -2105,6 +2152,7 @@ module Aws::Redshift
|
|
2105
2152
|
#
|
2106
2153
|
class CreateClusterSecurityGroupResult < Struct.new(
|
2107
2154
|
:cluster_security_group)
|
2155
|
+
SENSITIVE = []
|
2108
2156
|
include Aws::Structure
|
2109
2157
|
end
|
2110
2158
|
|
@@ -2164,6 +2212,7 @@ module Aws::Redshift
|
|
2164
2212
|
:cluster_identifier,
|
2165
2213
|
:manual_snapshot_retention_period,
|
2166
2214
|
:tags)
|
2215
|
+
SENSITIVE = []
|
2167
2216
|
include Aws::Structure
|
2168
2217
|
end
|
2169
2218
|
|
@@ -2175,6 +2224,7 @@ module Aws::Redshift
|
|
2175
2224
|
#
|
2176
2225
|
class CreateClusterSnapshotResult < Struct.new(
|
2177
2226
|
:snapshot)
|
2227
|
+
SENSITIVE = []
|
2178
2228
|
include Aws::Structure
|
2179
2229
|
end
|
2180
2230
|
|
@@ -2229,6 +2279,7 @@ module Aws::Redshift
|
|
2229
2279
|
:description,
|
2230
2280
|
:subnet_ids,
|
2231
2281
|
:tags)
|
2282
|
+
SENSITIVE = []
|
2232
2283
|
include Aws::Structure
|
2233
2284
|
end
|
2234
2285
|
|
@@ -2240,6 +2291,7 @@ module Aws::Redshift
|
|
2240
2291
|
#
|
2241
2292
|
class CreateClusterSubnetGroupResult < Struct.new(
|
2242
2293
|
:cluster_subnet_group)
|
2294
|
+
SENSITIVE = []
|
2243
2295
|
include Aws::Structure
|
2244
2296
|
end
|
2245
2297
|
|
@@ -2341,6 +2393,7 @@ module Aws::Redshift
|
|
2341
2393
|
:severity,
|
2342
2394
|
:enabled,
|
2343
2395
|
:tags)
|
2396
|
+
SENSITIVE = []
|
2344
2397
|
include Aws::Structure
|
2345
2398
|
end
|
2346
2399
|
|
@@ -2352,6 +2405,7 @@ module Aws::Redshift
|
|
2352
2405
|
#
|
2353
2406
|
class CreateEventSubscriptionResult < Struct.new(
|
2354
2407
|
:event_subscription)
|
2408
|
+
SENSITIVE = []
|
2355
2409
|
include Aws::Structure
|
2356
2410
|
end
|
2357
2411
|
|
@@ -2383,6 +2437,7 @@ module Aws::Redshift
|
|
2383
2437
|
class CreateHsmClientCertificateMessage < Struct.new(
|
2384
2438
|
:hsm_client_certificate_identifier,
|
2385
2439
|
:tags)
|
2440
|
+
SENSITIVE = []
|
2386
2441
|
include Aws::Structure
|
2387
2442
|
end
|
2388
2443
|
|
@@ -2396,6 +2451,7 @@ module Aws::Redshift
|
|
2396
2451
|
#
|
2397
2452
|
class CreateHsmClientCertificateResult < Struct.new(
|
2398
2453
|
:hsm_client_certificate)
|
2454
|
+
SENSITIVE = []
|
2399
2455
|
include Aws::Structure
|
2400
2456
|
end
|
2401
2457
|
|
@@ -2459,6 +2515,7 @@ module Aws::Redshift
|
|
2459
2515
|
:hsm_partition_password,
|
2460
2516
|
:hsm_server_public_certificate,
|
2461
2517
|
:tags)
|
2518
|
+
SENSITIVE = []
|
2462
2519
|
include Aws::Structure
|
2463
2520
|
end
|
2464
2521
|
|
@@ -2473,6 +2530,7 @@ module Aws::Redshift
|
|
2473
2530
|
#
|
2474
2531
|
class CreateHsmConfigurationResult < Struct.new(
|
2475
2532
|
:hsm_configuration)
|
2533
|
+
SENSITIVE = []
|
2476
2534
|
include Aws::Structure
|
2477
2535
|
end
|
2478
2536
|
|
@@ -2559,6 +2617,7 @@ module Aws::Redshift
|
|
2559
2617
|
:start_time,
|
2560
2618
|
:end_time,
|
2561
2619
|
:enable)
|
2620
|
+
SENSITIVE = []
|
2562
2621
|
include Aws::Structure
|
2563
2622
|
end
|
2564
2623
|
|
@@ -2611,6 +2670,7 @@ module Aws::Redshift
|
|
2611
2670
|
:snapshot_copy_grant_name,
|
2612
2671
|
:kms_key_id,
|
2613
2672
|
:tags)
|
2673
|
+
SENSITIVE = []
|
2614
2674
|
include Aws::Structure
|
2615
2675
|
end
|
2616
2676
|
|
@@ -2632,6 +2692,7 @@ module Aws::Redshift
|
|
2632
2692
|
#
|
2633
2693
|
class CreateSnapshotCopyGrantResult < Struct.new(
|
2634
2694
|
:snapshot_copy_grant)
|
2695
|
+
SENSITIVE = []
|
2635
2696
|
include Aws::Structure
|
2636
2697
|
end
|
2637
2698
|
|
@@ -2686,6 +2747,7 @@ module Aws::Redshift
|
|
2686
2747
|
:tags,
|
2687
2748
|
:dry_run,
|
2688
2749
|
:next_invocations)
|
2750
|
+
SENSITIVE = []
|
2689
2751
|
include Aws::Structure
|
2690
2752
|
end
|
2691
2753
|
|
@@ -2725,6 +2787,7 @@ module Aws::Redshift
|
|
2725
2787
|
class CreateTagsMessage < Struct.new(
|
2726
2788
|
:resource_name,
|
2727
2789
|
:tags)
|
2790
|
+
SENSITIVE = []
|
2728
2791
|
include Aws::Structure
|
2729
2792
|
end
|
2730
2793
|
|
@@ -2792,6 +2855,7 @@ module Aws::Redshift
|
|
2792
2855
|
:period,
|
2793
2856
|
:breach_action,
|
2794
2857
|
:tags)
|
2858
|
+
SENSITIVE = []
|
2795
2859
|
include Aws::Structure
|
2796
2860
|
end
|
2797
2861
|
|
@@ -2808,6 +2872,7 @@ module Aws::Redshift
|
|
2808
2872
|
class CustomerStorageMessage < Struct.new(
|
2809
2873
|
:total_backup_size_in_mega_bytes,
|
2810
2874
|
:total_provisioned_storage_in_mega_bytes)
|
2875
|
+
SENSITIVE = []
|
2811
2876
|
include Aws::Structure
|
2812
2877
|
end
|
2813
2878
|
|
@@ -2851,6 +2916,7 @@ module Aws::Redshift
|
|
2851
2916
|
:data_transferred_in_mega_bytes,
|
2852
2917
|
:estimated_time_to_completion_in_seconds,
|
2853
2918
|
:elapsed_time_in_seconds)
|
2919
|
+
SENSITIVE = []
|
2854
2920
|
include Aws::Structure
|
2855
2921
|
end
|
2856
2922
|
|
@@ -2880,6 +2946,7 @@ module Aws::Redshift
|
|
2880
2946
|
:parameter_group_family,
|
2881
2947
|
:marker,
|
2882
2948
|
:parameters)
|
2949
|
+
SENSITIVE = []
|
2883
2950
|
include Aws::Structure
|
2884
2951
|
end
|
2885
2952
|
|
@@ -2905,6 +2972,7 @@ module Aws::Redshift
|
|
2905
2972
|
:defer_maintenance_identifier,
|
2906
2973
|
:defer_maintenance_start_time,
|
2907
2974
|
:defer_maintenance_end_time)
|
2975
|
+
SENSITIVE = []
|
2908
2976
|
include Aws::Structure
|
2909
2977
|
end
|
2910
2978
|
|
@@ -2976,6 +3044,7 @@ module Aws::Redshift
|
|
2976
3044
|
:skip_final_cluster_snapshot,
|
2977
3045
|
:final_cluster_snapshot_identifier,
|
2978
3046
|
:final_cluster_snapshot_retention_period)
|
3047
|
+
SENSITIVE = []
|
2979
3048
|
include Aws::Structure
|
2980
3049
|
end
|
2981
3050
|
|
@@ -3000,6 +3069,7 @@ module Aws::Redshift
|
|
3000
3069
|
#
|
3001
3070
|
class DeleteClusterParameterGroupMessage < Struct.new(
|
3002
3071
|
:parameter_group_name)
|
3072
|
+
SENSITIVE = []
|
3003
3073
|
include Aws::Structure
|
3004
3074
|
end
|
3005
3075
|
|
@@ -3011,6 +3081,7 @@ module Aws::Redshift
|
|
3011
3081
|
#
|
3012
3082
|
class DeleteClusterResult < Struct.new(
|
3013
3083
|
:cluster)
|
3084
|
+
SENSITIVE = []
|
3014
3085
|
include Aws::Structure
|
3015
3086
|
end
|
3016
3087
|
|
@@ -3029,6 +3100,7 @@ module Aws::Redshift
|
|
3029
3100
|
#
|
3030
3101
|
class DeleteClusterSecurityGroupMessage < Struct.new(
|
3031
3102
|
:cluster_security_group_name)
|
3103
|
+
SENSITIVE = []
|
3032
3104
|
include Aws::Structure
|
3033
3105
|
end
|
3034
3106
|
|
@@ -3061,6 +3133,7 @@ module Aws::Redshift
|
|
3061
3133
|
class DeleteClusterSnapshotMessage < Struct.new(
|
3062
3134
|
:snapshot_identifier,
|
3063
3135
|
:snapshot_cluster_identifier)
|
3136
|
+
SENSITIVE = []
|
3064
3137
|
include Aws::Structure
|
3065
3138
|
end
|
3066
3139
|
|
@@ -3072,6 +3145,7 @@ module Aws::Redshift
|
|
3072
3145
|
#
|
3073
3146
|
class DeleteClusterSnapshotResult < Struct.new(
|
3074
3147
|
:snapshot)
|
3148
|
+
SENSITIVE = []
|
3075
3149
|
include Aws::Structure
|
3076
3150
|
end
|
3077
3151
|
|
@@ -3090,6 +3164,7 @@ module Aws::Redshift
|
|
3090
3164
|
#
|
3091
3165
|
class DeleteClusterSubnetGroupMessage < Struct.new(
|
3092
3166
|
:cluster_subnet_group_name)
|
3167
|
+
SENSITIVE = []
|
3093
3168
|
include Aws::Structure
|
3094
3169
|
end
|
3095
3170
|
|
@@ -3109,6 +3184,7 @@ module Aws::Redshift
|
|
3109
3184
|
#
|
3110
3185
|
class DeleteEventSubscriptionMessage < Struct.new(
|
3111
3186
|
:subscription_name)
|
3187
|
+
SENSITIVE = []
|
3112
3188
|
include Aws::Structure
|
3113
3189
|
end
|
3114
3190
|
|
@@ -3127,6 +3203,7 @@ module Aws::Redshift
|
|
3127
3203
|
#
|
3128
3204
|
class DeleteHsmClientCertificateMessage < Struct.new(
|
3129
3205
|
:hsm_client_certificate_identifier)
|
3206
|
+
SENSITIVE = []
|
3130
3207
|
include Aws::Structure
|
3131
3208
|
end
|
3132
3209
|
|
@@ -3146,6 +3223,7 @@ module Aws::Redshift
|
|
3146
3223
|
#
|
3147
3224
|
class DeleteHsmConfigurationMessage < Struct.new(
|
3148
3225
|
:hsm_configuration_identifier)
|
3226
|
+
SENSITIVE = []
|
3149
3227
|
include Aws::Structure
|
3150
3228
|
end
|
3151
3229
|
|
@@ -3164,6 +3242,7 @@ module Aws::Redshift
|
|
3164
3242
|
#
|
3165
3243
|
class DeleteScheduledActionMessage < Struct.new(
|
3166
3244
|
:scheduled_action_name)
|
3245
|
+
SENSITIVE = []
|
3167
3246
|
include Aws::Structure
|
3168
3247
|
end
|
3169
3248
|
|
@@ -3184,6 +3263,7 @@ module Aws::Redshift
|
|
3184
3263
|
#
|
3185
3264
|
class DeleteSnapshotCopyGrantMessage < Struct.new(
|
3186
3265
|
:snapshot_copy_grant_name)
|
3266
|
+
SENSITIVE = []
|
3187
3267
|
include Aws::Structure
|
3188
3268
|
end
|
3189
3269
|
|
@@ -3202,6 +3282,7 @@ module Aws::Redshift
|
|
3202
3282
|
#
|
3203
3283
|
class DeleteSnapshotScheduleMessage < Struct.new(
|
3204
3284
|
:schedule_identifier)
|
3285
|
+
SENSITIVE = []
|
3205
3286
|
include Aws::Structure
|
3206
3287
|
end
|
3207
3288
|
|
@@ -3230,6 +3311,7 @@ module Aws::Redshift
|
|
3230
3311
|
class DeleteTagsMessage < Struct.new(
|
3231
3312
|
:resource_name,
|
3232
3313
|
:tag_keys)
|
3314
|
+
SENSITIVE = []
|
3233
3315
|
include Aws::Structure
|
3234
3316
|
end
|
3235
3317
|
|
@@ -3248,6 +3330,7 @@ module Aws::Redshift
|
|
3248
3330
|
#
|
3249
3331
|
class DeleteUsageLimitMessage < Struct.new(
|
3250
3332
|
:usage_limit_id)
|
3333
|
+
SENSITIVE = []
|
3251
3334
|
include Aws::Structure
|
3252
3335
|
end
|
3253
3336
|
|
@@ -3281,6 +3364,7 @@ module Aws::Redshift
|
|
3281
3364
|
#
|
3282
3365
|
class DescribeAccountAttributesMessage < Struct.new(
|
3283
3366
|
:attribute_names)
|
3367
|
+
SENSITIVE = []
|
3284
3368
|
include Aws::Structure
|
3285
3369
|
end
|
3286
3370
|
|
@@ -3331,6 +3415,7 @@ module Aws::Redshift
|
|
3331
3415
|
:cluster_identifier,
|
3332
3416
|
:max_records,
|
3333
3417
|
:marker)
|
3418
|
+
SENSITIVE = []
|
3334
3419
|
include Aws::Structure
|
3335
3420
|
end
|
3336
3421
|
|
@@ -3401,6 +3486,7 @@ module Aws::Redshift
|
|
3401
3486
|
:marker,
|
3402
3487
|
:tag_keys,
|
3403
3488
|
:tag_values)
|
3489
|
+
SENSITIVE = []
|
3404
3490
|
include Aws::Structure
|
3405
3491
|
end
|
3406
3492
|
|
@@ -3458,6 +3544,7 @@ module Aws::Redshift
|
|
3458
3544
|
:source,
|
3459
3545
|
:max_records,
|
3460
3546
|
:marker)
|
3547
|
+
SENSITIVE = []
|
3461
3548
|
include Aws::Structure
|
3462
3549
|
end
|
3463
3550
|
|
@@ -3533,6 +3620,7 @@ module Aws::Redshift
|
|
3533
3620
|
:marker,
|
3534
3621
|
:tag_keys,
|
3535
3622
|
:tag_values)
|
3623
|
+
SENSITIVE = []
|
3536
3624
|
include Aws::Structure
|
3537
3625
|
end
|
3538
3626
|
|
@@ -3690,6 +3778,7 @@ module Aws::Redshift
|
|
3690
3778
|
:tag_values,
|
3691
3779
|
:cluster_exists,
|
3692
3780
|
:sorting_entities)
|
3781
|
+
SENSITIVE = []
|
3693
3782
|
include Aws::Structure
|
3694
3783
|
end
|
3695
3784
|
|
@@ -3759,6 +3848,7 @@ module Aws::Redshift
|
|
3759
3848
|
:marker,
|
3760
3849
|
:tag_keys,
|
3761
3850
|
:tag_values)
|
3851
|
+
SENSITIVE = []
|
3762
3852
|
include Aws::Structure
|
3763
3853
|
end
|
3764
3854
|
|
@@ -3796,6 +3886,7 @@ module Aws::Redshift
|
|
3796
3886
|
:maintenance_track_name,
|
3797
3887
|
:max_records,
|
3798
3888
|
:marker)
|
3889
|
+
SENSITIVE = []
|
3799
3890
|
include Aws::Structure
|
3800
3891
|
end
|
3801
3892
|
|
@@ -3857,6 +3948,7 @@ module Aws::Redshift
|
|
3857
3948
|
:cluster_parameter_group_family,
|
3858
3949
|
:max_records,
|
3859
3950
|
:marker)
|
3951
|
+
SENSITIVE = []
|
3860
3952
|
include Aws::Structure
|
3861
3953
|
end
|
3862
3954
|
|
@@ -3930,6 +4022,7 @@ module Aws::Redshift
|
|
3930
4022
|
:marker,
|
3931
4023
|
:tag_keys,
|
3932
4024
|
:tag_values)
|
4025
|
+
SENSITIVE = []
|
3933
4026
|
include Aws::Structure
|
3934
4027
|
end
|
3935
4028
|
|
@@ -3974,6 +4067,7 @@ module Aws::Redshift
|
|
3974
4067
|
:parameter_group_family,
|
3975
4068
|
:max_records,
|
3976
4069
|
:marker)
|
4070
|
+
SENSITIVE = []
|
3977
4071
|
include Aws::Structure
|
3978
4072
|
end
|
3979
4073
|
|
@@ -3986,6 +4080,7 @@ module Aws::Redshift
|
|
3986
4080
|
#
|
3987
4081
|
class DescribeDefaultClusterParametersResult < Struct.new(
|
3988
4082
|
:default_cluster_parameters)
|
4083
|
+
SENSITIVE = []
|
3989
4084
|
include Aws::Structure
|
3990
4085
|
end
|
3991
4086
|
|
@@ -4008,6 +4103,7 @@ module Aws::Redshift
|
|
4008
4103
|
#
|
4009
4104
|
class DescribeEventCategoriesMessage < Struct.new(
|
4010
4105
|
:source_type)
|
4106
|
+
SENSITIVE = []
|
4011
4107
|
include Aws::Structure
|
4012
4108
|
end
|
4013
4109
|
|
@@ -4077,6 +4173,7 @@ module Aws::Redshift
|
|
4077
4173
|
:marker,
|
4078
4174
|
:tag_keys,
|
4079
4175
|
:tag_values)
|
4176
|
+
SENSITIVE = []
|
4080
4177
|
include Aws::Structure
|
4081
4178
|
end
|
4082
4179
|
|
@@ -4200,6 +4297,7 @@ module Aws::Redshift
|
|
4200
4297
|
:duration,
|
4201
4298
|
:max_records,
|
4202
4299
|
:marker)
|
4300
|
+
SENSITIVE = []
|
4203
4301
|
include Aws::Structure
|
4204
4302
|
end
|
4205
4303
|
|
@@ -4271,6 +4369,7 @@ module Aws::Redshift
|
|
4271
4369
|
:marker,
|
4272
4370
|
:tag_keys,
|
4273
4371
|
:tag_values)
|
4372
|
+
SENSITIVE = []
|
4274
4373
|
include Aws::Structure
|
4275
4374
|
end
|
4276
4375
|
|
@@ -4341,6 +4440,7 @@ module Aws::Redshift
|
|
4341
4440
|
:marker,
|
4342
4441
|
:tag_keys,
|
4343
4442
|
:tag_values)
|
4443
|
+
SENSITIVE = []
|
4344
4444
|
include Aws::Structure
|
4345
4445
|
end
|
4346
4446
|
|
@@ -4361,6 +4461,7 @@ module Aws::Redshift
|
|
4361
4461
|
#
|
4362
4462
|
class DescribeLoggingStatusMessage < Struct.new(
|
4363
4463
|
:cluster_identifier)
|
4464
|
+
SENSITIVE = []
|
4364
4465
|
include Aws::Structure
|
4365
4466
|
end
|
4366
4467
|
|
@@ -4444,6 +4545,7 @@ module Aws::Redshift
|
|
4444
4545
|
:filters,
|
4445
4546
|
:marker,
|
4446
4547
|
:max_records)
|
4548
|
+
SENSITIVE = []
|
4447
4549
|
include Aws::Structure
|
4448
4550
|
end
|
4449
4551
|
|
@@ -4501,6 +4603,7 @@ module Aws::Redshift
|
|
4501
4603
|
:node_type,
|
4502
4604
|
:max_records,
|
4503
4605
|
:marker)
|
4606
|
+
SENSITIVE = []
|
4504
4607
|
include Aws::Structure
|
4505
4608
|
end
|
4506
4609
|
|
@@ -4545,6 +4648,7 @@ module Aws::Redshift
|
|
4545
4648
|
:reserved_node_offering_id,
|
4546
4649
|
:max_records,
|
4547
4650
|
:marker)
|
4651
|
+
SENSITIVE = []
|
4548
4652
|
include Aws::Structure
|
4549
4653
|
end
|
4550
4654
|
|
@@ -4588,6 +4692,7 @@ module Aws::Redshift
|
|
4588
4692
|
:reserved_node_id,
|
4589
4693
|
:max_records,
|
4590
4694
|
:marker)
|
4695
|
+
SENSITIVE = []
|
4591
4696
|
include Aws::Structure
|
4592
4697
|
end
|
4593
4698
|
|
@@ -4610,6 +4715,7 @@ module Aws::Redshift
|
|
4610
4715
|
#
|
4611
4716
|
class DescribeResizeMessage < Struct.new(
|
4612
4717
|
:cluster_identifier)
|
4718
|
+
SENSITIVE = []
|
4613
4719
|
include Aws::Structure
|
4614
4720
|
end
|
4615
4721
|
|
@@ -4694,6 +4800,7 @@ module Aws::Redshift
|
|
4694
4800
|
:filters,
|
4695
4801
|
:marker,
|
4696
4802
|
:max_records)
|
4803
|
+
SENSITIVE = []
|
4697
4804
|
include Aws::Structure
|
4698
4805
|
end
|
4699
4806
|
|
@@ -4766,6 +4873,7 @@ module Aws::Redshift
|
|
4766
4873
|
:marker,
|
4767
4874
|
:tag_keys,
|
4768
4875
|
:tag_values)
|
4876
|
+
SENSITIVE = []
|
4769
4877
|
include Aws::Structure
|
4770
4878
|
end
|
4771
4879
|
|
@@ -4824,6 +4932,7 @@ module Aws::Redshift
|
|
4824
4932
|
:tag_values,
|
4825
4933
|
:marker,
|
4826
4934
|
:max_records)
|
4935
|
+
SENSITIVE = []
|
4827
4936
|
include Aws::Structure
|
4828
4937
|
end
|
4829
4938
|
|
@@ -4845,6 +4954,7 @@ module Aws::Redshift
|
|
4845
4954
|
class DescribeSnapshotSchedulesOutputMessage < Struct.new(
|
4846
4955
|
:snapshot_schedules,
|
4847
4956
|
:marker)
|
4957
|
+
SENSITIVE = []
|
4848
4958
|
include Aws::Structure
|
4849
4959
|
end
|
4850
4960
|
|
@@ -4890,6 +5000,7 @@ module Aws::Redshift
|
|
4890
5000
|
:table_restore_request_id,
|
4891
5001
|
:max_records,
|
4892
5002
|
:marker)
|
5003
|
+
SENSITIVE = []
|
4893
5004
|
include Aws::Structure
|
4894
5005
|
end
|
4895
5006
|
|
@@ -4990,6 +5101,7 @@ module Aws::Redshift
|
|
4990
5101
|
:marker,
|
4991
5102
|
:tag_keys,
|
4992
5103
|
:tag_values)
|
5104
|
+
SENSITIVE = []
|
4993
5105
|
include Aws::Structure
|
4994
5106
|
end
|
4995
5107
|
|
@@ -5070,6 +5182,7 @@ module Aws::Redshift
|
|
5070
5182
|
:marker,
|
5071
5183
|
:tag_keys,
|
5072
5184
|
:tag_values)
|
5185
|
+
SENSITIVE = []
|
5073
5186
|
include Aws::Structure
|
5074
5187
|
end
|
5075
5188
|
|
@@ -5090,6 +5203,7 @@ module Aws::Redshift
|
|
5090
5203
|
#
|
5091
5204
|
class DisableLoggingMessage < Struct.new(
|
5092
5205
|
:cluster_identifier)
|
5206
|
+
SENSITIVE = []
|
5093
5207
|
include Aws::Structure
|
5094
5208
|
end
|
5095
5209
|
|
@@ -5112,6 +5226,7 @@ module Aws::Redshift
|
|
5112
5226
|
#
|
5113
5227
|
class DisableSnapshotCopyMessage < Struct.new(
|
5114
5228
|
:cluster_identifier)
|
5229
|
+
SENSITIVE = []
|
5115
5230
|
include Aws::Structure
|
5116
5231
|
end
|
5117
5232
|
|
@@ -5123,6 +5238,7 @@ module Aws::Redshift
|
|
5123
5238
|
#
|
5124
5239
|
class DisableSnapshotCopyResult < Struct.new(
|
5125
5240
|
:cluster)
|
5241
|
+
SENSITIVE = []
|
5126
5242
|
include Aws::Structure
|
5127
5243
|
end
|
5128
5244
|
|
@@ -5152,6 +5268,7 @@ module Aws::Redshift
|
|
5152
5268
|
:ec2_security_group_name,
|
5153
5269
|
:ec2_security_group_owner_id,
|
5154
5270
|
:tags)
|
5271
|
+
SENSITIVE = []
|
5155
5272
|
include Aws::Structure
|
5156
5273
|
end
|
5157
5274
|
|
@@ -5170,6 +5287,7 @@ module Aws::Redshift
|
|
5170
5287
|
class ElasticIpStatus < Struct.new(
|
5171
5288
|
:elastic_ip,
|
5172
5289
|
:status)
|
5290
|
+
SENSITIVE = []
|
5173
5291
|
include Aws::Structure
|
5174
5292
|
end
|
5175
5293
|
|
@@ -5227,6 +5345,7 @@ module Aws::Redshift
|
|
5227
5345
|
:cluster_identifier,
|
5228
5346
|
:bucket_name,
|
5229
5347
|
:s3_key_prefix)
|
5348
|
+
SENSITIVE = []
|
5230
5349
|
include Aws::Structure
|
5231
5350
|
end
|
5232
5351
|
|
@@ -5291,6 +5410,7 @@ module Aws::Redshift
|
|
5291
5410
|
:retention_period,
|
5292
5411
|
:snapshot_copy_grant_name,
|
5293
5412
|
:manual_snapshot_retention_period)
|
5413
|
+
SENSITIVE = []
|
5294
5414
|
include Aws::Structure
|
5295
5415
|
end
|
5296
5416
|
|
@@ -5302,6 +5422,7 @@ module Aws::Redshift
|
|
5302
5422
|
#
|
5303
5423
|
class EnableSnapshotCopyResult < Struct.new(
|
5304
5424
|
:cluster)
|
5425
|
+
SENSITIVE = []
|
5305
5426
|
include Aws::Structure
|
5306
5427
|
end
|
5307
5428
|
|
@@ -5320,6 +5441,7 @@ module Aws::Redshift
|
|
5320
5441
|
class Endpoint < Struct.new(
|
5321
5442
|
:address,
|
5322
5443
|
:port)
|
5444
|
+
SENSITIVE = []
|
5323
5445
|
include Aws::Structure
|
5324
5446
|
end
|
5325
5447
|
|
@@ -5367,6 +5489,7 @@ module Aws::Redshift
|
|
5367
5489
|
:severity,
|
5368
5490
|
:date,
|
5369
5491
|
:event_id)
|
5492
|
+
SENSITIVE = []
|
5370
5493
|
include Aws::Structure
|
5371
5494
|
end
|
5372
5495
|
|
@@ -5386,6 +5509,7 @@ module Aws::Redshift
|
|
5386
5509
|
class EventCategoriesMap < Struct.new(
|
5387
5510
|
:source_type,
|
5388
5511
|
:events)
|
5512
|
+
SENSITIVE = []
|
5389
5513
|
include Aws::Structure
|
5390
5514
|
end
|
5391
5515
|
|
@@ -5397,6 +5521,7 @@ module Aws::Redshift
|
|
5397
5521
|
#
|
5398
5522
|
class EventCategoriesMessage < Struct.new(
|
5399
5523
|
:event_categories_map_list)
|
5524
|
+
SENSITIVE = []
|
5400
5525
|
include Aws::Structure
|
5401
5526
|
end
|
5402
5527
|
|
@@ -5427,6 +5552,7 @@ module Aws::Redshift
|
|
5427
5552
|
:event_categories,
|
5428
5553
|
:event_description,
|
5429
5554
|
:severity)
|
5555
|
+
SENSITIVE = []
|
5430
5556
|
include Aws::Structure
|
5431
5557
|
end
|
5432
5558
|
|
@@ -5514,6 +5640,7 @@ module Aws::Redshift
|
|
5514
5640
|
:severity,
|
5515
5641
|
:enabled,
|
5516
5642
|
:tags)
|
5643
|
+
SENSITIVE = []
|
5517
5644
|
include Aws::Structure
|
5518
5645
|
end
|
5519
5646
|
|
@@ -5548,6 +5675,7 @@ module Aws::Redshift
|
|
5548
5675
|
class EventSubscriptionsMessage < Struct.new(
|
5549
5676
|
:marker,
|
5550
5677
|
:event_subscriptions_list)
|
5678
|
+
SENSITIVE = []
|
5551
5679
|
include Aws::Structure
|
5552
5680
|
end
|
5553
5681
|
|
@@ -5569,6 +5697,7 @@ module Aws::Redshift
|
|
5569
5697
|
class EventsMessage < Struct.new(
|
5570
5698
|
:marker,
|
5571
5699
|
:events)
|
5700
|
+
SENSITIVE = []
|
5572
5701
|
include Aws::Structure
|
5573
5702
|
end
|
5574
5703
|
|
@@ -5700,6 +5829,7 @@ module Aws::Redshift
|
|
5700
5829
|
:duration_seconds,
|
5701
5830
|
:auto_create,
|
5702
5831
|
:db_groups)
|
5832
|
+
SENSITIVE = []
|
5703
5833
|
include Aws::Structure
|
5704
5834
|
end
|
5705
5835
|
|
@@ -5733,6 +5863,7 @@ module Aws::Redshift
|
|
5733
5863
|
:reserved_node_id,
|
5734
5864
|
:max_records,
|
5735
5865
|
:marker)
|
5866
|
+
SENSITIVE = []
|
5736
5867
|
include Aws::Structure
|
5737
5868
|
end
|
5738
5869
|
|
@@ -5755,6 +5886,7 @@ module Aws::Redshift
|
|
5755
5886
|
class GetReservedNodeExchangeOfferingsOutputMessage < Struct.new(
|
5756
5887
|
:marker,
|
5757
5888
|
:reserved_node_offerings)
|
5889
|
+
SENSITIVE = []
|
5758
5890
|
include Aws::Structure
|
5759
5891
|
end
|
5760
5892
|
|
@@ -5781,6 +5913,7 @@ module Aws::Redshift
|
|
5781
5913
|
:hsm_client_certificate_identifier,
|
5782
5914
|
:hsm_client_certificate_public_key,
|
5783
5915
|
:tags)
|
5916
|
+
SENSITIVE = []
|
5784
5917
|
include Aws::Structure
|
5785
5918
|
end
|
5786
5919
|
|
@@ -5811,6 +5944,7 @@ module Aws::Redshift
|
|
5811
5944
|
class HsmClientCertificateMessage < Struct.new(
|
5812
5945
|
:marker,
|
5813
5946
|
:hsm_client_certificates)
|
5947
|
+
SENSITIVE = []
|
5814
5948
|
include Aws::Structure
|
5815
5949
|
end
|
5816
5950
|
|
@@ -5868,6 +6002,7 @@ module Aws::Redshift
|
|
5868
6002
|
:hsm_ip_address,
|
5869
6003
|
:hsm_partition_name,
|
5870
6004
|
:tags)
|
6005
|
+
SENSITIVE = []
|
5871
6006
|
include Aws::Structure
|
5872
6007
|
end
|
5873
6008
|
|
@@ -5896,6 +6031,7 @@ module Aws::Redshift
|
|
5896
6031
|
class HsmConfigurationMessage < Struct.new(
|
5897
6032
|
:marker,
|
5898
6033
|
:hsm_configurations)
|
6034
|
+
SENSITIVE = []
|
5899
6035
|
include Aws::Structure
|
5900
6036
|
end
|
5901
6037
|
|
@@ -5944,6 +6080,7 @@ module Aws::Redshift
|
|
5944
6080
|
:hsm_client_certificate_identifier,
|
5945
6081
|
:hsm_configuration_identifier,
|
5946
6082
|
:status)
|
6083
|
+
SENSITIVE = []
|
5947
6084
|
include Aws::Structure
|
5948
6085
|
end
|
5949
6086
|
|
@@ -5967,6 +6104,7 @@ module Aws::Redshift
|
|
5967
6104
|
:status,
|
5968
6105
|
:cidrip,
|
5969
6106
|
:tags)
|
6107
|
+
SENSITIVE = []
|
5970
6108
|
include Aws::Structure
|
5971
6109
|
end
|
5972
6110
|
|
@@ -6210,6 +6348,7 @@ module Aws::Redshift
|
|
6210
6348
|
:last_successful_delivery_time,
|
6211
6349
|
:last_failure_time,
|
6212
6350
|
:last_failure_message)
|
6351
|
+
SENSITIVE = []
|
6213
6352
|
include Aws::Structure
|
6214
6353
|
end
|
6215
6354
|
|
@@ -6240,6 +6379,7 @@ module Aws::Redshift
|
|
6240
6379
|
:maintenance_track_name,
|
6241
6380
|
:database_version,
|
6242
6381
|
:update_targets)
|
6382
|
+
SENSITIVE = []
|
6243
6383
|
include Aws::Structure
|
6244
6384
|
end
|
6245
6385
|
|
@@ -6268,6 +6408,7 @@ module Aws::Redshift
|
|
6268
6408
|
class ModifyClusterDbRevisionMessage < Struct.new(
|
6269
6409
|
:cluster_identifier,
|
6270
6410
|
:revision_target)
|
6411
|
+
SENSITIVE = []
|
6271
6412
|
include Aws::Structure
|
6272
6413
|
end
|
6273
6414
|
|
@@ -6279,6 +6420,7 @@ module Aws::Redshift
|
|
6279
6420
|
#
|
6280
6421
|
class ModifyClusterDbRevisionResult < Struct.new(
|
6281
6422
|
:cluster)
|
6423
|
+
SENSITIVE = []
|
6282
6424
|
include Aws::Structure
|
6283
6425
|
end
|
6284
6426
|
|
@@ -6314,6 +6456,7 @@ module Aws::Redshift
|
|
6314
6456
|
:cluster_identifier,
|
6315
6457
|
:add_iam_roles,
|
6316
6458
|
:remove_iam_roles)
|
6459
|
+
SENSITIVE = []
|
6317
6460
|
include Aws::Structure
|
6318
6461
|
end
|
6319
6462
|
|
@@ -6325,6 +6468,7 @@ module Aws::Redshift
|
|
6325
6468
|
#
|
6326
6469
|
class ModifyClusterIamRolesResult < Struct.new(
|
6327
6470
|
:cluster)
|
6471
|
+
SENSITIVE = []
|
6328
6472
|
include Aws::Structure
|
6329
6473
|
end
|
6330
6474
|
|
@@ -6378,6 +6522,7 @@ module Aws::Redshift
|
|
6378
6522
|
:defer_maintenance_start_time,
|
6379
6523
|
:defer_maintenance_end_time,
|
6380
6524
|
:defer_maintenance_duration)
|
6525
|
+
SENSITIVE = []
|
6381
6526
|
include Aws::Structure
|
6382
6527
|
end
|
6383
6528
|
|
@@ -6389,6 +6534,7 @@ module Aws::Redshift
|
|
6389
6534
|
#
|
6390
6535
|
class ModifyClusterMaintenanceResult < Struct.new(
|
6391
6536
|
:cluster)
|
6537
|
+
SENSITIVE = []
|
6392
6538
|
include Aws::Structure
|
6393
6539
|
end
|
6394
6540
|
|
@@ -6681,9 +6827,7 @@ module Aws::Redshift
|
|
6681
6827
|
# Indicates whether the cluster is encrypted. If the value is
|
6682
6828
|
# encrypted (true) and you provide a value for the `KmsKeyId`
|
6683
6829
|
# parameter, we encrypt the cluster with the provided `KmsKeyId`. If
|
6684
|
-
# you don't provide a `KmsKeyId`, we encrypt with the default key.
|
6685
|
-
# the China region we use legacy encryption if you specify that the
|
6686
|
-
# cluster is encrypted.
|
6830
|
+
# you don't provide a `KmsKeyId`, we encrypt with the default key.
|
6687
6831
|
#
|
6688
6832
|
# If the value is not encrypted (false), then the cluster is
|
6689
6833
|
# decrypted.
|
@@ -6719,9 +6863,12 @@ module Aws::Redshift
|
|
6719
6863
|
:maintenance_track_name,
|
6720
6864
|
:encrypted,
|
6721
6865
|
:kms_key_id)
|
6866
|
+
SENSITIVE = []
|
6722
6867
|
include Aws::Structure
|
6723
6868
|
end
|
6724
6869
|
|
6870
|
+
# Describes a modify cluster parameter group operation.
|
6871
|
+
#
|
6725
6872
|
# @note When making an API call, you may pass ModifyClusterParameterGroupMessage
|
6726
6873
|
# data as a hash:
|
6727
6874
|
#
|
@@ -6763,6 +6910,7 @@ module Aws::Redshift
|
|
6763
6910
|
class ModifyClusterParameterGroupMessage < Struct.new(
|
6764
6911
|
:parameter_group_name,
|
6765
6912
|
:parameters)
|
6913
|
+
SENSITIVE = []
|
6766
6914
|
include Aws::Structure
|
6767
6915
|
end
|
6768
6916
|
|
@@ -6774,6 +6922,7 @@ module Aws::Redshift
|
|
6774
6922
|
#
|
6775
6923
|
class ModifyClusterResult < Struct.new(
|
6776
6924
|
:cluster)
|
6925
|
+
SENSITIVE = []
|
6777
6926
|
include Aws::Structure
|
6778
6927
|
end
|
6779
6928
|
|
@@ -6811,6 +6960,7 @@ module Aws::Redshift
|
|
6811
6960
|
:snapshot_identifier,
|
6812
6961
|
:manual_snapshot_retention_period,
|
6813
6962
|
:force)
|
6963
|
+
SENSITIVE = []
|
6814
6964
|
include Aws::Structure
|
6815
6965
|
end
|
6816
6966
|
|
@@ -6822,6 +6972,7 @@ module Aws::Redshift
|
|
6822
6972
|
#
|
6823
6973
|
class ModifyClusterSnapshotResult < Struct.new(
|
6824
6974
|
:snapshot)
|
6975
|
+
SENSITIVE = []
|
6825
6976
|
include Aws::Structure
|
6826
6977
|
end
|
6827
6978
|
|
@@ -6855,6 +7006,7 @@ module Aws::Redshift
|
|
6855
7006
|
:cluster_identifier,
|
6856
7007
|
:schedule_identifier,
|
6857
7008
|
:disassociate_schedule)
|
7009
|
+
SENSITIVE = []
|
6858
7010
|
include Aws::Structure
|
6859
7011
|
end
|
6860
7012
|
|
@@ -6886,6 +7038,7 @@ module Aws::Redshift
|
|
6886
7038
|
:cluster_subnet_group_name,
|
6887
7039
|
:description,
|
6888
7040
|
:subnet_ids)
|
7041
|
+
SENSITIVE = []
|
6889
7042
|
include Aws::Structure
|
6890
7043
|
end
|
6891
7044
|
|
@@ -6897,6 +7050,7 @@ module Aws::Redshift
|
|
6897
7050
|
#
|
6898
7051
|
class ModifyClusterSubnetGroupResult < Struct.new(
|
6899
7052
|
:cluster_subnet_group)
|
7053
|
+
SENSITIVE = []
|
6900
7054
|
include Aws::Structure
|
6901
7055
|
end
|
6902
7056
|
|
@@ -6977,6 +7131,7 @@ module Aws::Redshift
|
|
6977
7131
|
:event_categories,
|
6978
7132
|
:severity,
|
6979
7133
|
:enabled)
|
7134
|
+
SENSITIVE = []
|
6980
7135
|
include Aws::Structure
|
6981
7136
|
end
|
6982
7137
|
|
@@ -6988,6 +7143,7 @@ module Aws::Redshift
|
|
6988
7143
|
#
|
6989
7144
|
class ModifyEventSubscriptionResult < Struct.new(
|
6990
7145
|
:event_subscription)
|
7146
|
+
SENSITIVE = []
|
6991
7147
|
include Aws::Structure
|
6992
7148
|
end
|
6993
7149
|
|
@@ -7069,6 +7225,7 @@ module Aws::Redshift
|
|
7069
7225
|
:start_time,
|
7070
7226
|
:end_time,
|
7071
7227
|
:enable)
|
7228
|
+
SENSITIVE = []
|
7072
7229
|
include Aws::Structure
|
7073
7230
|
end
|
7074
7231
|
|
@@ -7126,6 +7283,7 @@ module Aws::Redshift
|
|
7126
7283
|
:cluster_identifier,
|
7127
7284
|
:retention_period,
|
7128
7285
|
:manual)
|
7286
|
+
SENSITIVE = []
|
7129
7287
|
include Aws::Structure
|
7130
7288
|
end
|
7131
7289
|
|
@@ -7137,6 +7295,7 @@ module Aws::Redshift
|
|
7137
7295
|
#
|
7138
7296
|
class ModifySnapshotCopyRetentionPeriodResult < Struct.new(
|
7139
7297
|
:cluster)
|
7298
|
+
SENSITIVE = []
|
7140
7299
|
include Aws::Structure
|
7141
7300
|
end
|
7142
7301
|
|
@@ -7163,6 +7322,7 @@ module Aws::Redshift
|
|
7163
7322
|
class ModifySnapshotScheduleMessage < Struct.new(
|
7164
7323
|
:schedule_identifier,
|
7165
7324
|
:schedule_definitions)
|
7325
|
+
SENSITIVE = []
|
7166
7326
|
include Aws::Structure
|
7167
7327
|
end
|
7168
7328
|
|
@@ -7195,6 +7355,7 @@ module Aws::Redshift
|
|
7195
7355
|
:usage_limit_id,
|
7196
7356
|
:amount,
|
7197
7357
|
:breach_action)
|
7358
|
+
SENSITIVE = []
|
7198
7359
|
include Aws::Structure
|
7199
7360
|
end
|
7200
7361
|
|
@@ -7223,6 +7384,7 @@ module Aws::Redshift
|
|
7223
7384
|
:number_of_nodes,
|
7224
7385
|
:estimated_disk_utilization_percent,
|
7225
7386
|
:mode)
|
7387
|
+
SENSITIVE = []
|
7226
7388
|
include Aws::Structure
|
7227
7389
|
end
|
7228
7390
|
|
@@ -7262,6 +7424,7 @@ module Aws::Redshift
|
|
7262
7424
|
:name,
|
7263
7425
|
:operator,
|
7264
7426
|
:values)
|
7427
|
+
SENSITIVE = []
|
7265
7428
|
include Aws::Structure
|
7266
7429
|
end
|
7267
7430
|
|
@@ -7283,6 +7446,7 @@ module Aws::Redshift
|
|
7283
7446
|
class NodeConfigurationOptionsMessage < Struct.new(
|
7284
7447
|
:node_configuration_option_list,
|
7285
7448
|
:marker)
|
7449
|
+
SENSITIVE = []
|
7286
7450
|
include Aws::Structure
|
7287
7451
|
end
|
7288
7452
|
|
@@ -7329,6 +7493,7 @@ module Aws::Redshift
|
|
7329
7493
|
:cluster_type,
|
7330
7494
|
:node_type,
|
7331
7495
|
:availability_zones)
|
7496
|
+
SENSITIVE = []
|
7332
7497
|
include Aws::Structure
|
7333
7498
|
end
|
7334
7499
|
|
@@ -7353,6 +7518,7 @@ module Aws::Redshift
|
|
7353
7518
|
class OrderableClusterOptionsMessage < Struct.new(
|
7354
7519
|
:orderable_cluster_options,
|
7355
7520
|
:marker)
|
7521
|
+
SENSITIVE = []
|
7356
7522
|
include Aws::Structure
|
7357
7523
|
end
|
7358
7524
|
|
@@ -7433,9 +7599,13 @@ module Aws::Redshift
|
|
7433
7599
|
:apply_type,
|
7434
7600
|
:is_modifiable,
|
7435
7601
|
:minimum_engine_version)
|
7602
|
+
SENSITIVE = []
|
7436
7603
|
include Aws::Structure
|
7437
7604
|
end
|
7438
7605
|
|
7606
|
+
# Describes a pause cluster operation. For example, a scheduled action
|
7607
|
+
# to run the `PauseCluster` API operation.
|
7608
|
+
#
|
7439
7609
|
# @note When making an API call, you may pass PauseClusterMessage
|
7440
7610
|
# data as a hash:
|
7441
7611
|
#
|
@@ -7451,6 +7621,7 @@ module Aws::Redshift
|
|
7451
7621
|
#
|
7452
7622
|
class PauseClusterMessage < Struct.new(
|
7453
7623
|
:cluster_identifier)
|
7624
|
+
SENSITIVE = []
|
7454
7625
|
include Aws::Structure
|
7455
7626
|
end
|
7456
7627
|
|
@@ -7462,6 +7633,7 @@ module Aws::Redshift
|
|
7462
7633
|
#
|
7463
7634
|
class PauseClusterResult < Struct.new(
|
7464
7635
|
:cluster)
|
7636
|
+
SENSITIVE = []
|
7465
7637
|
include Aws::Structure
|
7466
7638
|
end
|
7467
7639
|
|
@@ -7529,7 +7701,7 @@ module Aws::Redshift
|
|
7529
7701
|
#
|
7530
7702
|
# @!attribute [rw] encryption_type
|
7531
7703
|
# The encryption type for a cluster. Possible values are: KMS and
|
7532
|
-
# None.
|
7704
|
+
# None.
|
7533
7705
|
# @return [String]
|
7534
7706
|
#
|
7535
7707
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PendingModifiedValues AWS API Documentation
|
@@ -7546,6 +7718,7 @@ module Aws::Redshift
|
|
7546
7718
|
:enhanced_vpc_routing,
|
7547
7719
|
:maintenance_track_name,
|
7548
7720
|
:encryption_type)
|
7721
|
+
SENSITIVE = []
|
7549
7722
|
include Aws::Structure
|
7550
7723
|
end
|
7551
7724
|
|
@@ -7573,6 +7746,7 @@ module Aws::Redshift
|
|
7573
7746
|
class PurchaseReservedNodeOfferingMessage < Struct.new(
|
7574
7747
|
:reserved_node_offering_id,
|
7575
7748
|
:node_count)
|
7749
|
+
SENSITIVE = []
|
7576
7750
|
include Aws::Structure
|
7577
7751
|
end
|
7578
7752
|
|
@@ -7586,6 +7760,7 @@ module Aws::Redshift
|
|
7586
7760
|
#
|
7587
7761
|
class PurchaseReservedNodeOfferingResult < Struct.new(
|
7588
7762
|
:reserved_node)
|
7763
|
+
SENSITIVE = []
|
7589
7764
|
include Aws::Structure
|
7590
7765
|
end
|
7591
7766
|
|
@@ -7604,6 +7779,7 @@ module Aws::Redshift
|
|
7604
7779
|
#
|
7605
7780
|
class RebootClusterMessage < Struct.new(
|
7606
7781
|
:cluster_identifier)
|
7782
|
+
SENSITIVE = []
|
7607
7783
|
include Aws::Structure
|
7608
7784
|
end
|
7609
7785
|
|
@@ -7615,6 +7791,7 @@ module Aws::Redshift
|
|
7615
7791
|
#
|
7616
7792
|
class RebootClusterResult < Struct.new(
|
7617
7793
|
:cluster)
|
7794
|
+
SENSITIVE = []
|
7618
7795
|
include Aws::Structure
|
7619
7796
|
end
|
7620
7797
|
|
@@ -7634,6 +7811,7 @@ module Aws::Redshift
|
|
7634
7811
|
class RecurringCharge < Struct.new(
|
7635
7812
|
:recurring_charge_amount,
|
7636
7813
|
:recurring_charge_frequency)
|
7814
|
+
SENSITIVE = []
|
7637
7815
|
include Aws::Structure
|
7638
7816
|
end
|
7639
7817
|
|
@@ -7726,6 +7904,7 @@ module Aws::Redshift
|
|
7726
7904
|
:offering_type,
|
7727
7905
|
:recurring_charges,
|
7728
7906
|
:reserved_node_offering_type)
|
7907
|
+
SENSITIVE = []
|
7729
7908
|
include Aws::Structure
|
7730
7909
|
end
|
7731
7910
|
|
@@ -7802,6 +7981,7 @@ module Aws::Redshift
|
|
7802
7981
|
:offering_type,
|
7803
7982
|
:recurring_charges,
|
7804
7983
|
:reserved_node_offering_type)
|
7984
|
+
SENSITIVE = []
|
7805
7985
|
include Aws::Structure
|
7806
7986
|
end
|
7807
7987
|
|
@@ -7829,6 +8009,7 @@ module Aws::Redshift
|
|
7829
8009
|
class ReservedNodeOfferingsMessage < Struct.new(
|
7830
8010
|
:marker,
|
7831
8011
|
:reserved_node_offerings)
|
8012
|
+
SENSITIVE = []
|
7832
8013
|
include Aws::Structure
|
7833
8014
|
end
|
7834
8015
|
|
@@ -7862,6 +8043,7 @@ module Aws::Redshift
|
|
7862
8043
|
class ReservedNodesMessage < Struct.new(
|
7863
8044
|
:marker,
|
7864
8045
|
:reserved_nodes)
|
8046
|
+
SENSITIVE = []
|
7865
8047
|
include Aws::Structure
|
7866
8048
|
end
|
7867
8049
|
|
@@ -7912,9 +8094,13 @@ module Aws::Redshift
|
|
7912
8094
|
:parameter_group_name,
|
7913
8095
|
:reset_all_parameters,
|
7914
8096
|
:parameters)
|
8097
|
+
SENSITIVE = []
|
7915
8098
|
include Aws::Structure
|
7916
8099
|
end
|
7917
8100
|
|
8101
|
+
# Describes a resize cluster operation. For example, a scheduled action
|
8102
|
+
# to run the `ResizeCluster` API operation.
|
8103
|
+
#
|
7918
8104
|
# @note When making an API call, you may pass ResizeClusterMessage
|
7919
8105
|
# data as a hash:
|
7920
8106
|
#
|
@@ -7940,7 +8126,8 @@ module Aws::Redshift
|
|
7940
8126
|
# @return [String]
|
7941
8127
|
#
|
7942
8128
|
# @!attribute [rw] number_of_nodes
|
7943
|
-
# The new number of nodes for the cluster.
|
8129
|
+
# The new number of nodes for the cluster. If not specified, the
|
8130
|
+
# cluster's current number of nodes is used.
|
7944
8131
|
# @return [Integer]
|
7945
8132
|
#
|
7946
8133
|
# @!attribute [rw] classic
|
@@ -7957,6 +8144,7 @@ module Aws::Redshift
|
|
7957
8144
|
:node_type,
|
7958
8145
|
:number_of_nodes,
|
7959
8146
|
:classic)
|
8147
|
+
SENSITIVE = []
|
7960
8148
|
include Aws::Structure
|
7961
8149
|
end
|
7962
8150
|
|
@@ -7968,6 +8156,7 @@ module Aws::Redshift
|
|
7968
8156
|
#
|
7969
8157
|
class ResizeClusterResult < Struct.new(
|
7970
8158
|
:cluster)
|
8159
|
+
SENSITIVE = []
|
7971
8160
|
include Aws::Structure
|
7972
8161
|
end
|
7973
8162
|
|
@@ -7986,6 +8175,7 @@ module Aws::Redshift
|
|
7986
8175
|
class ResizeInfo < Struct.new(
|
7987
8176
|
:resize_type,
|
7988
8177
|
:allow_cancel_resize)
|
8178
|
+
SENSITIVE = []
|
7989
8179
|
include Aws::Structure
|
7990
8180
|
end
|
7991
8181
|
|
@@ -8085,8 +8275,7 @@ module Aws::Redshift
|
|
8085
8275
|
# @!attribute [rw] target_encryption_type
|
8086
8276
|
# The type of encryption for the cluster after the resize is complete.
|
8087
8277
|
#
|
8088
|
-
# Possible values are `KMS` and `None`.
|
8089
|
-
# values are: `Legacy` and `None`.
|
8278
|
+
# Possible values are `KMS` and `None`.
|
8090
8279
|
# @return [String]
|
8091
8280
|
#
|
8092
8281
|
# @!attribute [rw] data_transfer_progress_percent
|
@@ -8113,6 +8302,7 @@ module Aws::Redshift
|
|
8113
8302
|
:message,
|
8114
8303
|
:target_encryption_type,
|
8115
8304
|
:data_transfer_progress_percent)
|
8305
|
+
SENSITIVE = []
|
8116
8306
|
include Aws::Structure
|
8117
8307
|
end
|
8118
8308
|
|
@@ -8425,6 +8615,7 @@ module Aws::Redshift
|
|
8425
8615
|
:maintenance_track_name,
|
8426
8616
|
:snapshot_schedule_identifier,
|
8427
8617
|
:number_of_nodes)
|
8618
|
+
SENSITIVE = []
|
8428
8619
|
include Aws::Structure
|
8429
8620
|
end
|
8430
8621
|
|
@@ -8436,6 +8627,7 @@ module Aws::Redshift
|
|
8436
8627
|
#
|
8437
8628
|
class RestoreFromClusterSnapshotResult < Struct.new(
|
8438
8629
|
:cluster)
|
8630
|
+
SENSITIVE = []
|
8439
8631
|
include Aws::Structure
|
8440
8632
|
end
|
8441
8633
|
|
@@ -8486,6 +8678,7 @@ module Aws::Redshift
|
|
8486
8678
|
:progress_in_mega_bytes,
|
8487
8679
|
:elapsed_time_in_seconds,
|
8488
8680
|
:estimated_time_to_completion_in_seconds)
|
8681
|
+
SENSITIVE = []
|
8489
8682
|
include Aws::Structure
|
8490
8683
|
end
|
8491
8684
|
|
@@ -8552,6 +8745,7 @@ module Aws::Redshift
|
|
8552
8745
|
:target_database_name,
|
8553
8746
|
:target_schema_name,
|
8554
8747
|
:new_table_name)
|
8748
|
+
SENSITIVE = []
|
8555
8749
|
include Aws::Structure
|
8556
8750
|
end
|
8557
8751
|
|
@@ -8563,9 +8757,13 @@ module Aws::Redshift
|
|
8563
8757
|
#
|
8564
8758
|
class RestoreTableFromClusterSnapshotResult < Struct.new(
|
8565
8759
|
:table_restore_status)
|
8760
|
+
SENSITIVE = []
|
8566
8761
|
include Aws::Structure
|
8567
8762
|
end
|
8568
8763
|
|
8764
|
+
# Describes a resume cluster operation. For example, a scheduled action
|
8765
|
+
# to run the `ResumeCluster` API operation.
|
8766
|
+
#
|
8569
8767
|
# @note When making an API call, you may pass ResumeClusterMessage
|
8570
8768
|
# data as a hash:
|
8571
8769
|
#
|
@@ -8581,6 +8779,7 @@ module Aws::Redshift
|
|
8581
8779
|
#
|
8582
8780
|
class ResumeClusterMessage < Struct.new(
|
8583
8781
|
:cluster_identifier)
|
8782
|
+
SENSITIVE = []
|
8584
8783
|
include Aws::Structure
|
8585
8784
|
end
|
8586
8785
|
|
@@ -8592,6 +8791,7 @@ module Aws::Redshift
|
|
8592
8791
|
#
|
8593
8792
|
class ResumeClusterResult < Struct.new(
|
8594
8793
|
:cluster)
|
8794
|
+
SENSITIVE = []
|
8595
8795
|
include Aws::Structure
|
8596
8796
|
end
|
8597
8797
|
|
@@ -8618,6 +8818,7 @@ module Aws::Redshift
|
|
8618
8818
|
:database_revision,
|
8619
8819
|
:description,
|
8620
8820
|
:database_revision_release_date)
|
8821
|
+
SENSITIVE = []
|
8621
8822
|
include Aws::Structure
|
8622
8823
|
end
|
8623
8824
|
|
@@ -8666,6 +8867,7 @@ module Aws::Redshift
|
|
8666
8867
|
:cidrip,
|
8667
8868
|
:ec2_security_group_name,
|
8668
8869
|
:ec2_security_group_owner_id)
|
8870
|
+
SENSITIVE = []
|
8669
8871
|
include Aws::Structure
|
8670
8872
|
end
|
8671
8873
|
|
@@ -8677,6 +8879,7 @@ module Aws::Redshift
|
|
8677
8879
|
#
|
8678
8880
|
class RevokeClusterSecurityGroupIngressResult < Struct.new(
|
8679
8881
|
:cluster_security_group)
|
8882
|
+
SENSITIVE = []
|
8680
8883
|
include Aws::Structure
|
8681
8884
|
end
|
8682
8885
|
|
@@ -8712,6 +8915,7 @@ module Aws::Redshift
|
|
8712
8915
|
:snapshot_identifier,
|
8713
8916
|
:snapshot_cluster_identifier,
|
8714
8917
|
:account_with_restore_access)
|
8918
|
+
SENSITIVE = []
|
8715
8919
|
include Aws::Structure
|
8716
8920
|
end
|
8717
8921
|
|
@@ -8723,6 +8927,7 @@ module Aws::Redshift
|
|
8723
8927
|
#
|
8724
8928
|
class RevokeSnapshotAccessResult < Struct.new(
|
8725
8929
|
:snapshot)
|
8930
|
+
SENSITIVE = []
|
8726
8931
|
include Aws::Structure
|
8727
8932
|
end
|
8728
8933
|
|
@@ -8745,6 +8950,7 @@ module Aws::Redshift
|
|
8745
8950
|
#
|
8746
8951
|
class RotateEncryptionKeyMessage < Struct.new(
|
8747
8952
|
:cluster_identifier)
|
8953
|
+
SENSITIVE = []
|
8748
8954
|
include Aws::Structure
|
8749
8955
|
end
|
8750
8956
|
|
@@ -8756,6 +8962,7 @@ module Aws::Redshift
|
|
8756
8962
|
#
|
8757
8963
|
class RotateEncryptionKeyResult < Struct.new(
|
8758
8964
|
:cluster)
|
8965
|
+
SENSITIVE = []
|
8759
8966
|
include Aws::Structure
|
8760
8967
|
end
|
8761
8968
|
|
@@ -8869,6 +9076,7 @@ module Aws::Redshift
|
|
8869
9076
|
:next_invocations,
|
8870
9077
|
:start_time,
|
8871
9078
|
:end_time)
|
9079
|
+
SENSITIVE = []
|
8872
9080
|
include Aws::Structure
|
8873
9081
|
end
|
8874
9082
|
|
@@ -8902,6 +9110,7 @@ module Aws::Redshift
|
|
8902
9110
|
class ScheduledActionFilter < Struct.new(
|
8903
9111
|
:name,
|
8904
9112
|
:values)
|
9113
|
+
SENSITIVE = []
|
8905
9114
|
include Aws::Structure
|
8906
9115
|
end
|
8907
9116
|
|
@@ -8957,6 +9166,7 @@ module Aws::Redshift
|
|
8957
9166
|
:resize_cluster,
|
8958
9167
|
:pause_cluster,
|
8959
9168
|
:resume_cluster)
|
9169
|
+
SENSITIVE = []
|
8960
9170
|
include Aws::Structure
|
8961
9171
|
end
|
8962
9172
|
|
@@ -8985,6 +9195,7 @@ module Aws::Redshift
|
|
8985
9195
|
class ScheduledActionsMessage < Struct.new(
|
8986
9196
|
:marker,
|
8987
9197
|
:scheduled_actions)
|
9198
|
+
SENSITIVE = []
|
8988
9199
|
include Aws::Structure
|
8989
9200
|
end
|
8990
9201
|
|
@@ -9204,6 +9415,7 @@ module Aws::Redshift
|
|
9204
9415
|
:manual_snapshot_retention_period,
|
9205
9416
|
:manual_snapshot_remaining_days,
|
9206
9417
|
:snapshot_retention_start_time)
|
9418
|
+
SENSITIVE = []
|
9207
9419
|
include Aws::Structure
|
9208
9420
|
end
|
9209
9421
|
|
@@ -9257,6 +9469,7 @@ module Aws::Redshift
|
|
9257
9469
|
:snapshot_copy_grant_name,
|
9258
9470
|
:kms_key_id,
|
9259
9471
|
:tags)
|
9472
|
+
SENSITIVE = []
|
9260
9473
|
include Aws::Structure
|
9261
9474
|
end
|
9262
9475
|
|
@@ -9289,6 +9502,7 @@ module Aws::Redshift
|
|
9289
9502
|
class SnapshotCopyGrantMessage < Struct.new(
|
9290
9503
|
:marker,
|
9291
9504
|
:snapshot_copy_grants)
|
9505
|
+
SENSITIVE = []
|
9292
9506
|
include Aws::Structure
|
9293
9507
|
end
|
9294
9508
|
|
@@ -9332,6 +9546,7 @@ module Aws::Redshift
|
|
9332
9546
|
:snapshot_cluster_identifier,
|
9333
9547
|
:failure_code,
|
9334
9548
|
:failure_reason)
|
9549
|
+
SENSITIVE = []
|
9335
9550
|
include Aws::Structure
|
9336
9551
|
end
|
9337
9552
|
|
@@ -9355,6 +9570,7 @@ module Aws::Redshift
|
|
9355
9570
|
class SnapshotMessage < Struct.new(
|
9356
9571
|
:marker,
|
9357
9572
|
:snapshots)
|
9573
|
+
SENSITIVE = []
|
9358
9574
|
include Aws::Structure
|
9359
9575
|
end
|
9360
9576
|
|
@@ -9400,6 +9616,7 @@ module Aws::Redshift
|
|
9400
9616
|
:next_invocations,
|
9401
9617
|
:associated_cluster_count,
|
9402
9618
|
:associated_clusters)
|
9619
|
+
SENSITIVE = []
|
9403
9620
|
include Aws::Structure
|
9404
9621
|
end
|
9405
9622
|
|
@@ -9450,6 +9667,7 @@ module Aws::Redshift
|
|
9450
9667
|
class SnapshotSortingEntity < Struct.new(
|
9451
9668
|
:attribute,
|
9452
9669
|
:sort_order)
|
9670
|
+
SENSITIVE = []
|
9453
9671
|
include Aws::Structure
|
9454
9672
|
end
|
9455
9673
|
|
@@ -9478,6 +9696,7 @@ module Aws::Redshift
|
|
9478
9696
|
:subnet_identifier,
|
9479
9697
|
:subnet_availability_zone,
|
9480
9698
|
:subnet_status)
|
9699
|
+
SENSITIVE = []
|
9481
9700
|
include Aws::Structure
|
9482
9701
|
end
|
9483
9702
|
|
@@ -9534,6 +9753,7 @@ module Aws::Redshift
|
|
9534
9753
|
#
|
9535
9754
|
class SupportedOperation < Struct.new(
|
9536
9755
|
:operation_name)
|
9756
|
+
SENSITIVE = []
|
9537
9757
|
include Aws::Structure
|
9538
9758
|
end
|
9539
9759
|
|
@@ -9546,6 +9766,7 @@ module Aws::Redshift
|
|
9546
9766
|
#
|
9547
9767
|
class SupportedPlatform < Struct.new(
|
9548
9768
|
:name)
|
9769
|
+
SENSITIVE = []
|
9549
9770
|
include Aws::Structure
|
9550
9771
|
end
|
9551
9772
|
|
@@ -9651,6 +9872,7 @@ module Aws::Redshift
|
|
9651
9872
|
:target_database_name,
|
9652
9873
|
:target_schema_name,
|
9653
9874
|
:new_table_name)
|
9875
|
+
SENSITIVE = []
|
9654
9876
|
include Aws::Structure
|
9655
9877
|
end
|
9656
9878
|
|
@@ -9668,6 +9890,7 @@ module Aws::Redshift
|
|
9668
9890
|
class TableRestoreStatusMessage < Struct.new(
|
9669
9891
|
:table_restore_status_details,
|
9670
9892
|
:marker)
|
9893
|
+
SENSITIVE = []
|
9671
9894
|
include Aws::Structure
|
9672
9895
|
end
|
9673
9896
|
|
@@ -9694,6 +9917,7 @@ module Aws::Redshift
|
|
9694
9917
|
class Tag < Struct.new(
|
9695
9918
|
:key,
|
9696
9919
|
:value)
|
9920
|
+
SENSITIVE = []
|
9697
9921
|
include Aws::Structure
|
9698
9922
|
end
|
9699
9923
|
|
@@ -9752,6 +9976,7 @@ module Aws::Redshift
|
|
9752
9976
|
:tag,
|
9753
9977
|
:resource_name,
|
9754
9978
|
:resource_type)
|
9979
|
+
SENSITIVE = []
|
9755
9980
|
include Aws::Structure
|
9756
9981
|
end
|
9757
9982
|
|
@@ -9773,6 +9998,7 @@ module Aws::Redshift
|
|
9773
9998
|
class TaggedResourceListMessage < Struct.new(
|
9774
9999
|
:tagged_resources,
|
9775
10000
|
:marker)
|
10001
|
+
SENSITIVE = []
|
9776
10002
|
include Aws::Structure
|
9777
10003
|
end
|
9778
10004
|
|
@@ -9793,6 +10019,7 @@ module Aws::Redshift
|
|
9793
10019
|
class TrackListMessage < Struct.new(
|
9794
10020
|
:maintenance_tracks,
|
9795
10021
|
:marker)
|
10022
|
+
SENSITIVE = []
|
9796
10023
|
include Aws::Structure
|
9797
10024
|
end
|
9798
10025
|
|
@@ -9840,6 +10067,7 @@ module Aws::Redshift
|
|
9840
10067
|
:maintenance_track_name,
|
9841
10068
|
:database_version,
|
9842
10069
|
:supported_operations)
|
10070
|
+
SENSITIVE = []
|
9843
10071
|
include Aws::Structure
|
9844
10072
|
end
|
9845
10073
|
|
@@ -9899,6 +10127,7 @@ module Aws::Redshift
|
|
9899
10127
|
:period,
|
9900
10128
|
:breach_action,
|
9901
10129
|
:tags)
|
10130
|
+
SENSITIVE = []
|
9902
10131
|
include Aws::Structure
|
9903
10132
|
end
|
9904
10133
|
|
@@ -9926,6 +10155,7 @@ module Aws::Redshift
|
|
9926
10155
|
class UsageLimitList < Struct.new(
|
9927
10156
|
:usage_limits,
|
9928
10157
|
:marker)
|
10158
|
+
SENSITIVE = []
|
9929
10159
|
include Aws::Structure
|
9930
10160
|
end
|
9931
10161
|
|
@@ -9950,6 +10180,7 @@ module Aws::Redshift
|
|
9950
10180
|
class VpcSecurityGroupMembership < Struct.new(
|
9951
10181
|
:vpc_security_group_id,
|
9952
10182
|
:status)
|
10183
|
+
SENSITIVE = []
|
9953
10184
|
include Aws::Structure
|
9954
10185
|
end
|
9955
10186
|
|