aws-sdk-repostspace 1.22.0 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-repostspace/client.rb +679 -99
- data/lib/aws-sdk-repostspace/client_api.rb +262 -54
- data/lib/aws-sdk-repostspace/errors.rb +15 -15
- data/lib/aws-sdk-repostspace/types.rb +572 -201
- data/lib/aws-sdk-repostspace/waiters.rb +289 -0
- data/lib/aws-sdk-repostspace.rb +3 -2
- data/sig/client.rbs +149 -35
- data/sig/errors.rbs +3 -3
- data/sig/types.rbs +159 -46
- data/sig/waiters.rbs +42 -0
- metadata +2 -1
@@ -23,24 +23,68 @@ module Aws::Repostspace
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
+
# @!attribute [rw] space_id
|
27
|
+
# The unique ID of the private re:Post.
|
28
|
+
# @return [String]
|
29
|
+
#
|
30
|
+
# @!attribute [rw] channel_id
|
31
|
+
# The unique ID of the private re:Post channel.
|
32
|
+
# @return [String]
|
33
|
+
#
|
26
34
|
# @!attribute [rw] accessor_ids
|
27
|
-
# The user or group
|
35
|
+
# The user or group identifiers to add the role to.
|
28
36
|
# @return [Array<String>]
|
29
37
|
#
|
30
|
-
# @!attribute [rw]
|
31
|
-
# The role to add to the users or groups.
|
38
|
+
# @!attribute [rw] channel_role
|
39
|
+
# The channel role to add to the users or groups.
|
32
40
|
# @return [String]
|
33
41
|
#
|
42
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/BatchAddChannelRoleToAccessorsInput AWS API Documentation
|
43
|
+
#
|
44
|
+
class BatchAddChannelRoleToAccessorsInput < Struct.new(
|
45
|
+
:space_id,
|
46
|
+
:channel_id,
|
47
|
+
:accessor_ids,
|
48
|
+
:channel_role)
|
49
|
+
SENSITIVE = []
|
50
|
+
include Aws::Structure
|
51
|
+
end
|
52
|
+
|
53
|
+
# @!attribute [rw] added_accessor_ids
|
54
|
+
# An array of successfully updated identifiers.
|
55
|
+
# @return [Array<String>]
|
56
|
+
#
|
57
|
+
# @!attribute [rw] errors
|
58
|
+
# An array of errors that occurred when roles were added.
|
59
|
+
# @return [Array<Types::BatchError>]
|
60
|
+
#
|
61
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/BatchAddChannelRoleToAccessorsOutput AWS API Documentation
|
62
|
+
#
|
63
|
+
class BatchAddChannelRoleToAccessorsOutput < Struct.new(
|
64
|
+
:added_accessor_ids,
|
65
|
+
:errors)
|
66
|
+
SENSITIVE = []
|
67
|
+
include Aws::Structure
|
68
|
+
end
|
69
|
+
|
34
70
|
# @!attribute [rw] space_id
|
35
71
|
# The unique ID of the private re:Post.
|
36
72
|
# @return [String]
|
37
73
|
#
|
74
|
+
# @!attribute [rw] accessor_ids
|
75
|
+
# The user or group accessor identifiers to add the role to.
|
76
|
+
# @return [Array<String>]
|
77
|
+
#
|
78
|
+
# @!attribute [rw] role
|
79
|
+
# The role to add to the users or groups.
|
80
|
+
# @return [String]
|
81
|
+
#
|
38
82
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/BatchAddRoleInput AWS API Documentation
|
39
83
|
#
|
40
84
|
class BatchAddRoleInput < Struct.new(
|
85
|
+
:space_id,
|
41
86
|
:accessor_ids,
|
42
|
-
:role
|
43
|
-
:space_id)
|
87
|
+
:role)
|
44
88
|
SENSITIVE = []
|
45
89
|
include Aws::Structure
|
46
90
|
end
|
@@ -86,45 +130,145 @@ module Aws::Repostspace
|
|
86
130
|
include Aws::Structure
|
87
131
|
end
|
88
132
|
|
133
|
+
# @!attribute [rw] space_id
|
134
|
+
# The unique ID of the private re:Post.
|
135
|
+
# @return [String]
|
136
|
+
#
|
137
|
+
# @!attribute [rw] channel_id
|
138
|
+
# The unique ID of the private re:Post channel.
|
139
|
+
# @return [String]
|
140
|
+
#
|
89
141
|
# @!attribute [rw] accessor_ids
|
90
|
-
# The
|
142
|
+
# The users or groups identifiers to remove the role from.
|
91
143
|
# @return [Array<String>]
|
92
144
|
#
|
93
|
-
# @!attribute [rw]
|
94
|
-
# The role to remove from the users or groups.
|
145
|
+
# @!attribute [rw] channel_role
|
146
|
+
# The channel role to remove from the users or groups.
|
95
147
|
# @return [String]
|
96
148
|
#
|
149
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/BatchRemoveChannelRoleFromAccessorsInput AWS API Documentation
|
150
|
+
#
|
151
|
+
class BatchRemoveChannelRoleFromAccessorsInput < Struct.new(
|
152
|
+
:space_id,
|
153
|
+
:channel_id,
|
154
|
+
:accessor_ids,
|
155
|
+
:channel_role)
|
156
|
+
SENSITIVE = []
|
157
|
+
include Aws::Structure
|
158
|
+
end
|
159
|
+
|
160
|
+
# @!attribute [rw] removed_accessor_ids
|
161
|
+
# An array of successfully updated identifiers.
|
162
|
+
# @return [Array<String>]
|
163
|
+
#
|
164
|
+
# @!attribute [rw] errors
|
165
|
+
# An array of errors that occurred when roles were removed.
|
166
|
+
# @return [Array<Types::BatchError>]
|
167
|
+
#
|
168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/BatchRemoveChannelRoleFromAccessorsOutput AWS API Documentation
|
169
|
+
#
|
170
|
+
class BatchRemoveChannelRoleFromAccessorsOutput < Struct.new(
|
171
|
+
:removed_accessor_ids,
|
172
|
+
:errors)
|
173
|
+
SENSITIVE = []
|
174
|
+
include Aws::Structure
|
175
|
+
end
|
176
|
+
|
97
177
|
# @!attribute [rw] space_id
|
98
178
|
# The unique ID of the private re:Post.
|
99
179
|
# @return [String]
|
100
180
|
#
|
181
|
+
# @!attribute [rw] accessor_ids
|
182
|
+
# The user or group accessor identifiers to remove the role from.
|
183
|
+
# @return [Array<String>]
|
184
|
+
#
|
185
|
+
# @!attribute [rw] role
|
186
|
+
# The role to remove from the users or groups.
|
187
|
+
# @return [String]
|
188
|
+
#
|
101
189
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/BatchRemoveRoleInput AWS API Documentation
|
102
190
|
#
|
103
191
|
class BatchRemoveRoleInput < Struct.new(
|
192
|
+
:space_id,
|
104
193
|
:accessor_ids,
|
105
|
-
:role
|
106
|
-
:space_id)
|
194
|
+
:role)
|
107
195
|
SENSITIVE = []
|
108
196
|
include Aws::Structure
|
109
197
|
end
|
110
198
|
|
111
|
-
# @!attribute [rw] errors
|
112
|
-
# An array of errors that occurred when roles were removed.
|
113
|
-
# @return [Array<Types::BatchError>]
|
114
|
-
#
|
115
199
|
# @!attribute [rw] removed_accessor_ids
|
116
200
|
# An array of successfully updated accessor identifiers.
|
117
201
|
# @return [Array<String>]
|
118
202
|
#
|
203
|
+
# @!attribute [rw] errors
|
204
|
+
# An array of errors that occurred when roles were removed.
|
205
|
+
# @return [Array<Types::BatchError>]
|
206
|
+
#
|
119
207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/BatchRemoveRoleOutput AWS API Documentation
|
120
208
|
#
|
121
209
|
class BatchRemoveRoleOutput < Struct.new(
|
122
|
-
:
|
123
|
-
:
|
210
|
+
:removed_accessor_ids,
|
211
|
+
:errors)
|
124
212
|
SENSITIVE = []
|
125
213
|
include Aws::Structure
|
126
214
|
end
|
127
215
|
|
216
|
+
# A structure that contains some information about a channel in a
|
217
|
+
# private re:Post.
|
218
|
+
#
|
219
|
+
# @!attribute [rw] space_id
|
220
|
+
# The unique ID of the private re:Post.
|
221
|
+
# @return [String]
|
222
|
+
#
|
223
|
+
# @!attribute [rw] channel_id
|
224
|
+
# The unique ID of the private re:Post channel.
|
225
|
+
# @return [String]
|
226
|
+
#
|
227
|
+
# @!attribute [rw] channel_name
|
228
|
+
# The name for the channel. This must be unique per private re:Post.
|
229
|
+
# @return [String]
|
230
|
+
#
|
231
|
+
# @!attribute [rw] channel_description
|
232
|
+
# A description for the channel. This is used only to help you
|
233
|
+
# identify this channel.
|
234
|
+
# @return [String]
|
235
|
+
#
|
236
|
+
# @!attribute [rw] create_date_time
|
237
|
+
# The date when the channel was created.
|
238
|
+
# @return [Time]
|
239
|
+
#
|
240
|
+
# @!attribute [rw] delete_date_time
|
241
|
+
# The date when the channel was deleted.
|
242
|
+
# @return [Time]
|
243
|
+
#
|
244
|
+
# @!attribute [rw] channel_status
|
245
|
+
# The status pf the channel.
|
246
|
+
# @return [String]
|
247
|
+
#
|
248
|
+
# @!attribute [rw] user_count
|
249
|
+
# The number of users that are part of the channel.
|
250
|
+
# @return [Integer]
|
251
|
+
#
|
252
|
+
# @!attribute [rw] group_count
|
253
|
+
# The number of groups that are part of the channel.
|
254
|
+
# @return [Integer]
|
255
|
+
#
|
256
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/ChannelData AWS API Documentation
|
257
|
+
#
|
258
|
+
class ChannelData < Struct.new(
|
259
|
+
:space_id,
|
260
|
+
:channel_id,
|
261
|
+
:channel_name,
|
262
|
+
:channel_description,
|
263
|
+
:create_date_time,
|
264
|
+
:delete_date_time,
|
265
|
+
:channel_status,
|
266
|
+
:user_count,
|
267
|
+
:group_count)
|
268
|
+
SENSITIVE = [:channel_name, :channel_description]
|
269
|
+
include Aws::Structure
|
270
|
+
end
|
271
|
+
|
128
272
|
# Updating or deleting a resource can cause an inconsistent state.
|
129
273
|
#
|
130
274
|
# @!attribute [rw] message
|
@@ -148,21 +292,46 @@ module Aws::Repostspace
|
|
148
292
|
include Aws::Structure
|
149
293
|
end
|
150
294
|
|
151
|
-
# @!attribute [rw]
|
152
|
-
#
|
153
|
-
#
|
295
|
+
# @!attribute [rw] space_id
|
296
|
+
# The unique ID of the private re:Post.
|
297
|
+
# @return [String]
|
298
|
+
#
|
299
|
+
# @!attribute [rw] channel_name
|
300
|
+
# The name for the channel. This must be unique per private re:Post.
|
301
|
+
# @return [String]
|
302
|
+
#
|
303
|
+
# @!attribute [rw] channel_description
|
304
|
+
# A description for the channel. This is used only to help you
|
305
|
+
# identify this channel.
|
306
|
+
# @return [String]
|
307
|
+
#
|
308
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/CreateChannelInput AWS API Documentation
|
309
|
+
#
|
310
|
+
class CreateChannelInput < Struct.new(
|
311
|
+
:space_id,
|
312
|
+
:channel_name,
|
313
|
+
:channel_description)
|
314
|
+
SENSITIVE = [:channel_name, :channel_description]
|
315
|
+
include Aws::Structure
|
316
|
+
end
|
317
|
+
|
318
|
+
# @!attribute [rw] channel_id
|
319
|
+
# The unique ID of the private re:Post channel.
|
154
320
|
# @return [String]
|
155
321
|
#
|
322
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/CreateChannelOutput AWS API Documentation
|
323
|
+
#
|
324
|
+
class CreateChannelOutput < Struct.new(
|
325
|
+
:channel_id)
|
326
|
+
SENSITIVE = []
|
327
|
+
include Aws::Structure
|
328
|
+
end
|
329
|
+
|
156
330
|
# @!attribute [rw] name
|
157
331
|
# The name for the private re:Post. This must be unique in your
|
158
332
|
# account.
|
159
333
|
# @return [String]
|
160
334
|
#
|
161
|
-
# @!attribute [rw] role_arn
|
162
|
-
# The IAM role that grants permissions to the private re:Post to
|
163
|
-
# convert unanswered questions into AWS support tickets.
|
164
|
-
# @return [String]
|
165
|
-
#
|
166
335
|
# @!attribute [rw] subdomain
|
167
336
|
# The subdomain that you use to access your AWS re:Post Private
|
168
337
|
# private re:Post. All custom subdomains must be approved by AWS
|
@@ -170,31 +339,45 @@ module Aws::Repostspace
|
|
170
339
|
# re:Posts are issued an AWS generated subdomain for immediate use.
|
171
340
|
# @return [String]
|
172
341
|
#
|
173
|
-
# @!attribute [rw] tags
|
174
|
-
# The list of tags associated with the private re:Post.
|
175
|
-
# @return [Hash<String,String>]
|
176
|
-
#
|
177
342
|
# @!attribute [rw] tier
|
178
343
|
# The pricing tier for the private re:Post.
|
179
344
|
# @return [String]
|
180
345
|
#
|
346
|
+
# @!attribute [rw] description
|
347
|
+
# A description for the private re:Post. This is used only to help you
|
348
|
+
# identify this private re:Post.
|
349
|
+
# @return [String]
|
350
|
+
#
|
181
351
|
# @!attribute [rw] user_kms_key
|
182
352
|
# The AWS KMS key ARN that’s used for the AWS KMS encryption. If you
|
183
353
|
# don't provide a key, your data is encrypted by default with a key
|
184
354
|
# that AWS owns and manages for you.
|
185
355
|
# @return [String]
|
186
356
|
#
|
357
|
+
# @!attribute [rw] tags
|
358
|
+
# The list of tags associated with the private re:Post.
|
359
|
+
# @return [Hash<String,String>]
|
360
|
+
#
|
361
|
+
# @!attribute [rw] role_arn
|
362
|
+
# The IAM role that grants permissions to the private re:Post to
|
363
|
+
# convert unanswered questions into AWS support tickets.
|
364
|
+
# @return [String]
|
365
|
+
#
|
366
|
+
# @!attribute [rw] supported_email_domains
|
367
|
+
# @return [Types::SupportedEmailDomainsParameters]
|
368
|
+
#
|
187
369
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/CreateSpaceInput AWS API Documentation
|
188
370
|
#
|
189
371
|
class CreateSpaceInput < Struct.new(
|
190
|
-
:description,
|
191
372
|
:name,
|
192
|
-
:role_arn,
|
193
373
|
:subdomain,
|
194
|
-
:tags,
|
195
374
|
:tier,
|
196
|
-
:
|
197
|
-
|
375
|
+
:description,
|
376
|
+
:user_kms_key,
|
377
|
+
:tags,
|
378
|
+
:role_arn,
|
379
|
+
:supported_email_domains)
|
380
|
+
SENSITIVE = [:name, :description, :tags]
|
198
381
|
include Aws::Structure
|
199
382
|
end
|
200
383
|
|
@@ -222,23 +405,88 @@ module Aws::Repostspace
|
|
222
405
|
include Aws::Structure
|
223
406
|
end
|
224
407
|
|
408
|
+
# @!attribute [rw] space_id
|
409
|
+
# The ID of the private re:Post to remove the admin from.
|
410
|
+
# @return [String]
|
411
|
+
#
|
225
412
|
# @!attribute [rw] admin_id
|
226
413
|
# The ID of the admin to remove.
|
227
414
|
# @return [String]
|
228
415
|
#
|
416
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/DeregisterAdminInput AWS API Documentation
|
417
|
+
#
|
418
|
+
class DeregisterAdminInput < Struct.new(
|
419
|
+
:space_id,
|
420
|
+
:admin_id)
|
421
|
+
SENSITIVE = []
|
422
|
+
include Aws::Structure
|
423
|
+
end
|
424
|
+
|
229
425
|
# @!attribute [rw] space_id
|
230
|
-
# The ID of the private re:Post
|
426
|
+
# The unique ID of the private re:Post.
|
231
427
|
# @return [String]
|
232
428
|
#
|
233
|
-
#
|
429
|
+
# @!attribute [rw] channel_id
|
430
|
+
# The unique ID of the private re:Post channel.
|
431
|
+
# @return [String]
|
234
432
|
#
|
235
|
-
|
236
|
-
|
237
|
-
|
433
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/GetChannelInput AWS API Documentation
|
434
|
+
#
|
435
|
+
class GetChannelInput < Struct.new(
|
436
|
+
:space_id,
|
437
|
+
:channel_id)
|
238
438
|
SENSITIVE = []
|
239
439
|
include Aws::Structure
|
240
440
|
end
|
241
441
|
|
442
|
+
# @!attribute [rw] space_id
|
443
|
+
# The unique ID of the private re:Post.
|
444
|
+
# @return [String]
|
445
|
+
#
|
446
|
+
# @!attribute [rw] channel_id
|
447
|
+
# The unique ID of the private re:Post channel.
|
448
|
+
# @return [String]
|
449
|
+
#
|
450
|
+
# @!attribute [rw] channel_name
|
451
|
+
# The name for the channel. This must be unique per private re:Post.
|
452
|
+
# @return [String]
|
453
|
+
#
|
454
|
+
# @!attribute [rw] channel_description
|
455
|
+
# A description for the channel. This is used only to help you
|
456
|
+
# identify this channel.
|
457
|
+
# @return [String]
|
458
|
+
#
|
459
|
+
# @!attribute [rw] create_date_time
|
460
|
+
# The date when the channel was created.
|
461
|
+
# @return [Time]
|
462
|
+
#
|
463
|
+
# @!attribute [rw] delete_date_time
|
464
|
+
# The date when the channel was deleted.
|
465
|
+
# @return [Time]
|
466
|
+
#
|
467
|
+
# @!attribute [rw] channel_roles
|
468
|
+
# The channel roles associated to the users and groups of the channel.
|
469
|
+
# @return [Hash<String,Array<String>>]
|
470
|
+
#
|
471
|
+
# @!attribute [rw] channel_status
|
472
|
+
# The status pf the channel.
|
473
|
+
# @return [String]
|
474
|
+
#
|
475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/GetChannelOutput AWS API Documentation
|
476
|
+
#
|
477
|
+
class GetChannelOutput < Struct.new(
|
478
|
+
:space_id,
|
479
|
+
:channel_id,
|
480
|
+
:channel_name,
|
481
|
+
:channel_description,
|
482
|
+
:create_date_time,
|
483
|
+
:delete_date_time,
|
484
|
+
:channel_roles,
|
485
|
+
:channel_status)
|
486
|
+
SENSITIVE = [:channel_name, :channel_description]
|
487
|
+
include Aws::Structure
|
488
|
+
end
|
489
|
+
|
242
490
|
# @!attribute [rw] space_id
|
243
491
|
# The ID of the private re:Post.
|
244
492
|
# @return [String]
|
@@ -251,117 +499,129 @@ module Aws::Repostspace
|
|
251
499
|
include Aws::Structure
|
252
500
|
end
|
253
501
|
|
502
|
+
# @!attribute [rw] space_id
|
503
|
+
# The unique ID of the private re:Post.
|
504
|
+
# @return [String]
|
505
|
+
#
|
254
506
|
# @!attribute [rw] arn
|
255
507
|
# The ARN of the private re:Post.
|
256
508
|
# @return [String]
|
257
509
|
#
|
258
|
-
# @!attribute [rw]
|
259
|
-
# The
|
510
|
+
# @!attribute [rw] name
|
511
|
+
# The name of the private re:Post.
|
512
|
+
# @return [String]
|
513
|
+
#
|
514
|
+
# @!attribute [rw] status
|
515
|
+
# The creation or deletion status of the private re:Post.
|
260
516
|
# @return [String]
|
261
517
|
#
|
262
518
|
# @!attribute [rw] configuration_status
|
263
519
|
# The configuration status of the private re:Post.
|
264
520
|
# @return [String]
|
265
521
|
#
|
266
|
-
# @!attribute [rw]
|
267
|
-
# The
|
268
|
-
# @return [
|
269
|
-
#
|
270
|
-
# @!attribute [rw] create_date_time
|
271
|
-
# The date when the private re:Post was created.
|
272
|
-
# @return [Time]
|
522
|
+
# @!attribute [rw] client_id
|
523
|
+
# The Identity Center identifier for the Application Instance.
|
524
|
+
# @return [String]
|
273
525
|
#
|
274
|
-
# @!attribute [rw]
|
275
|
-
# The IAM role that grants permissions to the private re:Post to
|
276
|
-
# convert unanswered questions into AWS support tickets.
|
526
|
+
# @!attribute [rw] identity_store_id
|
277
527
|
# @return [String]
|
278
528
|
#
|
279
|
-
# @!attribute [rw]
|
280
|
-
#
|
281
|
-
# @return [Time]
|
529
|
+
# @!attribute [rw] application_arn
|
530
|
+
# @return [String]
|
282
531
|
#
|
283
532
|
# @!attribute [rw] description
|
284
533
|
# The description of the private re:Post.
|
285
534
|
# @return [String]
|
286
535
|
#
|
287
|
-
# @!attribute [rw]
|
288
|
-
# The
|
289
|
-
# @return [
|
536
|
+
# @!attribute [rw] vanity_domain_status
|
537
|
+
# The approval status of the custom subdomain.
|
538
|
+
# @return [String]
|
290
539
|
#
|
291
|
-
# @!attribute [rw]
|
292
|
-
# The
|
540
|
+
# @!attribute [rw] vanity_domain
|
541
|
+
# The custom subdomain that you use to access your private re:Post.
|
542
|
+
# All custom subdomains must be approved by AWS before use.
|
293
543
|
# @return [String]
|
294
544
|
#
|
295
545
|
# @!attribute [rw] random_domain
|
296
546
|
# The AWS generated subdomain of the private re:Post
|
297
547
|
# @return [String]
|
298
548
|
#
|
299
|
-
# @!attribute [rw]
|
300
|
-
#
|
301
|
-
#
|
302
|
-
#
|
303
|
-
# @!attribute [rw] space_id
|
304
|
-
# The unique ID of the private re:Post.
|
549
|
+
# @!attribute [rw] customer_role_arn
|
550
|
+
# The IAM role that grants permissions to the private re:Post to
|
551
|
+
# convert unanswered questions into AWS support tickets.
|
305
552
|
# @return [String]
|
306
553
|
#
|
307
|
-
# @!attribute [rw]
|
308
|
-
# The
|
309
|
-
# @return [
|
554
|
+
# @!attribute [rw] create_date_time
|
555
|
+
# The date when the private re:Post was created.
|
556
|
+
# @return [Time]
|
310
557
|
#
|
311
|
-
# @!attribute [rw]
|
312
|
-
# The
|
313
|
-
# @return [
|
558
|
+
# @!attribute [rw] delete_date_time
|
559
|
+
# The date when the private re:Post was deleted.
|
560
|
+
# @return [Time]
|
314
561
|
#
|
315
562
|
# @!attribute [rw] tier
|
316
563
|
# The pricing tier of the private re:Post.
|
317
564
|
# @return [String]
|
318
565
|
#
|
566
|
+
# @!attribute [rw] storage_limit
|
567
|
+
# The storage limit of the private re:Post.
|
568
|
+
# @return [Integer]
|
569
|
+
#
|
319
570
|
# @!attribute [rw] user_admins
|
320
571
|
# The list of users that are administrators of the private re:Post.
|
321
572
|
# @return [Array<String>]
|
322
573
|
#
|
323
|
-
# @!attribute [rw]
|
324
|
-
# The
|
325
|
-
# @return [
|
574
|
+
# @!attribute [rw] group_admins
|
575
|
+
# The list of groups that are administrators of the private re:Post.
|
576
|
+
# @return [Array<String>]
|
577
|
+
#
|
578
|
+
# @!attribute [rw] roles
|
579
|
+
# A map of accessor identifiers and their roles.
|
580
|
+
# @return [Hash<String,Array<String>>]
|
326
581
|
#
|
327
582
|
# @!attribute [rw] user_kms_key
|
328
583
|
# The custom AWS KMS key ARN that’s used for the AWS KMS encryption.
|
329
584
|
# @return [String]
|
330
585
|
#
|
331
|
-
# @!attribute [rw]
|
332
|
-
# The
|
333
|
-
#
|
334
|
-
# @return [String]
|
586
|
+
# @!attribute [rw] user_count
|
587
|
+
# The number of users that have onboarded to the private re:Post.
|
588
|
+
# @return [Integer]
|
335
589
|
#
|
336
|
-
# @!attribute [rw]
|
337
|
-
# The
|
338
|
-
# @return [
|
590
|
+
# @!attribute [rw] content_size
|
591
|
+
# The content size of the private re:Post.
|
592
|
+
# @return [Integer]
|
593
|
+
#
|
594
|
+
# @!attribute [rw] supported_email_domains
|
595
|
+
# @return [Types::SupportedEmailDomainsStatus]
|
339
596
|
#
|
340
597
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/GetSpaceOutput AWS API Documentation
|
341
598
|
#
|
342
599
|
class GetSpaceOutput < Struct.new(
|
600
|
+
:space_id,
|
343
601
|
:arn,
|
344
|
-
:
|
602
|
+
:name,
|
603
|
+
:status,
|
345
604
|
:configuration_status,
|
346
|
-
:
|
347
|
-
:
|
348
|
-
:
|
349
|
-
:delete_date_time,
|
605
|
+
:client_id,
|
606
|
+
:identity_store_id,
|
607
|
+
:application_arn,
|
350
608
|
:description,
|
351
|
-
:
|
352
|
-
:
|
609
|
+
:vanity_domain_status,
|
610
|
+
:vanity_domain,
|
353
611
|
:random_domain,
|
354
|
-
:
|
355
|
-
:
|
356
|
-
:
|
357
|
-
:storage_limit,
|
612
|
+
:customer_role_arn,
|
613
|
+
:create_date_time,
|
614
|
+
:delete_date_time,
|
358
615
|
:tier,
|
616
|
+
:storage_limit,
|
359
617
|
:user_admins,
|
360
|
-
:
|
618
|
+
:group_admins,
|
619
|
+
:roles,
|
361
620
|
:user_kms_key,
|
362
|
-
:
|
363
|
-
:
|
364
|
-
|
621
|
+
:user_count,
|
622
|
+
:content_size,
|
623
|
+
:supported_email_domains)
|
624
|
+
SENSITIVE = [:name, :description]
|
365
625
|
include Aws::Structure
|
366
626
|
end
|
367
627
|
|
@@ -383,39 +643,80 @@ module Aws::Repostspace
|
|
383
643
|
include Aws::Structure
|
384
644
|
end
|
385
645
|
|
646
|
+
# @!attribute [rw] space_id
|
647
|
+
# The unique ID of the private re:Post.
|
648
|
+
# @return [String]
|
649
|
+
#
|
650
|
+
# @!attribute [rw] next_token
|
651
|
+
# The token for the next set of channel to return. You receive this
|
652
|
+
# token from a previous ListChannels operation.
|
653
|
+
# @return [String]
|
654
|
+
#
|
386
655
|
# @!attribute [rw] max_results
|
387
|
-
# The maximum number of
|
656
|
+
# The maximum number of channels to include in the results.
|
388
657
|
# @return [Integer]
|
389
658
|
#
|
659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/ListChannelsInput AWS API Documentation
|
660
|
+
#
|
661
|
+
class ListChannelsInput < Struct.new(
|
662
|
+
:space_id,
|
663
|
+
:next_token,
|
664
|
+
:max_results)
|
665
|
+
SENSITIVE = []
|
666
|
+
include Aws::Structure
|
667
|
+
end
|
668
|
+
|
669
|
+
# @!attribute [rw] channels
|
670
|
+
# An array of structures that contain some information about the
|
671
|
+
# channels in the private re:Post.
|
672
|
+
# @return [Array<Types::ChannelData>]
|
673
|
+
#
|
390
674
|
# @!attribute [rw] next_token
|
391
|
-
# The token
|
392
|
-
# receive this token from a previous ListSpaces operation.
|
675
|
+
# The token that you use when you request the next set of channels.
|
393
676
|
# @return [String]
|
394
677
|
#
|
395
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/
|
678
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/ListChannelsOutput AWS API Documentation
|
396
679
|
#
|
397
|
-
class
|
398
|
-
:
|
680
|
+
class ListChannelsOutput < Struct.new(
|
681
|
+
:channels,
|
399
682
|
:next_token)
|
400
683
|
SENSITIVE = []
|
401
684
|
include Aws::Structure
|
402
685
|
end
|
403
686
|
|
404
687
|
# @!attribute [rw] next_token
|
405
|
-
# The token
|
406
|
-
#
|
688
|
+
# The token for the next set of private re:Posts to return. You
|
689
|
+
# receive this token from a previous ListSpaces operation.
|
407
690
|
# @return [String]
|
408
691
|
#
|
692
|
+
# @!attribute [rw] max_results
|
693
|
+
# The maximum number of private re:Posts to include in the results.
|
694
|
+
# @return [Integer]
|
695
|
+
#
|
696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/ListSpacesInput AWS API Documentation
|
697
|
+
#
|
698
|
+
class ListSpacesInput < Struct.new(
|
699
|
+
:next_token,
|
700
|
+
:max_results)
|
701
|
+
SENSITIVE = []
|
702
|
+
include Aws::Structure
|
703
|
+
end
|
704
|
+
|
409
705
|
# @!attribute [rw] spaces
|
410
706
|
# An array of structures that contain some information about the
|
411
707
|
# private re:Posts in the account.
|
412
708
|
# @return [Array<Types::SpaceData>]
|
413
709
|
#
|
710
|
+
# @!attribute [rw] next_token
|
711
|
+
# The token that you use when you request the next set of private
|
712
|
+
# re:Posts.
|
713
|
+
# @return [String]
|
714
|
+
#
|
414
715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/ListSpacesOutput AWS API Documentation
|
415
716
|
#
|
416
717
|
class ListSpacesOutput < Struct.new(
|
417
|
-
:
|
418
|
-
:
|
718
|
+
:spaces,
|
719
|
+
:next_token)
|
419
720
|
SENSITIVE = []
|
420
721
|
include Aws::Structure
|
421
722
|
end
|
@@ -444,19 +745,19 @@ module Aws::Repostspace
|
|
444
745
|
include Aws::Structure
|
445
746
|
end
|
446
747
|
|
447
|
-
# @!attribute [rw] admin_id
|
448
|
-
# The ID of the administrator.
|
449
|
-
# @return [String]
|
450
|
-
#
|
451
748
|
# @!attribute [rw] space_id
|
452
749
|
# The ID of the private re:Post.
|
453
750
|
# @return [String]
|
454
751
|
#
|
752
|
+
# @!attribute [rw] admin_id
|
753
|
+
# The ID of the administrator.
|
754
|
+
# @return [String]
|
755
|
+
#
|
455
756
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/RegisterAdminInput AWS API Documentation
|
456
757
|
#
|
457
758
|
class RegisterAdminInput < Struct.new(
|
458
|
-
:
|
459
|
-
:
|
759
|
+
:space_id,
|
760
|
+
:admin_id)
|
460
761
|
SENSITIVE = []
|
461
762
|
include Aws::Structure
|
462
763
|
end
|
@@ -484,30 +785,30 @@ module Aws::Repostspace
|
|
484
785
|
include Aws::Structure
|
485
786
|
end
|
486
787
|
|
487
|
-
# @!attribute [rw] accessor_ids
|
488
|
-
# The array of identifiers for the users and groups.
|
489
|
-
# @return [Array<String>]
|
490
|
-
#
|
491
|
-
# @!attribute [rw] body
|
492
|
-
# The body of the invite.
|
493
|
-
# @return [String]
|
494
|
-
#
|
495
788
|
# @!attribute [rw] space_id
|
496
789
|
# The ID of the private re:Post.
|
497
790
|
# @return [String]
|
498
791
|
#
|
792
|
+
# @!attribute [rw] accessor_ids
|
793
|
+
# The array of identifiers for the users and groups.
|
794
|
+
# @return [Array<String>]
|
795
|
+
#
|
499
796
|
# @!attribute [rw] title
|
500
797
|
# The title of the invite.
|
501
798
|
# @return [String]
|
502
799
|
#
|
800
|
+
# @!attribute [rw] body
|
801
|
+
# The body of the invite.
|
802
|
+
# @return [String]
|
803
|
+
#
|
503
804
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/SendInvitesInput AWS API Documentation
|
504
805
|
#
|
505
806
|
class SendInvitesInput < Struct.new(
|
506
|
-
:accessor_ids,
|
507
|
-
:body,
|
508
807
|
:space_id,
|
509
|
-
:
|
510
|
-
|
808
|
+
:accessor_ids,
|
809
|
+
:title,
|
810
|
+
:body)
|
811
|
+
SENSITIVE = [:title, :body]
|
511
812
|
include Aws::Structure
|
512
813
|
end
|
513
814
|
|
@@ -516,10 +817,6 @@ module Aws::Repostspace
|
|
516
817
|
# @!attribute [rw] message
|
517
818
|
# @return [String]
|
518
819
|
#
|
519
|
-
# @!attribute [rw] quota_code
|
520
|
-
# The code to identify the quota.
|
521
|
-
# @return [String]
|
522
|
-
#
|
523
820
|
# @!attribute [rw] resource_id
|
524
821
|
# The id of the resource.
|
525
822
|
# @return [String]
|
@@ -532,14 +829,18 @@ module Aws::Repostspace
|
|
532
829
|
# The code to identify the service.
|
533
830
|
# @return [String]
|
534
831
|
#
|
832
|
+
# @!attribute [rw] quota_code
|
833
|
+
# The code to identify the quota.
|
834
|
+
# @return [String]
|
835
|
+
#
|
535
836
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/ServiceQuotaExceededException AWS API Documentation
|
536
837
|
#
|
537
838
|
class ServiceQuotaExceededException < Struct.new(
|
538
839
|
:message,
|
539
|
-
:quota_code,
|
540
840
|
:resource_id,
|
541
841
|
:resource_type,
|
542
|
-
:service_code
|
842
|
+
:service_code,
|
843
|
+
:quota_code)
|
543
844
|
SENSITIVE = []
|
544
845
|
include Aws::Structure
|
545
846
|
end
|
@@ -547,92 +848,126 @@ module Aws::Repostspace
|
|
547
848
|
# A structure that contains some information about a private re:Post in
|
548
849
|
# the account.
|
549
850
|
#
|
851
|
+
# @!attribute [rw] space_id
|
852
|
+
# The unique ID of the private re:Post.
|
853
|
+
# @return [String]
|
854
|
+
#
|
550
855
|
# @!attribute [rw] arn
|
551
856
|
# The ARN of the private re:Post.
|
552
857
|
# @return [String]
|
553
858
|
#
|
554
|
-
# @!attribute [rw]
|
555
|
-
# The
|
859
|
+
# @!attribute [rw] name
|
860
|
+
# The name for the private re:Post.
|
556
861
|
# @return [String]
|
557
862
|
#
|
558
|
-
# @!attribute [rw] content_size
|
559
|
-
# The content size of the private re:Post.
|
560
|
-
# @return [Integer]
|
561
|
-
#
|
562
|
-
# @!attribute [rw] create_date_time
|
563
|
-
# The date when the private re:Post was created.
|
564
|
-
# @return [Time]
|
565
|
-
#
|
566
|
-
# @!attribute [rw] delete_date_time
|
567
|
-
# The date when the private re:Post was deleted.
|
568
|
-
# @return [Time]
|
569
|
-
#
|
570
863
|
# @!attribute [rw] description
|
571
864
|
# The description for the private re:Post. This is used only to help
|
572
865
|
# you identify this private re:Post.
|
573
866
|
# @return [String]
|
574
867
|
#
|
575
|
-
# @!attribute [rw]
|
576
|
-
# The
|
868
|
+
# @!attribute [rw] status
|
869
|
+
# The creation/deletion status of the private re:Post.
|
577
870
|
# @return [String]
|
578
871
|
#
|
579
|
-
# @!attribute [rw]
|
580
|
-
# The
|
872
|
+
# @!attribute [rw] configuration_status
|
873
|
+
# The configuration status of the private re:Post.
|
581
874
|
# @return [String]
|
582
875
|
#
|
583
|
-
# @!attribute [rw]
|
584
|
-
#
|
876
|
+
# @!attribute [rw] vanity_domain_status
|
877
|
+
# This approval status of the custom subdomain.
|
585
878
|
# @return [String]
|
586
879
|
#
|
587
|
-
# @!attribute [rw]
|
588
|
-
#
|
880
|
+
# @!attribute [rw] vanity_domain
|
881
|
+
# This custom subdomain that you use to access your private re:Post.
|
882
|
+
# All custom subdomains must be approved by AWS before use.
|
589
883
|
# @return [String]
|
590
884
|
#
|
591
|
-
# @!attribute [rw]
|
592
|
-
# The
|
593
|
-
# @return [
|
885
|
+
# @!attribute [rw] random_domain
|
886
|
+
# The AWS generated subdomain of the private re:Post.
|
887
|
+
# @return [String]
|
594
888
|
#
|
595
889
|
# @!attribute [rw] tier
|
596
890
|
# The pricing tier of the private re:Post.
|
597
891
|
# @return [String]
|
598
892
|
#
|
599
|
-
# @!attribute [rw]
|
600
|
-
# The
|
893
|
+
# @!attribute [rw] storage_limit
|
894
|
+
# The storage limit of the private re:Post.
|
601
895
|
# @return [Integer]
|
602
896
|
#
|
897
|
+
# @!attribute [rw] create_date_time
|
898
|
+
# The date when the private re:Post was created.
|
899
|
+
# @return [Time]
|
900
|
+
#
|
901
|
+
# @!attribute [rw] delete_date_time
|
902
|
+
# The date when the private re:Post was deleted.
|
903
|
+
# @return [Time]
|
904
|
+
#
|
603
905
|
# @!attribute [rw] user_kms_key
|
604
906
|
# The custom AWS KMS key ARN that’s used for the AWS KMS encryption.
|
605
907
|
# @return [String]
|
606
908
|
#
|
607
|
-
# @!attribute [rw]
|
608
|
-
#
|
609
|
-
#
|
610
|
-
# @return [String]
|
909
|
+
# @!attribute [rw] user_count
|
910
|
+
# The number of onboarded users to the private re:Post.
|
911
|
+
# @return [Integer]
|
611
912
|
#
|
612
|
-
# @!attribute [rw]
|
613
|
-
#
|
614
|
-
# @return [
|
913
|
+
# @!attribute [rw] content_size
|
914
|
+
# The content size of the private re:Post.
|
915
|
+
# @return [Integer]
|
916
|
+
#
|
917
|
+
# @!attribute [rw] supported_email_domains
|
918
|
+
# @return [Types::SupportedEmailDomainsStatus]
|
615
919
|
#
|
616
920
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/SpaceData AWS API Documentation
|
617
921
|
#
|
618
922
|
class SpaceData < Struct.new(
|
923
|
+
:space_id,
|
619
924
|
:arn,
|
620
|
-
:configuration_status,
|
621
|
-
:content_size,
|
622
|
-
:create_date_time,
|
623
|
-
:delete_date_time,
|
624
|
-
:description,
|
625
925
|
:name,
|
626
|
-
:
|
627
|
-
:space_id,
|
926
|
+
:description,
|
628
927
|
:status,
|
629
|
-
:
|
928
|
+
:configuration_status,
|
929
|
+
:vanity_domain_status,
|
930
|
+
:vanity_domain,
|
931
|
+
:random_domain,
|
630
932
|
:tier,
|
631
|
-
:
|
933
|
+
:storage_limit,
|
934
|
+
:create_date_time,
|
935
|
+
:delete_date_time,
|
632
936
|
:user_kms_key,
|
633
|
-
:
|
634
|
-
:
|
635
|
-
|
937
|
+
:user_count,
|
938
|
+
:content_size,
|
939
|
+
:supported_email_domains)
|
940
|
+
SENSITIVE = [:name, :description]
|
941
|
+
include Aws::Structure
|
942
|
+
end
|
943
|
+
|
944
|
+
# @!attribute [rw] enabled
|
945
|
+
# @return [String]
|
946
|
+
#
|
947
|
+
# @!attribute [rw] allowed_domains
|
948
|
+
# @return [Array<String>]
|
949
|
+
#
|
950
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/SupportedEmailDomainsParameters AWS API Documentation
|
951
|
+
#
|
952
|
+
class SupportedEmailDomainsParameters < Struct.new(
|
953
|
+
:enabled,
|
954
|
+
:allowed_domains)
|
955
|
+
SENSITIVE = [:allowed_domains]
|
956
|
+
include Aws::Structure
|
957
|
+
end
|
958
|
+
|
959
|
+
# @!attribute [rw] enabled
|
960
|
+
# @return [String]
|
961
|
+
#
|
962
|
+
# @!attribute [rw] allowed_domains
|
963
|
+
# @return [Array<String>]
|
964
|
+
#
|
965
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/SupportedEmailDomainsStatus AWS API Documentation
|
966
|
+
#
|
967
|
+
class SupportedEmailDomainsStatus < Struct.new(
|
968
|
+
:enabled,
|
969
|
+
:allowed_domains)
|
970
|
+
SENSITIVE = [:allowed_domains]
|
636
971
|
include Aws::Structure
|
637
972
|
end
|
638
973
|
|
@@ -664,6 +999,10 @@ module Aws::Repostspace
|
|
664
999
|
# @!attribute [rw] message
|
665
1000
|
# @return [String]
|
666
1001
|
#
|
1002
|
+
# @!attribute [rw] service_code
|
1003
|
+
# The code to identify the service.
|
1004
|
+
# @return [String]
|
1005
|
+
#
|
667
1006
|
# @!attribute [rw] quota_code
|
668
1007
|
# The code to identify the quota.
|
669
1008
|
# @return [String]
|
@@ -672,17 +1011,13 @@ module Aws::Repostspace
|
|
672
1011
|
# Advice to clients on when the call can be safely retried.
|
673
1012
|
# @return [Integer]
|
674
1013
|
#
|
675
|
-
# @!attribute [rw] service_code
|
676
|
-
# The code to identify the service.
|
677
|
-
# @return [String]
|
678
|
-
#
|
679
1014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/ThrottlingException AWS API Documentation
|
680
1015
|
#
|
681
1016
|
class ThrottlingException < Struct.new(
|
682
1017
|
:message,
|
1018
|
+
:service_code,
|
683
1019
|
:quota_code,
|
684
|
-
:retry_after_seconds
|
685
|
-
:service_code)
|
1020
|
+
:retry_after_seconds)
|
686
1021
|
SENSITIVE = []
|
687
1022
|
include Aws::Structure
|
688
1023
|
end
|
@@ -708,31 +1043,67 @@ module Aws::Repostspace
|
|
708
1043
|
#
|
709
1044
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
710
1045
|
|
711
|
-
# @!attribute [rw]
|
712
|
-
#
|
713
|
-
# identify this private re:Post.
|
1046
|
+
# @!attribute [rw] space_id
|
1047
|
+
# The unique ID of the private re:Post.
|
714
1048
|
# @return [String]
|
715
1049
|
#
|
716
|
-
# @!attribute [rw]
|
717
|
-
# The
|
718
|
-
#
|
1050
|
+
# @!attribute [rw] channel_id
|
1051
|
+
# The unique ID of the private re:Post channel.
|
1052
|
+
# @return [String]
|
1053
|
+
#
|
1054
|
+
# @!attribute [rw] channel_name
|
1055
|
+
# The name for the channel. This must be unique per private re:Post.
|
1056
|
+
# @return [String]
|
1057
|
+
#
|
1058
|
+
# @!attribute [rw] channel_description
|
1059
|
+
# A description for the channel. This is used only to help you
|
1060
|
+
# identify this channel.
|
719
1061
|
# @return [String]
|
720
1062
|
#
|
1063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/UpdateChannelInput AWS API Documentation
|
1064
|
+
#
|
1065
|
+
class UpdateChannelInput < Struct.new(
|
1066
|
+
:space_id,
|
1067
|
+
:channel_id,
|
1068
|
+
:channel_name,
|
1069
|
+
:channel_description)
|
1070
|
+
SENSITIVE = [:channel_name, :channel_description]
|
1071
|
+
include Aws::Structure
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/UpdateChannelOutput AWS API Documentation
|
1075
|
+
#
|
1076
|
+
class UpdateChannelOutput < Aws::EmptyStructure; end
|
1077
|
+
|
721
1078
|
# @!attribute [rw] space_id
|
722
1079
|
# The unique ID of this private re:Post.
|
723
1080
|
# @return [String]
|
724
1081
|
#
|
1082
|
+
# @!attribute [rw] description
|
1083
|
+
# A description for the private re:Post. This is used only to help you
|
1084
|
+
# identify this private re:Post.
|
1085
|
+
# @return [String]
|
1086
|
+
#
|
725
1087
|
# @!attribute [rw] tier
|
726
1088
|
# The pricing tier of this private re:Post.
|
727
1089
|
# @return [String]
|
728
1090
|
#
|
1091
|
+
# @!attribute [rw] role_arn
|
1092
|
+
# The IAM role that grants permissions to the private re:Post to
|
1093
|
+
# convert unanswered questions into AWS support tickets.
|
1094
|
+
# @return [String]
|
1095
|
+
#
|
1096
|
+
# @!attribute [rw] supported_email_domains
|
1097
|
+
# @return [Types::SupportedEmailDomainsParameters]
|
1098
|
+
#
|
729
1099
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/UpdateSpaceInput AWS API Documentation
|
730
1100
|
#
|
731
1101
|
class UpdateSpaceInput < Struct.new(
|
1102
|
+
:space_id,
|
732
1103
|
:description,
|
1104
|
+
:tier,
|
733
1105
|
:role_arn,
|
734
|
-
:
|
735
|
-
:tier)
|
1106
|
+
:supported_email_domains)
|
736
1107
|
SENSITIVE = [:description]
|
737
1108
|
include Aws::Structure
|
738
1109
|
end
|
@@ -740,10 +1111,6 @@ module Aws::Repostspace
|
|
740
1111
|
# The input fails to satisfy the constraints specified by an AWS
|
741
1112
|
# service.
|
742
1113
|
#
|
743
|
-
# @!attribute [rw] field_list
|
744
|
-
# The field that caused the error, if applicable.
|
745
|
-
# @return [Array<Types::ValidationExceptionField>]
|
746
|
-
#
|
747
1114
|
# @!attribute [rw] message
|
748
1115
|
# @return [String]
|
749
1116
|
#
|
@@ -751,12 +1118,16 @@ module Aws::Repostspace
|
|
751
1118
|
# The reason why the request failed validation.
|
752
1119
|
# @return [String]
|
753
1120
|
#
|
1121
|
+
# @!attribute [rw] field_list
|
1122
|
+
# The field that caused the error, if applicable.
|
1123
|
+
# @return [Array<Types::ValidationExceptionField>]
|
1124
|
+
#
|
754
1125
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/ValidationException AWS API Documentation
|
755
1126
|
#
|
756
1127
|
class ValidationException < Struct.new(
|
757
|
-
:field_list,
|
758
1128
|
:message,
|
759
|
-
:reason
|
1129
|
+
:reason,
|
1130
|
+
:field_list)
|
760
1131
|
SENSITIVE = []
|
761
1132
|
include Aws::Structure
|
762
1133
|
end
|
@@ -764,19 +1135,19 @@ module Aws::Repostspace
|
|
764
1135
|
# Stores information about a field that’s passed inside a request that
|
765
1136
|
# resulted in an exception.
|
766
1137
|
#
|
767
|
-
# @!attribute [rw] message
|
768
|
-
# The name of the field.
|
769
|
-
# @return [String]
|
770
|
-
#
|
771
1138
|
# @!attribute [rw] name
|
772
1139
|
# Message describing why the field failed validation.
|
773
1140
|
# @return [String]
|
774
1141
|
#
|
1142
|
+
# @!attribute [rw] message
|
1143
|
+
# The name of the field.
|
1144
|
+
# @return [String]
|
1145
|
+
#
|
775
1146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/repostspace-2022-05-13/ValidationExceptionField AWS API Documentation
|
776
1147
|
#
|
777
1148
|
class ValidationExceptionField < Struct.new(
|
778
|
-
:
|
779
|
-
:
|
1149
|
+
:name,
|
1150
|
+
:message)
|
780
1151
|
SENSITIVE = []
|
781
1152
|
include Aws::Structure
|
782
1153
|
end
|