aws-sdk-redshift 1.40.0 → 1.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-redshift.rb +3 -1
- data/lib/aws-sdk-redshift/client.rb +277 -5
- data/lib/aws-sdk-redshift/client_api.rb +116 -0
- data/lib/aws-sdk-redshift/customizations.rb +1 -0
- data/lib/aws-sdk-redshift/errors.rb +35 -0
- data/lib/aws-sdk-redshift/resource.rb +2 -0
- data/lib/aws-sdk-redshift/types.rb +518 -1
- data/lib/aws-sdk-redshift/waiters.rb +2 -0
- metadata +4 -4
@@ -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:
|
@@ -86,6 +88,7 @@ module Aws::Redshift
|
|
86
88
|
# * {InvalidSubscriptionStateFault}
|
87
89
|
# * {InvalidTableRestoreArgumentFault}
|
88
90
|
# * {InvalidTagFault}
|
91
|
+
# * {InvalidUsageLimitFault}
|
89
92
|
# * {InvalidVPCNetworkStateFault}
|
90
93
|
# * {LimitExceededFault}
|
91
94
|
# * {NumberOfNodesPerClusterLimitExceededFault}
|
@@ -129,6 +132,8 @@ module Aws::Redshift
|
|
129
132
|
# * {UnknownSnapshotCopyRegionFault}
|
130
133
|
# * {UnsupportedOperationFault}
|
131
134
|
# * {UnsupportedOptionFault}
|
135
|
+
# * {UsageLimitAlreadyExistsFault}
|
136
|
+
# * {UsageLimitNotFoundFault}
|
132
137
|
#
|
133
138
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
134
139
|
# if they are not defined above.
|
@@ -746,6 +751,16 @@ module Aws::Redshift
|
|
746
751
|
end
|
747
752
|
end
|
748
753
|
|
754
|
+
class InvalidUsageLimitFault < ServiceError
|
755
|
+
|
756
|
+
# @param [Seahorse::Client::RequestContext] context
|
757
|
+
# @param [String] message
|
758
|
+
# @param [Aws::Redshift::Types::InvalidUsageLimitFault] data
|
759
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
760
|
+
super(context, message, data)
|
761
|
+
end
|
762
|
+
end
|
763
|
+
|
749
764
|
class InvalidVPCNetworkStateFault < ServiceError
|
750
765
|
|
751
766
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1176,5 +1191,25 @@ module Aws::Redshift
|
|
1176
1191
|
end
|
1177
1192
|
end
|
1178
1193
|
|
1194
|
+
class UsageLimitAlreadyExistsFault < ServiceError
|
1195
|
+
|
1196
|
+
# @param [Seahorse::Client::RequestContext] context
|
1197
|
+
# @param [String] message
|
1198
|
+
# @param [Aws::Redshift::Types::UsageLimitAlreadyExistsFault] data
|
1199
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1200
|
+
super(context, message, data)
|
1201
|
+
end
|
1202
|
+
end
|
1203
|
+
|
1204
|
+
class UsageLimitNotFoundFault < ServiceError
|
1205
|
+
|
1206
|
+
# @param [Seahorse::Client::RequestContext] context
|
1207
|
+
# @param [String] message
|
1208
|
+
# @param [Aws::Redshift::Types::UsageLimitNotFoundFault] data
|
1209
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1210
|
+
super(context, message, data)
|
1211
|
+
end
|
1212
|
+
end
|
1213
|
+
|
1179
1214
|
end
|
1180
1215
|
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:
|
@@ -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,75 @@ module Aws::Redshift
|
|
2725
2787
|
class CreateTagsMessage < Struct.new(
|
2726
2788
|
:resource_name,
|
2727
2789
|
:tags)
|
2790
|
+
SENSITIVE = []
|
2791
|
+
include Aws::Structure
|
2792
|
+
end
|
2793
|
+
|
2794
|
+
# @note When making an API call, you may pass CreateUsageLimitMessage
|
2795
|
+
# data as a hash:
|
2796
|
+
#
|
2797
|
+
# {
|
2798
|
+
# cluster_identifier: "String", # required
|
2799
|
+
# feature_type: "spectrum", # required, accepts spectrum, concurrency-scaling
|
2800
|
+
# limit_type: "time", # required, accepts time, data-scanned
|
2801
|
+
# amount: 1, # required
|
2802
|
+
# period: "daily", # accepts daily, weekly, monthly
|
2803
|
+
# breach_action: "log", # accepts log, emit-metric, disable
|
2804
|
+
# tags: [
|
2805
|
+
# {
|
2806
|
+
# key: "String",
|
2807
|
+
# value: "String",
|
2808
|
+
# },
|
2809
|
+
# ],
|
2810
|
+
# }
|
2811
|
+
#
|
2812
|
+
# @!attribute [rw] cluster_identifier
|
2813
|
+
# The identifier of the cluster that you want to limit usage.
|
2814
|
+
# @return [String]
|
2815
|
+
#
|
2816
|
+
# @!attribute [rw] feature_type
|
2817
|
+
# The Amazon Redshift feature that you want to limit.
|
2818
|
+
# @return [String]
|
2819
|
+
#
|
2820
|
+
# @!attribute [rw] limit_type
|
2821
|
+
# The type of limit. Depending on the feature type, this can be based
|
2822
|
+
# on a time duration or data size. If `FeatureType` is `spectrum`,
|
2823
|
+
# then `LimitType` must be `data-scanned`. If `FeatureType` is
|
2824
|
+
# `concurrency-scaling`, then `LimitType` must be `time`.
|
2825
|
+
# @return [String]
|
2826
|
+
#
|
2827
|
+
# @!attribute [rw] amount
|
2828
|
+
# The limit amount. If time-based, this amount is in minutes. If
|
2829
|
+
# data-based, this amount is in terabytes (TB). The value must be a
|
2830
|
+
# positive number.
|
2831
|
+
# @return [Integer]
|
2832
|
+
#
|
2833
|
+
# @!attribute [rw] period
|
2834
|
+
# The time period that the amount applies to. A `weekly` period begins
|
2835
|
+
# on Sunday. The default is `monthly`.
|
2836
|
+
# @return [String]
|
2837
|
+
#
|
2838
|
+
# @!attribute [rw] breach_action
|
2839
|
+
# The action that Amazon Redshift takes when the limit is reached. The
|
2840
|
+
# default is log. For more information about this parameter, see
|
2841
|
+
# UsageLimit.
|
2842
|
+
# @return [String]
|
2843
|
+
#
|
2844
|
+
# @!attribute [rw] tags
|
2845
|
+
# A list of tag instances.
|
2846
|
+
# @return [Array<Types::Tag>]
|
2847
|
+
#
|
2848
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateUsageLimitMessage AWS API Documentation
|
2849
|
+
#
|
2850
|
+
class CreateUsageLimitMessage < Struct.new(
|
2851
|
+
:cluster_identifier,
|
2852
|
+
:feature_type,
|
2853
|
+
:limit_type,
|
2854
|
+
:amount,
|
2855
|
+
:period,
|
2856
|
+
:breach_action,
|
2857
|
+
:tags)
|
2858
|
+
SENSITIVE = []
|
2728
2859
|
include Aws::Structure
|
2729
2860
|
end
|
2730
2861
|
|
@@ -2741,6 +2872,7 @@ module Aws::Redshift
|
|
2741
2872
|
class CustomerStorageMessage < Struct.new(
|
2742
2873
|
:total_backup_size_in_mega_bytes,
|
2743
2874
|
:total_provisioned_storage_in_mega_bytes)
|
2875
|
+
SENSITIVE = []
|
2744
2876
|
include Aws::Structure
|
2745
2877
|
end
|
2746
2878
|
|
@@ -2784,6 +2916,7 @@ module Aws::Redshift
|
|
2784
2916
|
:data_transferred_in_mega_bytes,
|
2785
2917
|
:estimated_time_to_completion_in_seconds,
|
2786
2918
|
:elapsed_time_in_seconds)
|
2919
|
+
SENSITIVE = []
|
2787
2920
|
include Aws::Structure
|
2788
2921
|
end
|
2789
2922
|
|
@@ -2813,6 +2946,7 @@ module Aws::Redshift
|
|
2813
2946
|
:parameter_group_family,
|
2814
2947
|
:marker,
|
2815
2948
|
:parameters)
|
2949
|
+
SENSITIVE = []
|
2816
2950
|
include Aws::Structure
|
2817
2951
|
end
|
2818
2952
|
|
@@ -2838,6 +2972,7 @@ module Aws::Redshift
|
|
2838
2972
|
:defer_maintenance_identifier,
|
2839
2973
|
:defer_maintenance_start_time,
|
2840
2974
|
:defer_maintenance_end_time)
|
2975
|
+
SENSITIVE = []
|
2841
2976
|
include Aws::Structure
|
2842
2977
|
end
|
2843
2978
|
|
@@ -2909,6 +3044,7 @@ module Aws::Redshift
|
|
2909
3044
|
:skip_final_cluster_snapshot,
|
2910
3045
|
:final_cluster_snapshot_identifier,
|
2911
3046
|
:final_cluster_snapshot_retention_period)
|
3047
|
+
SENSITIVE = []
|
2912
3048
|
include Aws::Structure
|
2913
3049
|
end
|
2914
3050
|
|
@@ -2933,6 +3069,7 @@ module Aws::Redshift
|
|
2933
3069
|
#
|
2934
3070
|
class DeleteClusterParameterGroupMessage < Struct.new(
|
2935
3071
|
:parameter_group_name)
|
3072
|
+
SENSITIVE = []
|
2936
3073
|
include Aws::Structure
|
2937
3074
|
end
|
2938
3075
|
|
@@ -2944,6 +3081,7 @@ module Aws::Redshift
|
|
2944
3081
|
#
|
2945
3082
|
class DeleteClusterResult < Struct.new(
|
2946
3083
|
:cluster)
|
3084
|
+
SENSITIVE = []
|
2947
3085
|
include Aws::Structure
|
2948
3086
|
end
|
2949
3087
|
|
@@ -2962,6 +3100,7 @@ module Aws::Redshift
|
|
2962
3100
|
#
|
2963
3101
|
class DeleteClusterSecurityGroupMessage < Struct.new(
|
2964
3102
|
:cluster_security_group_name)
|
3103
|
+
SENSITIVE = []
|
2965
3104
|
include Aws::Structure
|
2966
3105
|
end
|
2967
3106
|
|
@@ -2994,6 +3133,7 @@ module Aws::Redshift
|
|
2994
3133
|
class DeleteClusterSnapshotMessage < Struct.new(
|
2995
3134
|
:snapshot_identifier,
|
2996
3135
|
:snapshot_cluster_identifier)
|
3136
|
+
SENSITIVE = []
|
2997
3137
|
include Aws::Structure
|
2998
3138
|
end
|
2999
3139
|
|
@@ -3005,6 +3145,7 @@ module Aws::Redshift
|
|
3005
3145
|
#
|
3006
3146
|
class DeleteClusterSnapshotResult < Struct.new(
|
3007
3147
|
:snapshot)
|
3148
|
+
SENSITIVE = []
|
3008
3149
|
include Aws::Structure
|
3009
3150
|
end
|
3010
3151
|
|
@@ -3023,6 +3164,7 @@ module Aws::Redshift
|
|
3023
3164
|
#
|
3024
3165
|
class DeleteClusterSubnetGroupMessage < Struct.new(
|
3025
3166
|
:cluster_subnet_group_name)
|
3167
|
+
SENSITIVE = []
|
3026
3168
|
include Aws::Structure
|
3027
3169
|
end
|
3028
3170
|
|
@@ -3042,6 +3184,7 @@ module Aws::Redshift
|
|
3042
3184
|
#
|
3043
3185
|
class DeleteEventSubscriptionMessage < Struct.new(
|
3044
3186
|
:subscription_name)
|
3187
|
+
SENSITIVE = []
|
3045
3188
|
include Aws::Structure
|
3046
3189
|
end
|
3047
3190
|
|
@@ -3060,6 +3203,7 @@ module Aws::Redshift
|
|
3060
3203
|
#
|
3061
3204
|
class DeleteHsmClientCertificateMessage < Struct.new(
|
3062
3205
|
:hsm_client_certificate_identifier)
|
3206
|
+
SENSITIVE = []
|
3063
3207
|
include Aws::Structure
|
3064
3208
|
end
|
3065
3209
|
|
@@ -3079,6 +3223,7 @@ module Aws::Redshift
|
|
3079
3223
|
#
|
3080
3224
|
class DeleteHsmConfigurationMessage < Struct.new(
|
3081
3225
|
:hsm_configuration_identifier)
|
3226
|
+
SENSITIVE = []
|
3082
3227
|
include Aws::Structure
|
3083
3228
|
end
|
3084
3229
|
|
@@ -3097,6 +3242,7 @@ module Aws::Redshift
|
|
3097
3242
|
#
|
3098
3243
|
class DeleteScheduledActionMessage < Struct.new(
|
3099
3244
|
:scheduled_action_name)
|
3245
|
+
SENSITIVE = []
|
3100
3246
|
include Aws::Structure
|
3101
3247
|
end
|
3102
3248
|
|
@@ -3117,6 +3263,7 @@ module Aws::Redshift
|
|
3117
3263
|
#
|
3118
3264
|
class DeleteSnapshotCopyGrantMessage < Struct.new(
|
3119
3265
|
:snapshot_copy_grant_name)
|
3266
|
+
SENSITIVE = []
|
3120
3267
|
include Aws::Structure
|
3121
3268
|
end
|
3122
3269
|
|
@@ -3135,6 +3282,7 @@ module Aws::Redshift
|
|
3135
3282
|
#
|
3136
3283
|
class DeleteSnapshotScheduleMessage < Struct.new(
|
3137
3284
|
:schedule_identifier)
|
3285
|
+
SENSITIVE = []
|
3138
3286
|
include Aws::Structure
|
3139
3287
|
end
|
3140
3288
|
|
@@ -3163,6 +3311,26 @@ module Aws::Redshift
|
|
3163
3311
|
class DeleteTagsMessage < Struct.new(
|
3164
3312
|
:resource_name,
|
3165
3313
|
:tag_keys)
|
3314
|
+
SENSITIVE = []
|
3315
|
+
include Aws::Structure
|
3316
|
+
end
|
3317
|
+
|
3318
|
+
# @note When making an API call, you may pass DeleteUsageLimitMessage
|
3319
|
+
# data as a hash:
|
3320
|
+
#
|
3321
|
+
# {
|
3322
|
+
# usage_limit_id: "String", # required
|
3323
|
+
# }
|
3324
|
+
#
|
3325
|
+
# @!attribute [rw] usage_limit_id
|
3326
|
+
# The identifier of the usage limit to delete.
|
3327
|
+
# @return [String]
|
3328
|
+
#
|
3329
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteUsageLimitMessage AWS API Documentation
|
3330
|
+
#
|
3331
|
+
class DeleteUsageLimitMessage < Struct.new(
|
3332
|
+
:usage_limit_id)
|
3333
|
+
SENSITIVE = []
|
3166
3334
|
include Aws::Structure
|
3167
3335
|
end
|
3168
3336
|
|
@@ -3196,6 +3364,7 @@ module Aws::Redshift
|
|
3196
3364
|
#
|
3197
3365
|
class DescribeAccountAttributesMessage < Struct.new(
|
3198
3366
|
:attribute_names)
|
3367
|
+
SENSITIVE = []
|
3199
3368
|
include Aws::Structure
|
3200
3369
|
end
|
3201
3370
|
|
@@ -3246,6 +3415,7 @@ module Aws::Redshift
|
|
3246
3415
|
:cluster_identifier,
|
3247
3416
|
:max_records,
|
3248
3417
|
:marker)
|
3418
|
+
SENSITIVE = []
|
3249
3419
|
include Aws::Structure
|
3250
3420
|
end
|
3251
3421
|
|
@@ -3316,6 +3486,7 @@ module Aws::Redshift
|
|
3316
3486
|
:marker,
|
3317
3487
|
:tag_keys,
|
3318
3488
|
:tag_values)
|
3489
|
+
SENSITIVE = []
|
3319
3490
|
include Aws::Structure
|
3320
3491
|
end
|
3321
3492
|
|
@@ -3373,6 +3544,7 @@ module Aws::Redshift
|
|
3373
3544
|
:source,
|
3374
3545
|
:max_records,
|
3375
3546
|
:marker)
|
3547
|
+
SENSITIVE = []
|
3376
3548
|
include Aws::Structure
|
3377
3549
|
end
|
3378
3550
|
|
@@ -3448,6 +3620,7 @@ module Aws::Redshift
|
|
3448
3620
|
:marker,
|
3449
3621
|
:tag_keys,
|
3450
3622
|
:tag_values)
|
3623
|
+
SENSITIVE = []
|
3451
3624
|
include Aws::Structure
|
3452
3625
|
end
|
3453
3626
|
|
@@ -3605,6 +3778,7 @@ module Aws::Redshift
|
|
3605
3778
|
:tag_values,
|
3606
3779
|
:cluster_exists,
|
3607
3780
|
:sorting_entities)
|
3781
|
+
SENSITIVE = []
|
3608
3782
|
include Aws::Structure
|
3609
3783
|
end
|
3610
3784
|
|
@@ -3674,6 +3848,7 @@ module Aws::Redshift
|
|
3674
3848
|
:marker,
|
3675
3849
|
:tag_keys,
|
3676
3850
|
:tag_values)
|
3851
|
+
SENSITIVE = []
|
3677
3852
|
include Aws::Structure
|
3678
3853
|
end
|
3679
3854
|
|
@@ -3711,6 +3886,7 @@ module Aws::Redshift
|
|
3711
3886
|
:maintenance_track_name,
|
3712
3887
|
:max_records,
|
3713
3888
|
:marker)
|
3889
|
+
SENSITIVE = []
|
3714
3890
|
include Aws::Structure
|
3715
3891
|
end
|
3716
3892
|
|
@@ -3772,6 +3948,7 @@ module Aws::Redshift
|
|
3772
3948
|
:cluster_parameter_group_family,
|
3773
3949
|
:max_records,
|
3774
3950
|
:marker)
|
3951
|
+
SENSITIVE = []
|
3775
3952
|
include Aws::Structure
|
3776
3953
|
end
|
3777
3954
|
|
@@ -3845,6 +4022,7 @@ module Aws::Redshift
|
|
3845
4022
|
:marker,
|
3846
4023
|
:tag_keys,
|
3847
4024
|
:tag_values)
|
4025
|
+
SENSITIVE = []
|
3848
4026
|
include Aws::Structure
|
3849
4027
|
end
|
3850
4028
|
|
@@ -3889,6 +4067,7 @@ module Aws::Redshift
|
|
3889
4067
|
:parameter_group_family,
|
3890
4068
|
:max_records,
|
3891
4069
|
:marker)
|
4070
|
+
SENSITIVE = []
|
3892
4071
|
include Aws::Structure
|
3893
4072
|
end
|
3894
4073
|
|
@@ -3901,6 +4080,7 @@ module Aws::Redshift
|
|
3901
4080
|
#
|
3902
4081
|
class DescribeDefaultClusterParametersResult < Struct.new(
|
3903
4082
|
:default_cluster_parameters)
|
4083
|
+
SENSITIVE = []
|
3904
4084
|
include Aws::Structure
|
3905
4085
|
end
|
3906
4086
|
|
@@ -3923,6 +4103,7 @@ module Aws::Redshift
|
|
3923
4103
|
#
|
3924
4104
|
class DescribeEventCategoriesMessage < Struct.new(
|
3925
4105
|
:source_type)
|
4106
|
+
SENSITIVE = []
|
3926
4107
|
include Aws::Structure
|
3927
4108
|
end
|
3928
4109
|
|
@@ -3992,6 +4173,7 @@ module Aws::Redshift
|
|
3992
4173
|
:marker,
|
3993
4174
|
:tag_keys,
|
3994
4175
|
:tag_values)
|
4176
|
+
SENSITIVE = []
|
3995
4177
|
include Aws::Structure
|
3996
4178
|
end
|
3997
4179
|
|
@@ -4115,6 +4297,7 @@ module Aws::Redshift
|
|
4115
4297
|
:duration,
|
4116
4298
|
:max_records,
|
4117
4299
|
:marker)
|
4300
|
+
SENSITIVE = []
|
4118
4301
|
include Aws::Structure
|
4119
4302
|
end
|
4120
4303
|
|
@@ -4186,6 +4369,7 @@ module Aws::Redshift
|
|
4186
4369
|
:marker,
|
4187
4370
|
:tag_keys,
|
4188
4371
|
:tag_values)
|
4372
|
+
SENSITIVE = []
|
4189
4373
|
include Aws::Structure
|
4190
4374
|
end
|
4191
4375
|
|
@@ -4256,6 +4440,7 @@ module Aws::Redshift
|
|
4256
4440
|
:marker,
|
4257
4441
|
:tag_keys,
|
4258
4442
|
:tag_values)
|
4443
|
+
SENSITIVE = []
|
4259
4444
|
include Aws::Structure
|
4260
4445
|
end
|
4261
4446
|
|
@@ -4276,6 +4461,7 @@ module Aws::Redshift
|
|
4276
4461
|
#
|
4277
4462
|
class DescribeLoggingStatusMessage < Struct.new(
|
4278
4463
|
:cluster_identifier)
|
4464
|
+
SENSITIVE = []
|
4279
4465
|
include Aws::Structure
|
4280
4466
|
end
|
4281
4467
|
|
@@ -4359,6 +4545,7 @@ module Aws::Redshift
|
|
4359
4545
|
:filters,
|
4360
4546
|
:marker,
|
4361
4547
|
:max_records)
|
4548
|
+
SENSITIVE = []
|
4362
4549
|
include Aws::Structure
|
4363
4550
|
end
|
4364
4551
|
|
@@ -4416,6 +4603,7 @@ module Aws::Redshift
|
|
4416
4603
|
:node_type,
|
4417
4604
|
:max_records,
|
4418
4605
|
:marker)
|
4606
|
+
SENSITIVE = []
|
4419
4607
|
include Aws::Structure
|
4420
4608
|
end
|
4421
4609
|
|
@@ -4460,6 +4648,7 @@ module Aws::Redshift
|
|
4460
4648
|
:reserved_node_offering_id,
|
4461
4649
|
:max_records,
|
4462
4650
|
:marker)
|
4651
|
+
SENSITIVE = []
|
4463
4652
|
include Aws::Structure
|
4464
4653
|
end
|
4465
4654
|
|
@@ -4503,6 +4692,7 @@ module Aws::Redshift
|
|
4503
4692
|
:reserved_node_id,
|
4504
4693
|
:max_records,
|
4505
4694
|
:marker)
|
4695
|
+
SENSITIVE = []
|
4506
4696
|
include Aws::Structure
|
4507
4697
|
end
|
4508
4698
|
|
@@ -4525,6 +4715,7 @@ module Aws::Redshift
|
|
4525
4715
|
#
|
4526
4716
|
class DescribeResizeMessage < Struct.new(
|
4527
4717
|
:cluster_identifier)
|
4718
|
+
SENSITIVE = []
|
4528
4719
|
include Aws::Structure
|
4529
4720
|
end
|
4530
4721
|
|
@@ -4609,6 +4800,7 @@ module Aws::Redshift
|
|
4609
4800
|
:filters,
|
4610
4801
|
:marker,
|
4611
4802
|
:max_records)
|
4803
|
+
SENSITIVE = []
|
4612
4804
|
include Aws::Structure
|
4613
4805
|
end
|
4614
4806
|
|
@@ -4681,6 +4873,7 @@ module Aws::Redshift
|
|
4681
4873
|
:marker,
|
4682
4874
|
:tag_keys,
|
4683
4875
|
:tag_values)
|
4876
|
+
SENSITIVE = []
|
4684
4877
|
include Aws::Structure
|
4685
4878
|
end
|
4686
4879
|
|
@@ -4739,6 +4932,7 @@ module Aws::Redshift
|
|
4739
4932
|
:tag_values,
|
4740
4933
|
:marker,
|
4741
4934
|
:max_records)
|
4935
|
+
SENSITIVE = []
|
4742
4936
|
include Aws::Structure
|
4743
4937
|
end
|
4744
4938
|
|
@@ -4760,6 +4954,7 @@ module Aws::Redshift
|
|
4760
4954
|
class DescribeSnapshotSchedulesOutputMessage < Struct.new(
|
4761
4955
|
:snapshot_schedules,
|
4762
4956
|
:marker)
|
4957
|
+
SENSITIVE = []
|
4763
4958
|
include Aws::Structure
|
4764
4959
|
end
|
4765
4960
|
|
@@ -4805,6 +5000,7 @@ module Aws::Redshift
|
|
4805
5000
|
:table_restore_request_id,
|
4806
5001
|
:max_records,
|
4807
5002
|
:marker)
|
5003
|
+
SENSITIVE = []
|
4808
5004
|
include Aws::Structure
|
4809
5005
|
end
|
4810
5006
|
|
@@ -4905,6 +5101,88 @@ module Aws::Redshift
|
|
4905
5101
|
:marker,
|
4906
5102
|
:tag_keys,
|
4907
5103
|
:tag_values)
|
5104
|
+
SENSITIVE = []
|
5105
|
+
include Aws::Structure
|
5106
|
+
end
|
5107
|
+
|
5108
|
+
# @note When making an API call, you may pass DescribeUsageLimitsMessage
|
5109
|
+
# data as a hash:
|
5110
|
+
#
|
5111
|
+
# {
|
5112
|
+
# usage_limit_id: "String",
|
5113
|
+
# cluster_identifier: "String",
|
5114
|
+
# feature_type: "spectrum", # accepts spectrum, concurrency-scaling
|
5115
|
+
# max_records: 1,
|
5116
|
+
# marker: "String",
|
5117
|
+
# tag_keys: ["String"],
|
5118
|
+
# tag_values: ["String"],
|
5119
|
+
# }
|
5120
|
+
#
|
5121
|
+
# @!attribute [rw] usage_limit_id
|
5122
|
+
# The identifier of the usage limit to describe.
|
5123
|
+
# @return [String]
|
5124
|
+
#
|
5125
|
+
# @!attribute [rw] cluster_identifier
|
5126
|
+
# The identifier of the cluster for which you want to describe usage
|
5127
|
+
# limits.
|
5128
|
+
# @return [String]
|
5129
|
+
#
|
5130
|
+
# @!attribute [rw] feature_type
|
5131
|
+
# The feature type for which you want to describe usage limits.
|
5132
|
+
# @return [String]
|
5133
|
+
#
|
5134
|
+
# @!attribute [rw] max_records
|
5135
|
+
# The maximum number of response records to return in each call. If
|
5136
|
+
# the number of remaining response records exceeds the specified
|
5137
|
+
# `MaxRecords` value, a value is returned in a `marker` field of the
|
5138
|
+
# response. You can retrieve the next set of records by retrying the
|
5139
|
+
# command with the returned marker value.
|
5140
|
+
#
|
5141
|
+
# Default: `100`
|
5142
|
+
#
|
5143
|
+
# Constraints: minimum 20, maximum 100.
|
5144
|
+
# @return [Integer]
|
5145
|
+
#
|
5146
|
+
# @!attribute [rw] marker
|
5147
|
+
# An optional parameter that specifies the starting point to return a
|
5148
|
+
# set of response records. When the results of a DescribeUsageLimits
|
5149
|
+
# request exceed the value specified in `MaxRecords`, AWS returns a
|
5150
|
+
# value in the `Marker` field of the response. You can retrieve the
|
5151
|
+
# next set of response records by providing the returned marker value
|
5152
|
+
# in the `Marker` parameter and retrying the request.
|
5153
|
+
# @return [String]
|
5154
|
+
#
|
5155
|
+
# @!attribute [rw] tag_keys
|
5156
|
+
# A tag key or keys for which you want to return all matching usage
|
5157
|
+
# limit objects that are associated with the specified key or keys.
|
5158
|
+
# For example, suppose that you have parameter groups that are tagged
|
5159
|
+
# with keys called `owner` and `environment`. If you specify both of
|
5160
|
+
# these tag keys in the request, Amazon Redshift returns a response
|
5161
|
+
# with the usage limit objects have either or both of these tag keys
|
5162
|
+
# associated with them.
|
5163
|
+
# @return [Array<String>]
|
5164
|
+
#
|
5165
|
+
# @!attribute [rw] tag_values
|
5166
|
+
# A tag value or values for which you want to return all matching
|
5167
|
+
# usage limit objects that are associated with the specified tag value
|
5168
|
+
# or values. For example, suppose that you have parameter groups that
|
5169
|
+
# are tagged with values called `admin` and `test`. If you specify
|
5170
|
+
# both of these tag values in the request, Amazon Redshift returns a
|
5171
|
+
# response with the usage limit objects that have either or both of
|
5172
|
+
# these tag values associated with them.
|
5173
|
+
# @return [Array<String>]
|
5174
|
+
#
|
5175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeUsageLimitsMessage AWS API Documentation
|
5176
|
+
#
|
5177
|
+
class DescribeUsageLimitsMessage < Struct.new(
|
5178
|
+
:usage_limit_id,
|
5179
|
+
:cluster_identifier,
|
5180
|
+
:feature_type,
|
5181
|
+
:max_records,
|
5182
|
+
:marker,
|
5183
|
+
:tag_keys,
|
5184
|
+
:tag_values)
|
5185
|
+
SENSITIVE = []
|
4908
5186
|
include Aws::Structure
|
4909
5187
|
end
|
4910
5188
|
|
@@ -4925,6 +5203,7 @@ module Aws::Redshift
|
|
4925
5203
|
#
|
4926
5204
|
class DisableLoggingMessage < Struct.new(
|
4927
5205
|
:cluster_identifier)
|
5206
|
+
SENSITIVE = []
|
4928
5207
|
include Aws::Structure
|
4929
5208
|
end
|
4930
5209
|
|
@@ -4947,6 +5226,7 @@ module Aws::Redshift
|
|
4947
5226
|
#
|
4948
5227
|
class DisableSnapshotCopyMessage < Struct.new(
|
4949
5228
|
:cluster_identifier)
|
5229
|
+
SENSITIVE = []
|
4950
5230
|
include Aws::Structure
|
4951
5231
|
end
|
4952
5232
|
|
@@ -4958,6 +5238,7 @@ module Aws::Redshift
|
|
4958
5238
|
#
|
4959
5239
|
class DisableSnapshotCopyResult < Struct.new(
|
4960
5240
|
:cluster)
|
5241
|
+
SENSITIVE = []
|
4961
5242
|
include Aws::Structure
|
4962
5243
|
end
|
4963
5244
|
|
@@ -4987,6 +5268,7 @@ module Aws::Redshift
|
|
4987
5268
|
:ec2_security_group_name,
|
4988
5269
|
:ec2_security_group_owner_id,
|
4989
5270
|
:tags)
|
5271
|
+
SENSITIVE = []
|
4990
5272
|
include Aws::Structure
|
4991
5273
|
end
|
4992
5274
|
|
@@ -5005,6 +5287,7 @@ module Aws::Redshift
|
|
5005
5287
|
class ElasticIpStatus < Struct.new(
|
5006
5288
|
:elastic_ip,
|
5007
5289
|
:status)
|
5290
|
+
SENSITIVE = []
|
5008
5291
|
include Aws::Structure
|
5009
5292
|
end
|
5010
5293
|
|
@@ -5062,6 +5345,7 @@ module Aws::Redshift
|
|
5062
5345
|
:cluster_identifier,
|
5063
5346
|
:bucket_name,
|
5064
5347
|
:s3_key_prefix)
|
5348
|
+
SENSITIVE = []
|
5065
5349
|
include Aws::Structure
|
5066
5350
|
end
|
5067
5351
|
|
@@ -5126,6 +5410,7 @@ module Aws::Redshift
|
|
5126
5410
|
:retention_period,
|
5127
5411
|
:snapshot_copy_grant_name,
|
5128
5412
|
:manual_snapshot_retention_period)
|
5413
|
+
SENSITIVE = []
|
5129
5414
|
include Aws::Structure
|
5130
5415
|
end
|
5131
5416
|
|
@@ -5137,6 +5422,7 @@ module Aws::Redshift
|
|
5137
5422
|
#
|
5138
5423
|
class EnableSnapshotCopyResult < Struct.new(
|
5139
5424
|
:cluster)
|
5425
|
+
SENSITIVE = []
|
5140
5426
|
include Aws::Structure
|
5141
5427
|
end
|
5142
5428
|
|
@@ -5155,6 +5441,7 @@ module Aws::Redshift
|
|
5155
5441
|
class Endpoint < Struct.new(
|
5156
5442
|
:address,
|
5157
5443
|
:port)
|
5444
|
+
SENSITIVE = []
|
5158
5445
|
include Aws::Structure
|
5159
5446
|
end
|
5160
5447
|
|
@@ -5202,6 +5489,7 @@ module Aws::Redshift
|
|
5202
5489
|
:severity,
|
5203
5490
|
:date,
|
5204
5491
|
:event_id)
|
5492
|
+
SENSITIVE = []
|
5205
5493
|
include Aws::Structure
|
5206
5494
|
end
|
5207
5495
|
|
@@ -5221,6 +5509,7 @@ module Aws::Redshift
|
|
5221
5509
|
class EventCategoriesMap < Struct.new(
|
5222
5510
|
:source_type,
|
5223
5511
|
:events)
|
5512
|
+
SENSITIVE = []
|
5224
5513
|
include Aws::Structure
|
5225
5514
|
end
|
5226
5515
|
|
@@ -5232,6 +5521,7 @@ module Aws::Redshift
|
|
5232
5521
|
#
|
5233
5522
|
class EventCategoriesMessage < Struct.new(
|
5234
5523
|
:event_categories_map_list)
|
5524
|
+
SENSITIVE = []
|
5235
5525
|
include Aws::Structure
|
5236
5526
|
end
|
5237
5527
|
|
@@ -5262,6 +5552,7 @@ module Aws::Redshift
|
|
5262
5552
|
:event_categories,
|
5263
5553
|
:event_description,
|
5264
5554
|
:severity)
|
5555
|
+
SENSITIVE = []
|
5265
5556
|
include Aws::Structure
|
5266
5557
|
end
|
5267
5558
|
|
@@ -5349,6 +5640,7 @@ module Aws::Redshift
|
|
5349
5640
|
:severity,
|
5350
5641
|
:enabled,
|
5351
5642
|
:tags)
|
5643
|
+
SENSITIVE = []
|
5352
5644
|
include Aws::Structure
|
5353
5645
|
end
|
5354
5646
|
|
@@ -5383,6 +5675,7 @@ module Aws::Redshift
|
|
5383
5675
|
class EventSubscriptionsMessage < Struct.new(
|
5384
5676
|
:marker,
|
5385
5677
|
:event_subscriptions_list)
|
5678
|
+
SENSITIVE = []
|
5386
5679
|
include Aws::Structure
|
5387
5680
|
end
|
5388
5681
|
|
@@ -5404,6 +5697,7 @@ module Aws::Redshift
|
|
5404
5697
|
class EventsMessage < Struct.new(
|
5405
5698
|
:marker,
|
5406
5699
|
:events)
|
5700
|
+
SENSITIVE = []
|
5407
5701
|
include Aws::Structure
|
5408
5702
|
end
|
5409
5703
|
|
@@ -5535,6 +5829,7 @@ module Aws::Redshift
|
|
5535
5829
|
:duration_seconds,
|
5536
5830
|
:auto_create,
|
5537
5831
|
:db_groups)
|
5832
|
+
SENSITIVE = []
|
5538
5833
|
include Aws::Structure
|
5539
5834
|
end
|
5540
5835
|
|
@@ -5568,6 +5863,7 @@ module Aws::Redshift
|
|
5568
5863
|
:reserved_node_id,
|
5569
5864
|
:max_records,
|
5570
5865
|
:marker)
|
5866
|
+
SENSITIVE = []
|
5571
5867
|
include Aws::Structure
|
5572
5868
|
end
|
5573
5869
|
|
@@ -5590,6 +5886,7 @@ module Aws::Redshift
|
|
5590
5886
|
class GetReservedNodeExchangeOfferingsOutputMessage < Struct.new(
|
5591
5887
|
:marker,
|
5592
5888
|
:reserved_node_offerings)
|
5889
|
+
SENSITIVE = []
|
5593
5890
|
include Aws::Structure
|
5594
5891
|
end
|
5595
5892
|
|
@@ -5616,6 +5913,7 @@ module Aws::Redshift
|
|
5616
5913
|
:hsm_client_certificate_identifier,
|
5617
5914
|
:hsm_client_certificate_public_key,
|
5618
5915
|
:tags)
|
5916
|
+
SENSITIVE = []
|
5619
5917
|
include Aws::Structure
|
5620
5918
|
end
|
5621
5919
|
|
@@ -5646,6 +5944,7 @@ module Aws::Redshift
|
|
5646
5944
|
class HsmClientCertificateMessage < Struct.new(
|
5647
5945
|
:marker,
|
5648
5946
|
:hsm_client_certificates)
|
5947
|
+
SENSITIVE = []
|
5649
5948
|
include Aws::Structure
|
5650
5949
|
end
|
5651
5950
|
|
@@ -5703,6 +6002,7 @@ module Aws::Redshift
|
|
5703
6002
|
:hsm_ip_address,
|
5704
6003
|
:hsm_partition_name,
|
5705
6004
|
:tags)
|
6005
|
+
SENSITIVE = []
|
5706
6006
|
include Aws::Structure
|
5707
6007
|
end
|
5708
6008
|
|
@@ -5731,6 +6031,7 @@ module Aws::Redshift
|
|
5731
6031
|
class HsmConfigurationMessage < Struct.new(
|
5732
6032
|
:marker,
|
5733
6033
|
:hsm_configurations)
|
6034
|
+
SENSITIVE = []
|
5734
6035
|
include Aws::Structure
|
5735
6036
|
end
|
5736
6037
|
|
@@ -5779,6 +6080,7 @@ module Aws::Redshift
|
|
5779
6080
|
:hsm_client_certificate_identifier,
|
5780
6081
|
:hsm_configuration_identifier,
|
5781
6082
|
:status)
|
6083
|
+
SENSITIVE = []
|
5782
6084
|
include Aws::Structure
|
5783
6085
|
end
|
5784
6086
|
|
@@ -5802,6 +6104,7 @@ module Aws::Redshift
|
|
5802
6104
|
:status,
|
5803
6105
|
:cidrip,
|
5804
6106
|
:tags)
|
6107
|
+
SENSITIVE = []
|
5805
6108
|
include Aws::Structure
|
5806
6109
|
end
|
5807
6110
|
|
@@ -5992,6 +6295,12 @@ module Aws::Redshift
|
|
5992
6295
|
#
|
5993
6296
|
class InvalidTagFault < Aws::EmptyStructure; end
|
5994
6297
|
|
6298
|
+
# The usage limit is not valid.
|
6299
|
+
#
|
6300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InvalidUsageLimitFault AWS API Documentation
|
6301
|
+
#
|
6302
|
+
class InvalidUsageLimitFault < Aws::EmptyStructure; end
|
6303
|
+
|
5995
6304
|
# The cluster subnet group does not cover all Availability Zones.
|
5996
6305
|
#
|
5997
6306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InvalidVPCNetworkStateFault AWS API Documentation
|
@@ -6039,6 +6348,7 @@ module Aws::Redshift
|
|
6039
6348
|
:last_successful_delivery_time,
|
6040
6349
|
:last_failure_time,
|
6041
6350
|
:last_failure_message)
|
6351
|
+
SENSITIVE = []
|
6042
6352
|
include Aws::Structure
|
6043
6353
|
end
|
6044
6354
|
|
@@ -6069,6 +6379,7 @@ module Aws::Redshift
|
|
6069
6379
|
:maintenance_track_name,
|
6070
6380
|
:database_version,
|
6071
6381
|
:update_targets)
|
6382
|
+
SENSITIVE = []
|
6072
6383
|
include Aws::Structure
|
6073
6384
|
end
|
6074
6385
|
|
@@ -6097,6 +6408,7 @@ module Aws::Redshift
|
|
6097
6408
|
class ModifyClusterDbRevisionMessage < Struct.new(
|
6098
6409
|
:cluster_identifier,
|
6099
6410
|
:revision_target)
|
6411
|
+
SENSITIVE = []
|
6100
6412
|
include Aws::Structure
|
6101
6413
|
end
|
6102
6414
|
|
@@ -6108,6 +6420,7 @@ module Aws::Redshift
|
|
6108
6420
|
#
|
6109
6421
|
class ModifyClusterDbRevisionResult < Struct.new(
|
6110
6422
|
:cluster)
|
6423
|
+
SENSITIVE = []
|
6111
6424
|
include Aws::Structure
|
6112
6425
|
end
|
6113
6426
|
|
@@ -6143,6 +6456,7 @@ module Aws::Redshift
|
|
6143
6456
|
:cluster_identifier,
|
6144
6457
|
:add_iam_roles,
|
6145
6458
|
:remove_iam_roles)
|
6459
|
+
SENSITIVE = []
|
6146
6460
|
include Aws::Structure
|
6147
6461
|
end
|
6148
6462
|
|
@@ -6154,6 +6468,7 @@ module Aws::Redshift
|
|
6154
6468
|
#
|
6155
6469
|
class ModifyClusterIamRolesResult < Struct.new(
|
6156
6470
|
:cluster)
|
6471
|
+
SENSITIVE = []
|
6157
6472
|
include Aws::Structure
|
6158
6473
|
end
|
6159
6474
|
|
@@ -6207,6 +6522,7 @@ module Aws::Redshift
|
|
6207
6522
|
:defer_maintenance_start_time,
|
6208
6523
|
:defer_maintenance_end_time,
|
6209
6524
|
:defer_maintenance_duration)
|
6525
|
+
SENSITIVE = []
|
6210
6526
|
include Aws::Structure
|
6211
6527
|
end
|
6212
6528
|
|
@@ -6218,6 +6534,7 @@ module Aws::Redshift
|
|
6218
6534
|
#
|
6219
6535
|
class ModifyClusterMaintenanceResult < Struct.new(
|
6220
6536
|
:cluster)
|
6537
|
+
SENSITIVE = []
|
6221
6538
|
include Aws::Structure
|
6222
6539
|
end
|
6223
6540
|
|
@@ -6548,6 +6865,7 @@ module Aws::Redshift
|
|
6548
6865
|
:maintenance_track_name,
|
6549
6866
|
:encrypted,
|
6550
6867
|
:kms_key_id)
|
6868
|
+
SENSITIVE = []
|
6551
6869
|
include Aws::Structure
|
6552
6870
|
end
|
6553
6871
|
|
@@ -6592,6 +6910,7 @@ module Aws::Redshift
|
|
6592
6910
|
class ModifyClusterParameterGroupMessage < Struct.new(
|
6593
6911
|
:parameter_group_name,
|
6594
6912
|
:parameters)
|
6913
|
+
SENSITIVE = []
|
6595
6914
|
include Aws::Structure
|
6596
6915
|
end
|
6597
6916
|
|
@@ -6603,6 +6922,7 @@ module Aws::Redshift
|
|
6603
6922
|
#
|
6604
6923
|
class ModifyClusterResult < Struct.new(
|
6605
6924
|
:cluster)
|
6925
|
+
SENSITIVE = []
|
6606
6926
|
include Aws::Structure
|
6607
6927
|
end
|
6608
6928
|
|
@@ -6640,6 +6960,7 @@ module Aws::Redshift
|
|
6640
6960
|
:snapshot_identifier,
|
6641
6961
|
:manual_snapshot_retention_period,
|
6642
6962
|
:force)
|
6963
|
+
SENSITIVE = []
|
6643
6964
|
include Aws::Structure
|
6644
6965
|
end
|
6645
6966
|
|
@@ -6651,6 +6972,7 @@ module Aws::Redshift
|
|
6651
6972
|
#
|
6652
6973
|
class ModifyClusterSnapshotResult < Struct.new(
|
6653
6974
|
:snapshot)
|
6975
|
+
SENSITIVE = []
|
6654
6976
|
include Aws::Structure
|
6655
6977
|
end
|
6656
6978
|
|
@@ -6684,6 +7006,7 @@ module Aws::Redshift
|
|
6684
7006
|
:cluster_identifier,
|
6685
7007
|
:schedule_identifier,
|
6686
7008
|
:disassociate_schedule)
|
7009
|
+
SENSITIVE = []
|
6687
7010
|
include Aws::Structure
|
6688
7011
|
end
|
6689
7012
|
|
@@ -6715,6 +7038,7 @@ module Aws::Redshift
|
|
6715
7038
|
:cluster_subnet_group_name,
|
6716
7039
|
:description,
|
6717
7040
|
:subnet_ids)
|
7041
|
+
SENSITIVE = []
|
6718
7042
|
include Aws::Structure
|
6719
7043
|
end
|
6720
7044
|
|
@@ -6726,6 +7050,7 @@ module Aws::Redshift
|
|
6726
7050
|
#
|
6727
7051
|
class ModifyClusterSubnetGroupResult < Struct.new(
|
6728
7052
|
:cluster_subnet_group)
|
7053
|
+
SENSITIVE = []
|
6729
7054
|
include Aws::Structure
|
6730
7055
|
end
|
6731
7056
|
|
@@ -6806,6 +7131,7 @@ module Aws::Redshift
|
|
6806
7131
|
:event_categories,
|
6807
7132
|
:severity,
|
6808
7133
|
:enabled)
|
7134
|
+
SENSITIVE = []
|
6809
7135
|
include Aws::Structure
|
6810
7136
|
end
|
6811
7137
|
|
@@ -6817,6 +7143,7 @@ module Aws::Redshift
|
|
6817
7143
|
#
|
6818
7144
|
class ModifyEventSubscriptionResult < Struct.new(
|
6819
7145
|
:event_subscription)
|
7146
|
+
SENSITIVE = []
|
6820
7147
|
include Aws::Structure
|
6821
7148
|
end
|
6822
7149
|
|
@@ -6898,6 +7225,7 @@ module Aws::Redshift
|
|
6898
7225
|
:start_time,
|
6899
7226
|
:end_time,
|
6900
7227
|
:enable)
|
7228
|
+
SENSITIVE = []
|
6901
7229
|
include Aws::Structure
|
6902
7230
|
end
|
6903
7231
|
|
@@ -6955,6 +7283,7 @@ module Aws::Redshift
|
|
6955
7283
|
:cluster_identifier,
|
6956
7284
|
:retention_period,
|
6957
7285
|
:manual)
|
7286
|
+
SENSITIVE = []
|
6958
7287
|
include Aws::Structure
|
6959
7288
|
end
|
6960
7289
|
|
@@ -6966,6 +7295,7 @@ module Aws::Redshift
|
|
6966
7295
|
#
|
6967
7296
|
class ModifySnapshotCopyRetentionPeriodResult < Struct.new(
|
6968
7297
|
:cluster)
|
7298
|
+
SENSITIVE = []
|
6969
7299
|
include Aws::Structure
|
6970
7300
|
end
|
6971
7301
|
|
@@ -6992,6 +7322,40 @@ module Aws::Redshift
|
|
6992
7322
|
class ModifySnapshotScheduleMessage < Struct.new(
|
6993
7323
|
:schedule_identifier,
|
6994
7324
|
:schedule_definitions)
|
7325
|
+
SENSITIVE = []
|
7326
|
+
include Aws::Structure
|
7327
|
+
end
|
7328
|
+
|
7329
|
+
# @note When making an API call, you may pass ModifyUsageLimitMessage
|
7330
|
+
# data as a hash:
|
7331
|
+
#
|
7332
|
+
# {
|
7333
|
+
# usage_limit_id: "String", # required
|
7334
|
+
# amount: 1,
|
7335
|
+
# breach_action: "log", # accepts log, emit-metric, disable
|
7336
|
+
# }
|
7337
|
+
#
|
7338
|
+
# @!attribute [rw] usage_limit_id
|
7339
|
+
# The identifier of the usage limit to modify.
|
7340
|
+
# @return [String]
|
7341
|
+
#
|
7342
|
+
# @!attribute [rw] amount
|
7343
|
+
# The new limit amount. For more information about this parameter, see
|
7344
|
+
# UsageLimit.
|
7345
|
+
# @return [Integer]
|
7346
|
+
#
|
7347
|
+
# @!attribute [rw] breach_action
|
7348
|
+
# The new action that Amazon Redshift takes when the limit is reached.
|
7349
|
+
# For more information about this parameter, see UsageLimit.
|
7350
|
+
# @return [String]
|
7351
|
+
#
|
7352
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyUsageLimitMessage AWS API Documentation
|
7353
|
+
#
|
7354
|
+
class ModifyUsageLimitMessage < Struct.new(
|
7355
|
+
:usage_limit_id,
|
7356
|
+
:amount,
|
7357
|
+
:breach_action)
|
7358
|
+
SENSITIVE = []
|
6995
7359
|
include Aws::Structure
|
6996
7360
|
end
|
6997
7361
|
|
@@ -7020,6 +7384,7 @@ module Aws::Redshift
|
|
7020
7384
|
:number_of_nodes,
|
7021
7385
|
:estimated_disk_utilization_percent,
|
7022
7386
|
:mode)
|
7387
|
+
SENSITIVE = []
|
7023
7388
|
include Aws::Structure
|
7024
7389
|
end
|
7025
7390
|
|
@@ -7059,6 +7424,7 @@ module Aws::Redshift
|
|
7059
7424
|
:name,
|
7060
7425
|
:operator,
|
7061
7426
|
:values)
|
7427
|
+
SENSITIVE = []
|
7062
7428
|
include Aws::Structure
|
7063
7429
|
end
|
7064
7430
|
|
@@ -7080,6 +7446,7 @@ module Aws::Redshift
|
|
7080
7446
|
class NodeConfigurationOptionsMessage < Struct.new(
|
7081
7447
|
:node_configuration_option_list,
|
7082
7448
|
:marker)
|
7449
|
+
SENSITIVE = []
|
7083
7450
|
include Aws::Structure
|
7084
7451
|
end
|
7085
7452
|
|
@@ -7126,6 +7493,7 @@ module Aws::Redshift
|
|
7126
7493
|
:cluster_type,
|
7127
7494
|
:node_type,
|
7128
7495
|
:availability_zones)
|
7496
|
+
SENSITIVE = []
|
7129
7497
|
include Aws::Structure
|
7130
7498
|
end
|
7131
7499
|
|
@@ -7150,6 +7518,7 @@ module Aws::Redshift
|
|
7150
7518
|
class OrderableClusterOptionsMessage < Struct.new(
|
7151
7519
|
:orderable_cluster_options,
|
7152
7520
|
:marker)
|
7521
|
+
SENSITIVE = []
|
7153
7522
|
include Aws::Structure
|
7154
7523
|
end
|
7155
7524
|
|
@@ -7230,6 +7599,7 @@ module Aws::Redshift
|
|
7230
7599
|
:apply_type,
|
7231
7600
|
:is_modifiable,
|
7232
7601
|
:minimum_engine_version)
|
7602
|
+
SENSITIVE = []
|
7233
7603
|
include Aws::Structure
|
7234
7604
|
end
|
7235
7605
|
|
@@ -7248,6 +7618,7 @@ module Aws::Redshift
|
|
7248
7618
|
#
|
7249
7619
|
class PauseClusterMessage < Struct.new(
|
7250
7620
|
:cluster_identifier)
|
7621
|
+
SENSITIVE = []
|
7251
7622
|
include Aws::Structure
|
7252
7623
|
end
|
7253
7624
|
|
@@ -7259,6 +7630,7 @@ module Aws::Redshift
|
|
7259
7630
|
#
|
7260
7631
|
class PauseClusterResult < Struct.new(
|
7261
7632
|
:cluster)
|
7633
|
+
SENSITIVE = []
|
7262
7634
|
include Aws::Structure
|
7263
7635
|
end
|
7264
7636
|
|
@@ -7343,6 +7715,7 @@ module Aws::Redshift
|
|
7343
7715
|
:enhanced_vpc_routing,
|
7344
7716
|
:maintenance_track_name,
|
7345
7717
|
:encryption_type)
|
7718
|
+
SENSITIVE = []
|
7346
7719
|
include Aws::Structure
|
7347
7720
|
end
|
7348
7721
|
|
@@ -7370,6 +7743,7 @@ module Aws::Redshift
|
|
7370
7743
|
class PurchaseReservedNodeOfferingMessage < Struct.new(
|
7371
7744
|
:reserved_node_offering_id,
|
7372
7745
|
:node_count)
|
7746
|
+
SENSITIVE = []
|
7373
7747
|
include Aws::Structure
|
7374
7748
|
end
|
7375
7749
|
|
@@ -7383,6 +7757,7 @@ module Aws::Redshift
|
|
7383
7757
|
#
|
7384
7758
|
class PurchaseReservedNodeOfferingResult < Struct.new(
|
7385
7759
|
:reserved_node)
|
7760
|
+
SENSITIVE = []
|
7386
7761
|
include Aws::Structure
|
7387
7762
|
end
|
7388
7763
|
|
@@ -7401,6 +7776,7 @@ module Aws::Redshift
|
|
7401
7776
|
#
|
7402
7777
|
class RebootClusterMessage < Struct.new(
|
7403
7778
|
:cluster_identifier)
|
7779
|
+
SENSITIVE = []
|
7404
7780
|
include Aws::Structure
|
7405
7781
|
end
|
7406
7782
|
|
@@ -7412,6 +7788,7 @@ module Aws::Redshift
|
|
7412
7788
|
#
|
7413
7789
|
class RebootClusterResult < Struct.new(
|
7414
7790
|
:cluster)
|
7791
|
+
SENSITIVE = []
|
7415
7792
|
include Aws::Structure
|
7416
7793
|
end
|
7417
7794
|
|
@@ -7431,6 +7808,7 @@ module Aws::Redshift
|
|
7431
7808
|
class RecurringCharge < Struct.new(
|
7432
7809
|
:recurring_charge_amount,
|
7433
7810
|
:recurring_charge_frequency)
|
7811
|
+
SENSITIVE = []
|
7434
7812
|
include Aws::Structure
|
7435
7813
|
end
|
7436
7814
|
|
@@ -7523,6 +7901,7 @@ module Aws::Redshift
|
|
7523
7901
|
:offering_type,
|
7524
7902
|
:recurring_charges,
|
7525
7903
|
:reserved_node_offering_type)
|
7904
|
+
SENSITIVE = []
|
7526
7905
|
include Aws::Structure
|
7527
7906
|
end
|
7528
7907
|
|
@@ -7599,6 +7978,7 @@ module Aws::Redshift
|
|
7599
7978
|
:offering_type,
|
7600
7979
|
:recurring_charges,
|
7601
7980
|
:reserved_node_offering_type)
|
7981
|
+
SENSITIVE = []
|
7602
7982
|
include Aws::Structure
|
7603
7983
|
end
|
7604
7984
|
|
@@ -7626,6 +8006,7 @@ module Aws::Redshift
|
|
7626
8006
|
class ReservedNodeOfferingsMessage < Struct.new(
|
7627
8007
|
:marker,
|
7628
8008
|
:reserved_node_offerings)
|
8009
|
+
SENSITIVE = []
|
7629
8010
|
include Aws::Structure
|
7630
8011
|
end
|
7631
8012
|
|
@@ -7659,6 +8040,7 @@ module Aws::Redshift
|
|
7659
8040
|
class ReservedNodesMessage < Struct.new(
|
7660
8041
|
:marker,
|
7661
8042
|
:reserved_nodes)
|
8043
|
+
SENSITIVE = []
|
7662
8044
|
include Aws::Structure
|
7663
8045
|
end
|
7664
8046
|
|
@@ -7709,6 +8091,7 @@ module Aws::Redshift
|
|
7709
8091
|
:parameter_group_name,
|
7710
8092
|
:reset_all_parameters,
|
7711
8093
|
:parameters)
|
8094
|
+
SENSITIVE = []
|
7712
8095
|
include Aws::Structure
|
7713
8096
|
end
|
7714
8097
|
|
@@ -7754,6 +8137,7 @@ module Aws::Redshift
|
|
7754
8137
|
:node_type,
|
7755
8138
|
:number_of_nodes,
|
7756
8139
|
:classic)
|
8140
|
+
SENSITIVE = []
|
7757
8141
|
include Aws::Structure
|
7758
8142
|
end
|
7759
8143
|
|
@@ -7765,6 +8149,7 @@ module Aws::Redshift
|
|
7765
8149
|
#
|
7766
8150
|
class ResizeClusterResult < Struct.new(
|
7767
8151
|
:cluster)
|
8152
|
+
SENSITIVE = []
|
7768
8153
|
include Aws::Structure
|
7769
8154
|
end
|
7770
8155
|
|
@@ -7783,6 +8168,7 @@ module Aws::Redshift
|
|
7783
8168
|
class ResizeInfo < Struct.new(
|
7784
8169
|
:resize_type,
|
7785
8170
|
:allow_cancel_resize)
|
8171
|
+
SENSITIVE = []
|
7786
8172
|
include Aws::Structure
|
7787
8173
|
end
|
7788
8174
|
|
@@ -7910,6 +8296,7 @@ module Aws::Redshift
|
|
7910
8296
|
:message,
|
7911
8297
|
:target_encryption_type,
|
7912
8298
|
:data_transfer_progress_percent)
|
8299
|
+
SENSITIVE = []
|
7913
8300
|
include Aws::Structure
|
7914
8301
|
end
|
7915
8302
|
|
@@ -8135,7 +8522,7 @@ module Aws::Redshift
|
|
8135
8522
|
# size. In other words, you can only restore a dc1.large instance type
|
8136
8523
|
# into another dc1.large instance type or dc2.large instance type. You
|
8137
8524
|
# can't restore dc1.8xlarge to dc2.8xlarge. First restore to a
|
8138
|
-
# dc1.
|
8525
|
+
# dc1.8xlarge cluster, then resize to a dc2.8large cluster. For more
|
8139
8526
|
# information about node types, see [ About Clusters and Nodes][1] in
|
8140
8527
|
# the *Amazon Redshift Cluster Management Guide*.
|
8141
8528
|
#
|
@@ -8222,6 +8609,7 @@ module Aws::Redshift
|
|
8222
8609
|
:maintenance_track_name,
|
8223
8610
|
:snapshot_schedule_identifier,
|
8224
8611
|
:number_of_nodes)
|
8612
|
+
SENSITIVE = []
|
8225
8613
|
include Aws::Structure
|
8226
8614
|
end
|
8227
8615
|
|
@@ -8233,6 +8621,7 @@ module Aws::Redshift
|
|
8233
8621
|
#
|
8234
8622
|
class RestoreFromClusterSnapshotResult < Struct.new(
|
8235
8623
|
:cluster)
|
8624
|
+
SENSITIVE = []
|
8236
8625
|
include Aws::Structure
|
8237
8626
|
end
|
8238
8627
|
|
@@ -8283,6 +8672,7 @@ module Aws::Redshift
|
|
8283
8672
|
:progress_in_mega_bytes,
|
8284
8673
|
:elapsed_time_in_seconds,
|
8285
8674
|
:estimated_time_to_completion_in_seconds)
|
8675
|
+
SENSITIVE = []
|
8286
8676
|
include Aws::Structure
|
8287
8677
|
end
|
8288
8678
|
|
@@ -8349,6 +8739,7 @@ module Aws::Redshift
|
|
8349
8739
|
:target_database_name,
|
8350
8740
|
:target_schema_name,
|
8351
8741
|
:new_table_name)
|
8742
|
+
SENSITIVE = []
|
8352
8743
|
include Aws::Structure
|
8353
8744
|
end
|
8354
8745
|
|
@@ -8360,6 +8751,7 @@ module Aws::Redshift
|
|
8360
8751
|
#
|
8361
8752
|
class RestoreTableFromClusterSnapshotResult < Struct.new(
|
8362
8753
|
:table_restore_status)
|
8754
|
+
SENSITIVE = []
|
8363
8755
|
include Aws::Structure
|
8364
8756
|
end
|
8365
8757
|
|
@@ -8378,6 +8770,7 @@ module Aws::Redshift
|
|
8378
8770
|
#
|
8379
8771
|
class ResumeClusterMessage < Struct.new(
|
8380
8772
|
:cluster_identifier)
|
8773
|
+
SENSITIVE = []
|
8381
8774
|
include Aws::Structure
|
8382
8775
|
end
|
8383
8776
|
|
@@ -8389,6 +8782,7 @@ module Aws::Redshift
|
|
8389
8782
|
#
|
8390
8783
|
class ResumeClusterResult < Struct.new(
|
8391
8784
|
:cluster)
|
8785
|
+
SENSITIVE = []
|
8392
8786
|
include Aws::Structure
|
8393
8787
|
end
|
8394
8788
|
|
@@ -8415,6 +8809,7 @@ module Aws::Redshift
|
|
8415
8809
|
:database_revision,
|
8416
8810
|
:description,
|
8417
8811
|
:database_revision_release_date)
|
8812
|
+
SENSITIVE = []
|
8418
8813
|
include Aws::Structure
|
8419
8814
|
end
|
8420
8815
|
|
@@ -8463,6 +8858,7 @@ module Aws::Redshift
|
|
8463
8858
|
:cidrip,
|
8464
8859
|
:ec2_security_group_name,
|
8465
8860
|
:ec2_security_group_owner_id)
|
8861
|
+
SENSITIVE = []
|
8466
8862
|
include Aws::Structure
|
8467
8863
|
end
|
8468
8864
|
|
@@ -8474,6 +8870,7 @@ module Aws::Redshift
|
|
8474
8870
|
#
|
8475
8871
|
class RevokeClusterSecurityGroupIngressResult < Struct.new(
|
8476
8872
|
:cluster_security_group)
|
8873
|
+
SENSITIVE = []
|
8477
8874
|
include Aws::Structure
|
8478
8875
|
end
|
8479
8876
|
|
@@ -8509,6 +8906,7 @@ module Aws::Redshift
|
|
8509
8906
|
:snapshot_identifier,
|
8510
8907
|
:snapshot_cluster_identifier,
|
8511
8908
|
:account_with_restore_access)
|
8909
|
+
SENSITIVE = []
|
8512
8910
|
include Aws::Structure
|
8513
8911
|
end
|
8514
8912
|
|
@@ -8520,6 +8918,7 @@ module Aws::Redshift
|
|
8520
8918
|
#
|
8521
8919
|
class RevokeSnapshotAccessResult < Struct.new(
|
8522
8920
|
:snapshot)
|
8921
|
+
SENSITIVE = []
|
8523
8922
|
include Aws::Structure
|
8524
8923
|
end
|
8525
8924
|
|
@@ -8542,6 +8941,7 @@ module Aws::Redshift
|
|
8542
8941
|
#
|
8543
8942
|
class RotateEncryptionKeyMessage < Struct.new(
|
8544
8943
|
:cluster_identifier)
|
8944
|
+
SENSITIVE = []
|
8545
8945
|
include Aws::Structure
|
8546
8946
|
end
|
8547
8947
|
|
@@ -8553,6 +8953,7 @@ module Aws::Redshift
|
|
8553
8953
|
#
|
8554
8954
|
class RotateEncryptionKeyResult < Struct.new(
|
8555
8955
|
:cluster)
|
8956
|
+
SENSITIVE = []
|
8556
8957
|
include Aws::Structure
|
8557
8958
|
end
|
8558
8959
|
|
@@ -8666,6 +9067,7 @@ module Aws::Redshift
|
|
8666
9067
|
:next_invocations,
|
8667
9068
|
:start_time,
|
8668
9069
|
:end_time)
|
9070
|
+
SENSITIVE = []
|
8669
9071
|
include Aws::Structure
|
8670
9072
|
end
|
8671
9073
|
|
@@ -8699,6 +9101,7 @@ module Aws::Redshift
|
|
8699
9101
|
class ScheduledActionFilter < Struct.new(
|
8700
9102
|
:name,
|
8701
9103
|
:values)
|
9104
|
+
SENSITIVE = []
|
8702
9105
|
include Aws::Structure
|
8703
9106
|
end
|
8704
9107
|
|
@@ -8754,6 +9157,7 @@ module Aws::Redshift
|
|
8754
9157
|
:resize_cluster,
|
8755
9158
|
:pause_cluster,
|
8756
9159
|
:resume_cluster)
|
9160
|
+
SENSITIVE = []
|
8757
9161
|
include Aws::Structure
|
8758
9162
|
end
|
8759
9163
|
|
@@ -8782,6 +9186,7 @@ module Aws::Redshift
|
|
8782
9186
|
class ScheduledActionsMessage < Struct.new(
|
8783
9187
|
:marker,
|
8784
9188
|
:scheduled_actions)
|
9189
|
+
SENSITIVE = []
|
8785
9190
|
include Aws::Structure
|
8786
9191
|
end
|
8787
9192
|
|
@@ -9001,6 +9406,7 @@ module Aws::Redshift
|
|
9001
9406
|
:manual_snapshot_retention_period,
|
9002
9407
|
:manual_snapshot_remaining_days,
|
9003
9408
|
:snapshot_retention_start_time)
|
9409
|
+
SENSITIVE = []
|
9004
9410
|
include Aws::Structure
|
9005
9411
|
end
|
9006
9412
|
|
@@ -9054,6 +9460,7 @@ module Aws::Redshift
|
|
9054
9460
|
:snapshot_copy_grant_name,
|
9055
9461
|
:kms_key_id,
|
9056
9462
|
:tags)
|
9463
|
+
SENSITIVE = []
|
9057
9464
|
include Aws::Structure
|
9058
9465
|
end
|
9059
9466
|
|
@@ -9086,6 +9493,7 @@ module Aws::Redshift
|
|
9086
9493
|
class SnapshotCopyGrantMessage < Struct.new(
|
9087
9494
|
:marker,
|
9088
9495
|
:snapshot_copy_grants)
|
9496
|
+
SENSITIVE = []
|
9089
9497
|
include Aws::Structure
|
9090
9498
|
end
|
9091
9499
|
|
@@ -9129,6 +9537,7 @@ module Aws::Redshift
|
|
9129
9537
|
:snapshot_cluster_identifier,
|
9130
9538
|
:failure_code,
|
9131
9539
|
:failure_reason)
|
9540
|
+
SENSITIVE = []
|
9132
9541
|
include Aws::Structure
|
9133
9542
|
end
|
9134
9543
|
|
@@ -9152,6 +9561,7 @@ module Aws::Redshift
|
|
9152
9561
|
class SnapshotMessage < Struct.new(
|
9153
9562
|
:marker,
|
9154
9563
|
:snapshots)
|
9564
|
+
SENSITIVE = []
|
9155
9565
|
include Aws::Structure
|
9156
9566
|
end
|
9157
9567
|
|
@@ -9197,6 +9607,7 @@ module Aws::Redshift
|
|
9197
9607
|
:next_invocations,
|
9198
9608
|
:associated_cluster_count,
|
9199
9609
|
:associated_clusters)
|
9610
|
+
SENSITIVE = []
|
9200
9611
|
include Aws::Structure
|
9201
9612
|
end
|
9202
9613
|
|
@@ -9247,6 +9658,7 @@ module Aws::Redshift
|
|
9247
9658
|
class SnapshotSortingEntity < Struct.new(
|
9248
9659
|
:attribute,
|
9249
9660
|
:sort_order)
|
9661
|
+
SENSITIVE = []
|
9250
9662
|
include Aws::Structure
|
9251
9663
|
end
|
9252
9664
|
|
@@ -9275,6 +9687,7 @@ module Aws::Redshift
|
|
9275
9687
|
:subnet_identifier,
|
9276
9688
|
:subnet_availability_zone,
|
9277
9689
|
:subnet_status)
|
9690
|
+
SENSITIVE = []
|
9278
9691
|
include Aws::Structure
|
9279
9692
|
end
|
9280
9693
|
|
@@ -9331,6 +9744,7 @@ module Aws::Redshift
|
|
9331
9744
|
#
|
9332
9745
|
class SupportedOperation < Struct.new(
|
9333
9746
|
:operation_name)
|
9747
|
+
SENSITIVE = []
|
9334
9748
|
include Aws::Structure
|
9335
9749
|
end
|
9336
9750
|
|
@@ -9343,6 +9757,7 @@ module Aws::Redshift
|
|
9343
9757
|
#
|
9344
9758
|
class SupportedPlatform < Struct.new(
|
9345
9759
|
:name)
|
9760
|
+
SENSITIVE = []
|
9346
9761
|
include Aws::Structure
|
9347
9762
|
end
|
9348
9763
|
|
@@ -9448,6 +9863,7 @@ module Aws::Redshift
|
|
9448
9863
|
:target_database_name,
|
9449
9864
|
:target_schema_name,
|
9450
9865
|
:new_table_name)
|
9866
|
+
SENSITIVE = []
|
9451
9867
|
include Aws::Structure
|
9452
9868
|
end
|
9453
9869
|
|
@@ -9465,6 +9881,7 @@ module Aws::Redshift
|
|
9465
9881
|
class TableRestoreStatusMessage < Struct.new(
|
9466
9882
|
:table_restore_status_details,
|
9467
9883
|
:marker)
|
9884
|
+
SENSITIVE = []
|
9468
9885
|
include Aws::Structure
|
9469
9886
|
end
|
9470
9887
|
|
@@ -9491,6 +9908,7 @@ module Aws::Redshift
|
|
9491
9908
|
class Tag < Struct.new(
|
9492
9909
|
:key,
|
9493
9910
|
:value)
|
9911
|
+
SENSITIVE = []
|
9494
9912
|
include Aws::Structure
|
9495
9913
|
end
|
9496
9914
|
|
@@ -9549,6 +9967,7 @@ module Aws::Redshift
|
|
9549
9967
|
:tag,
|
9550
9968
|
:resource_name,
|
9551
9969
|
:resource_type)
|
9970
|
+
SENSITIVE = []
|
9552
9971
|
include Aws::Structure
|
9553
9972
|
end
|
9554
9973
|
|
@@ -9570,6 +9989,7 @@ module Aws::Redshift
|
|
9570
9989
|
class TaggedResourceListMessage < Struct.new(
|
9571
9990
|
:tagged_resources,
|
9572
9991
|
:marker)
|
9992
|
+
SENSITIVE = []
|
9573
9993
|
include Aws::Structure
|
9574
9994
|
end
|
9575
9995
|
|
@@ -9590,6 +10010,7 @@ module Aws::Redshift
|
|
9590
10010
|
class TrackListMessage < Struct.new(
|
9591
10011
|
:maintenance_tracks,
|
9592
10012
|
:marker)
|
10013
|
+
SENSITIVE = []
|
9593
10014
|
include Aws::Structure
|
9594
10015
|
end
|
9595
10016
|
|
@@ -9637,9 +10058,104 @@ module Aws::Redshift
|
|
9637
10058
|
:maintenance_track_name,
|
9638
10059
|
:database_version,
|
9639
10060
|
:supported_operations)
|
10061
|
+
SENSITIVE = []
|
9640
10062
|
include Aws::Structure
|
9641
10063
|
end
|
9642
10064
|
|
10065
|
+
# Describes a usage limit object for a cluster.
|
10066
|
+
#
|
10067
|
+
# @!attribute [rw] usage_limit_id
|
10068
|
+
# The identifier of the usage limit.
|
10069
|
+
# @return [String]
|
10070
|
+
#
|
10071
|
+
# @!attribute [rw] cluster_identifier
|
10072
|
+
# The identifier of the cluster with a usage limit.
|
10073
|
+
# @return [String]
|
10074
|
+
#
|
10075
|
+
# @!attribute [rw] feature_type
|
10076
|
+
# The Amazon Redshift feature to which the limit applies.
|
10077
|
+
# @return [String]
|
10078
|
+
#
|
10079
|
+
# @!attribute [rw] limit_type
|
10080
|
+
# The type of limit. Depending on the feature type, this can be based
|
10081
|
+
# on a time duration or data size.
|
10082
|
+
# @return [String]
|
10083
|
+
#
|
10084
|
+
# @!attribute [rw] amount
|
10085
|
+
# The limit amount. If time-based, this amount is in minutes. If
|
10086
|
+
# data-based, this amount is in terabytes (TB).
|
10087
|
+
# @return [Integer]
|
10088
|
+
#
|
10089
|
+
# @!attribute [rw] period
|
10090
|
+
# The time period that the amount applies to. A `weekly` period begins
|
10091
|
+
# on Sunday. The default is `monthly`.
|
10092
|
+
# @return [String]
|
10093
|
+
#
|
10094
|
+
# @!attribute [rw] breach_action
|
10095
|
+
# The action that Amazon Redshift takes when the limit is reached.
|
10096
|
+
# Possible values are:
|
10097
|
+
#
|
10098
|
+
# * **log** - To log an event in a system table. The default is log.
|
10099
|
+
#
|
10100
|
+
# * **emit-metric** - To emit CloudWatch metrics.
|
10101
|
+
#
|
10102
|
+
# * **disable** - To disable the feature until the next usage period
|
10103
|
+
# begins.
|
10104
|
+
# @return [String]
|
10105
|
+
#
|
10106
|
+
# @!attribute [rw] tags
|
10107
|
+
# A list of tag instances.
|
10108
|
+
# @return [Array<Types::Tag>]
|
10109
|
+
#
|
10110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UsageLimit AWS API Documentation
|
10111
|
+
#
|
10112
|
+
class UsageLimit < Struct.new(
|
10113
|
+
:usage_limit_id,
|
10114
|
+
:cluster_identifier,
|
10115
|
+
:feature_type,
|
10116
|
+
:limit_type,
|
10117
|
+
:amount,
|
10118
|
+
:period,
|
10119
|
+
:breach_action,
|
10120
|
+
:tags)
|
10121
|
+
SENSITIVE = []
|
10122
|
+
include Aws::Structure
|
10123
|
+
end
|
10124
|
+
|
10125
|
+
# The usage limit already exists.
|
10126
|
+
#
|
10127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UsageLimitAlreadyExistsFault AWS API Documentation
|
10128
|
+
#
|
10129
|
+
class UsageLimitAlreadyExistsFault < Aws::EmptyStructure; end
|
10130
|
+
|
10131
|
+
# @!attribute [rw] usage_limits
|
10132
|
+
# Contains the output from the DescribeUsageLimits action.
|
10133
|
+
# @return [Array<Types::UsageLimit>]
|
10134
|
+
#
|
10135
|
+
# @!attribute [rw] marker
|
10136
|
+
# A value that indicates the starting point for the next set of
|
10137
|
+
# response records in a subsequent request. If a value is returned in
|
10138
|
+
# a response, you can retrieve the next set of records by providing
|
10139
|
+
# this returned marker value in the `Marker` parameter and retrying
|
10140
|
+
# the command. If the `Marker` field is empty, all response records
|
10141
|
+
# have been retrieved for the request.
|
10142
|
+
# @return [String]
|
10143
|
+
#
|
10144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UsageLimitList AWS API Documentation
|
10145
|
+
#
|
10146
|
+
class UsageLimitList < Struct.new(
|
10147
|
+
:usage_limits,
|
10148
|
+
:marker)
|
10149
|
+
SENSITIVE = []
|
10150
|
+
include Aws::Structure
|
10151
|
+
end
|
10152
|
+
|
10153
|
+
# The usage limit identifier can't be found.
|
10154
|
+
#
|
10155
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UsageLimitNotFoundFault AWS API Documentation
|
10156
|
+
#
|
10157
|
+
class UsageLimitNotFoundFault < Aws::EmptyStructure; end
|
10158
|
+
|
9643
10159
|
# Describes the members of a VPC security group.
|
9644
10160
|
#
|
9645
10161
|
# @!attribute [rw] vpc_security_group_id
|
@@ -9655,6 +10171,7 @@ module Aws::Redshift
|
|
9655
10171
|
class VpcSecurityGroupMembership < Struct.new(
|
9656
10172
|
:vpc_security_group_id,
|
9657
10173
|
:status)
|
10174
|
+
SENSITIVE = []
|
9658
10175
|
include Aws::Structure
|
9659
10176
|
end
|
9660
10177
|
|