aws-sdk 1.9.5 → 1.10.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.
Files changed (49) hide show
  1. data/lib/aws/api_config/DynamoDB-2012-08-10.yml +4 -0
  2. data/lib/aws/api_config/EC2-2013-02-01.yml +1 -1
  3. data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +948 -19
  4. data/lib/aws/api_config/OpsWorks-2013-02-18.yml +83 -2
  5. data/lib/aws/auto_scaling/client.rb +15 -0
  6. data/lib/aws/cloud_formation/client.rb +11 -0
  7. data/lib/aws/cloud_front/client.rb +58 -40
  8. data/lib/aws/cloud_search/client.rb +20 -0
  9. data/lib/aws/cloud_watch/client.rb +5 -0
  10. data/lib/aws/core.rb +5 -4
  11. data/lib/aws/core/configuration.rb +3 -1
  12. data/lib/aws/core/policy.rb +27 -1
  13. data/lib/aws/data_pipeline/client.rb +12 -0
  14. data/lib/aws/direct_connect/client.rb +11 -0
  15. data/lib/aws/dynamo_db/client.rb +17 -0
  16. data/lib/aws/dynamo_db/client_v2.rb +905 -417
  17. data/lib/aws/ec2.rb +1 -1
  18. data/lib/aws/ec2/client.rb +88 -0
  19. data/lib/aws/ec2/instance.rb +3 -1
  20. data/lib/aws/ec2/security_group.rb +1 -1
  21. data/lib/aws/elastic_beanstalk/client.rb +21 -0
  22. data/lib/aws/elastic_transcoder/client.rb +681 -114
  23. data/lib/aws/elasticache/client.rb +23 -0
  24. data/lib/aws/elb/client.rb +13 -0
  25. data/lib/aws/emr/client.rb +3 -0
  26. data/lib/aws/glacier/client.rb +7 -0
  27. data/lib/aws/iam/client.rb +35 -0
  28. data/lib/aws/import_export/client.rb +5 -0
  29. data/lib/aws/ops_works/client.rb +718 -238
  30. data/lib/aws/rds/client.rb +46 -0
  31. data/lib/aws/redshift/client.rb +30 -0
  32. data/lib/aws/route_53/client.rb +10 -0
  33. data/lib/aws/s3.rb +1 -1
  34. data/lib/aws/s3/client.rb +42 -27
  35. data/lib/aws/s3/client/xml.rb +10 -0
  36. data/lib/aws/s3/multipart_upload.rb +43 -16
  37. data/lib/aws/s3/s3_object.rb +61 -26
  38. data/lib/aws/s3/uploaded_part.rb +3 -1
  39. data/lib/aws/s3/uploaded_part_collection.rb +1 -1
  40. data/lib/aws/simple_db/client.rb +10 -0
  41. data/lib/aws/simple_email_service/client.rb +11 -0
  42. data/lib/aws/simple_workflow/client.rb +18 -0
  43. data/lib/aws/sns/client.rb +9 -0
  44. data/lib/aws/sqs/client.rb +9 -0
  45. data/lib/aws/storage_gateway/client.rb +72 -37
  46. data/lib/aws/sts/client.rb +3 -0
  47. data/lib/aws/version.rb +1 -1
  48. metadata +17 -9
  49. checksums.yaml +0 -7
@@ -36,6 +36,7 @@ module AWS
36
36
  # @return [Core::Response]
37
37
  # The #data method of the response object returns
38
38
  # a hash with the following structure:
39
+ #
39
40
  # * `:owner_id` - (String)
40
41
  # * `:cache_security_group_name` - (String)
41
42
  # * `:description` - (String)
@@ -98,6 +99,7 @@ module AWS
98
99
  # @return [Core::Response]
99
100
  # The #data method of the response object returns
100
101
  # a hash with the following structure:
102
+ #
101
103
  # * `:cache_cluster_id` - (String)
102
104
  # * `:configuration_endpoint` - (Hash)
103
105
  # * `:address` - (String)
@@ -153,6 +155,7 @@ module AWS
153
155
  # @return [Core::Response]
154
156
  # The #data method of the response object returns
155
157
  # a hash with the following structure:
158
+ #
156
159
  # * `:cache_parameter_group_name` - (String)
157
160
  # * `:cache_parameter_group_family` - (String)
158
161
  # * `:description` - (String)
@@ -169,6 +172,7 @@ module AWS
169
172
  # @return [Core::Response]
170
173
  # The #data method of the response object returns
171
174
  # a hash with the following structure:
175
+ #
172
176
  # * `:owner_id` - (String)
173
177
  # * `:cache_security_group_name` - (String)
174
178
  # * `:description` - (String)
@@ -191,6 +195,7 @@ module AWS
191
195
  # @return [Core::Response]
192
196
  # The #data method of the response object returns
193
197
  # a hash with the following structure:
198
+ #
194
199
  # * `:cache_subnet_group_name` - (String)
195
200
  # * `:cache_subnet_group_description` - (String)
196
201
  # * `:vpc_id` - (String)
@@ -208,6 +213,7 @@ module AWS
208
213
  # @return [Core::Response]
209
214
  # The #data method of the response object returns
210
215
  # a hash with the following structure:
216
+ #
211
217
  # * `:cache_cluster_id` - (String)
212
218
  # * `:configuration_endpoint` - (Hash)
213
219
  # * `:address` - (String)
@@ -295,6 +301,7 @@ module AWS
295
301
  # @return [Core::Response]
296
302
  # The #data method of the response object returns
297
303
  # a hash with the following structure:
304
+ #
298
305
  # * `:marker` - (String)
299
306
  # * `:cache_clusters` - (Array<Hash>)
300
307
  # * `:cache_cluster_id` - (String)
@@ -362,6 +369,7 @@ module AWS
362
369
  # @return [Core::Response]
363
370
  # The #data method of the response object returns
364
371
  # a hash with the following structure:
372
+ #
365
373
  # * `:marker` - (String)
366
374
  # * `:cache_engine_versions` - (Array<Hash>)
367
375
  # * `:engine` - (String)
@@ -386,6 +394,7 @@ module AWS
386
394
  # @return [Core::Response]
387
395
  # The #data method of the response object returns
388
396
  # a hash with the following structure:
397
+ #
389
398
  # * `:marker` - (String)
390
399
  # * `:cache_parameter_groups` - (Array<Hash>)
391
400
  # * `:cache_parameter_group_name` - (String)
@@ -410,6 +419,7 @@ module AWS
410
419
  # @return [Core::Response]
411
420
  # The #data method of the response object returns
412
421
  # a hash with the following structure:
422
+ #
413
423
  # * `:marker` - (String)
414
424
  # * `:parameters` - (Array<Hash>)
415
425
  # * `:parameter_name` - (String)
@@ -449,6 +459,7 @@ module AWS
449
459
  # @return [Core::Response]
450
460
  # The #data method of the response object returns
451
461
  # a hash with the following structure:
462
+ #
452
463
  # * `:marker` - (String)
453
464
  # * `:cache_security_groups` - (Array<Hash>)
454
465
  # * `:owner_id` - (String)
@@ -476,6 +487,7 @@ module AWS
476
487
  # @return [Core::Response]
477
488
  # The #data method of the response object returns
478
489
  # a hash with the following structure:
490
+ #
479
491
  # * `:marker` - (String)
480
492
  # * `:cache_subnet_groups` - (Array<Hash>)
481
493
  # * `:cache_subnet_group_name` - (String)
@@ -503,6 +515,7 @@ module AWS
503
515
  # @return [Core::Response]
504
516
  # The #data method of the response object returns
505
517
  # a hash with the following structure:
518
+ #
506
519
  # * `:cache_parameter_group_family` - (String)
507
520
  # * `:marker` - (String)
508
521
  # * `:parameters` - (Array<Hash>)
@@ -557,6 +570,7 @@ module AWS
557
570
  # @return [Core::Response]
558
571
  # The #data method of the response object returns
559
572
  # a hash with the following structure:
573
+ #
560
574
  # * `:marker` - (String)
561
575
  # * `:events` - (Array<Hash>)
562
576
  # * `:source_identifier` - (String)
@@ -596,6 +610,7 @@ module AWS
596
610
  # @return [Core::Response]
597
611
  # The #data method of the response object returns
598
612
  # a hash with the following structure:
613
+ #
599
614
  # * `:marker` - (String)
600
615
  # * `:reserved_cache_nodes` - (Array<Hash>)
601
616
  # * `:reserved_cache_node_id` - (String)
@@ -643,6 +658,7 @@ module AWS
643
658
  # @return [Core::Response]
644
659
  # The #data method of the response object returns
645
660
  # a hash with the following structure:
661
+ #
646
662
  # * `:marker` - (String)
647
663
  # * `:reserved_cache_nodes_offerings` - (Array<Hash>)
648
664
  # * `:reserved_cache_nodes_offering_id` - (String)
@@ -714,6 +730,7 @@ module AWS
714
730
  # @return [Core::Response]
715
731
  # The #data method of the response object returns
716
732
  # a hash with the following structure:
733
+ #
717
734
  # * `:cache_cluster_id` - (String)
718
735
  # * `:configuration_endpoint` - (Hash)
719
736
  # * `:address` - (String)
@@ -771,6 +788,7 @@ module AWS
771
788
  # @return [Core::Response]
772
789
  # The #data method of the response object returns
773
790
  # a hash with the following structure:
791
+ #
774
792
  # * `:cache_parameter_group_name` - (String)
775
793
 
776
794
  # @!method modify_cache_subnet_group(options = {})
@@ -787,6 +805,7 @@ module AWS
787
805
  # @return [Core::Response]
788
806
  # The #data method of the response object returns
789
807
  # a hash with the following structure:
808
+ #
790
809
  # * `:cache_subnet_group_name` - (String)
791
810
  # * `:cache_subnet_group_description` - (String)
792
811
  # * `:vpc_id` - (String)
@@ -808,6 +827,7 @@ module AWS
808
827
  # @return [Core::Response]
809
828
  # The #data method of the response object returns
810
829
  # a hash with the following structure:
830
+ #
811
831
  # * `:reserved_cache_node_id` - (String)
812
832
  # * `:reserved_cache_nodes_offering_id` - (String)
813
833
  # * `:cache_node_type` - (String)
@@ -834,6 +854,7 @@ module AWS
834
854
  # @return [Core::Response]
835
855
  # The #data method of the response object returns
836
856
  # a hash with the following structure:
857
+ #
837
858
  # * `:cache_cluster_id` - (String)
838
859
  # * `:configuration_endpoint` - (Hash)
839
860
  # * `:address` - (String)
@@ -892,6 +913,7 @@ module AWS
892
913
  # @return [Core::Response]
893
914
  # The #data method of the response object returns
894
915
  # a hash with the following structure:
916
+ #
895
917
  # * `:cache_parameter_group_name` - (String)
896
918
 
897
919
  # @!method revoke_cache_security_group_ingress(options = {})
@@ -908,6 +930,7 @@ module AWS
908
930
  # @return [Core::Response]
909
931
  # The #data method of the response object returns
910
932
  # a hash with the following structure:
933
+ #
911
934
  # * `:owner_id` - (String)
912
935
  # * `:cache_security_group_name` - (String)
913
936
  # * `:description` - (String)
@@ -35,6 +35,7 @@ module AWS
35
35
  # @return [Core::Response]
36
36
  # The #data method of the response object returns
37
37
  # a hash with the following structure:
38
+ #
38
39
  # * `:security_groups` - (Array<String>)
39
40
 
40
41
  # @!method attach_load_balancer_to_subnets(options = {})
@@ -48,6 +49,7 @@ module AWS
48
49
  # @return [Core::Response]
49
50
  # The #data method of the response object returns
50
51
  # a hash with the following structure:
52
+ #
51
53
  # * `:subnets` - (Array<String>)
52
54
 
53
55
  # @!method configure_health_check(options = {})
@@ -89,6 +91,7 @@ module AWS
89
91
  # @return [Core::Response]
90
92
  # The #data method of the response object returns
91
93
  # a hash with the following structure:
94
+ #
92
95
  # * `:health_check` - (Hash)
93
96
  # * `:target` - (String)
94
97
  # * `:interval` - (Integer)
@@ -176,6 +179,7 @@ module AWS
176
179
  # @return [Core::Response]
177
180
  # The #data method of the response object returns
178
181
  # a hash with the following structure:
182
+ #
179
183
  # * `:dns_name` - (String)
180
184
 
181
185
  # @!method create_load_balancer_listeners(options = {})
@@ -272,6 +276,7 @@ module AWS
272
276
  # @return [Core::Response]
273
277
  # The #data method of the response object returns
274
278
  # a hash with the following structure:
279
+ #
275
280
  # * `:instances` - (Array<Hash>)
276
281
  # * `:instance_id` - (String)
277
282
 
@@ -287,6 +292,7 @@ module AWS
287
292
  # @return [Core::Response]
288
293
  # The #data method of the response object returns
289
294
  # a hash with the following structure:
295
+ #
290
296
  # * `:instance_states` - (Array<Hash>)
291
297
  # * `:instance_id` - (String)
292
298
  # * `:state` - (String)
@@ -306,6 +312,7 @@ module AWS
306
312
  # @return [Core::Response]
307
313
  # The #data method of the response object returns
308
314
  # a hash with the following structure:
315
+ #
309
316
  # * `:policy_descriptions` - (Array<Hash>)
310
317
  # * `:policy_name` - (String)
311
318
  # * `:policy_type_name` - (String)
@@ -322,6 +329,7 @@ module AWS
322
329
  # @return [Core::Response]
323
330
  # The #data method of the response object returns
324
331
  # a hash with the following structure:
332
+ #
325
333
  # * `:policy_type_descriptions` - (Array<Hash>)
326
334
  # * `:policy_type_name` - (String)
327
335
  # * `:description` - (String)
@@ -341,6 +349,7 @@ module AWS
341
349
  # @return [Core::Response]
342
350
  # The #data method of the response object returns
343
351
  # a hash with the following structure:
352
+ #
344
353
  # * `:load_balancer_descriptions` - (Array<Hash>)
345
354
  # * `:load_balancer_name` - (String)
346
355
  # * `:dns_name` - (String)
@@ -395,6 +404,7 @@ module AWS
395
404
  # @return [Core::Response]
396
405
  # The #data method of the response object returns
397
406
  # a hash with the following structure:
407
+ #
398
408
  # * `:subnets` - (Array<String>)
399
409
 
400
410
  # @!method disable_availability_zones_for_load_balancer(options = {})
@@ -412,6 +422,7 @@ module AWS
412
422
  # @return [Core::Response]
413
423
  # The #data method of the response object returns
414
424
  # a hash with the following structure:
425
+ #
415
426
  # * `:availability_zones` - (Array<String>)
416
427
 
417
428
  # @!method enable_availability_zones_for_load_balancer(options = {})
@@ -426,6 +437,7 @@ module AWS
426
437
  # @return [Core::Response]
427
438
  # The #data method of the response object returns
428
439
  # a hash with the following structure:
440
+ #
429
441
  # * `:availability_zones` - (Array<String>)
430
442
 
431
443
  # @!method register_instances_with_load_balancer(options = {})
@@ -448,6 +460,7 @@ module AWS
448
460
  # @return [Core::Response]
449
461
  # The #data method of the response object returns
450
462
  # a hash with the following structure:
463
+ #
451
464
  # * `:instances` - (Array<Hash>)
452
465
  # * `:instance_id` - (String)
453
466
 
@@ -49,6 +49,7 @@ module AWS
49
49
  # @return [Core::Response]
50
50
  # The #data method of the response object returns
51
51
  # a hash with the following structure:
52
+ #
52
53
  # * `:job_flow_id` - (String)
53
54
  # * `:instance_group_ids` - (Array<String>)
54
55
 
@@ -96,6 +97,7 @@ module AWS
96
97
  # @return [Core::Response]
97
98
  # The #data method of the response object returns
98
99
  # a hash with the following structure:
100
+ #
99
101
  # * `:job_flows` - (Array<Hash>)
100
102
  # * `:job_flow_id` - (String)
101
103
  # * `:name` - (String)
@@ -301,6 +303,7 @@ module AWS
301
303
  # @return [Core::Response]
302
304
  # The #data method of the response object returns
303
305
  # a hash with the following structure:
306
+ #
304
307
  # * `:job_flow_id` - (String)
305
308
 
306
309
  # @!method set_termination_protection(options = {})
@@ -85,6 +85,7 @@ module AWS
85
85
  # @return [Core::Response]
86
86
  # The #data method of the response object returns
87
87
  # a hash with the following structure:
88
+ #
88
89
  # * `:job_id` - (String)
89
90
  # * `:job_description` - (String)
90
91
  # * `:action` - (String)
@@ -108,6 +109,7 @@ module AWS
108
109
  # @return [Core::Response]
109
110
  # The #data method of the response object returns
110
111
  # a hash with the following structure:
112
+ #
111
113
  # * `:vault_arn` - (String)
112
114
  # * `:vault_name` - (String)
113
115
  # * `:creation_date` - (String)
@@ -132,6 +134,7 @@ module AWS
132
134
  # @return [Core::Response]
133
135
  # The #data method of the response object returns
134
136
  # a hash with the following structure:
137
+ #
135
138
  # * `:sns_topic` - (String)
136
139
  # * `:events` - (Array<String>)
137
140
 
@@ -169,6 +172,7 @@ module AWS
169
172
  # @return [Core::Response]
170
173
  # The #data method of the response object returns
171
174
  # a hash with the following structure:
175
+ #
172
176
  # * `:job_list` - (Array<Hash>)
173
177
  # * `:job_id` - (String)
174
178
  # * `:job_description` - (String)
@@ -196,6 +200,7 @@ module AWS
196
200
  # @return [Core::Response]
197
201
  # The #data method of the response object returns
198
202
  # a hash with the following structure:
203
+ #
199
204
  # * `:uploads_list` - (Array<Hash>)
200
205
  # * `:multipart_upload_id` - (String)
201
206
  # * `:vault_arn` - (String)
@@ -215,6 +220,7 @@ module AWS
215
220
  # @return [Core::Response]
216
221
  # The #data method of the response object returns
217
222
  # a hash with the following structure:
223
+ #
218
224
  # * `:multipart_upload_id` - (String)
219
225
  # * `:vault_arn` - (String)
220
226
  # * `:archive_description` - (String)
@@ -234,6 +240,7 @@ module AWS
234
240
  # @return [Core::Response]
235
241
  # The #data method of the response object returns
236
242
  # a hash with the following structure:
243
+ #
237
244
  # * `:vault_list` - (Array<Hash>)
238
245
  # * `:vault_arn` - (String)
239
246
  # * `:vault_name` - (String)
@@ -66,6 +66,7 @@ module AWS
66
66
  # @return [Core::Response]
67
67
  # The #data method of the response object returns
68
68
  # a hash with the following structure:
69
+ #
69
70
  # * `:access_key` - (Hash)
70
71
  # * `:user_name` - (String)
71
72
  # * `:access_key_id` - (String)
@@ -92,6 +93,7 @@ module AWS
92
93
  # @return [Core::Response]
93
94
  # The #data method of the response object returns
94
95
  # a hash with the following structure:
96
+ #
95
97
  # * `:group` - (Hash)
96
98
  # * `:path` - (String)
97
99
  # * `:group_name` - (String)
@@ -111,6 +113,7 @@ module AWS
111
113
  # @return [Core::Response]
112
114
  # The #data method of the response object returns
113
115
  # a hash with the following structure:
116
+ #
114
117
  # * `:instance_profile` - (Hash)
115
118
  # * `:path` - (String)
116
119
  # * `:instance_profile_name` - (String)
@@ -135,6 +138,7 @@ module AWS
135
138
  # @return [Core::Response]
136
139
  # The #data method of the response object returns
137
140
  # a hash with the following structure:
141
+ #
138
142
  # * `:login_profile` - (Hash)
139
143
  # * `:user_name` - (String)
140
144
  # * `:create_date` - (Time)
@@ -152,6 +156,7 @@ module AWS
152
156
  # @return [Core::Response]
153
157
  # The #data method of the response object returns
154
158
  # a hash with the following structure:
159
+ #
155
160
  # * `:role` - (Hash)
156
161
  # * `:path` - (String)
157
162
  # * `:role_name` - (String)
@@ -171,6 +176,7 @@ module AWS
171
176
  # @return [Core::Response]
172
177
  # The #data method of the response object returns
173
178
  # a hash with the following structure:
179
+ #
174
180
  # * `:user` - (Hash)
175
181
  # * `:path` - (String)
176
182
  # * `:user_name` - (String)
@@ -191,6 +197,7 @@ module AWS
191
197
  # @return [Core::Response]
192
198
  # The #data method of the response object returns
193
199
  # a hash with the following structure:
200
+ #
194
201
  # * `:virtual_mfa_device` - (Hash)
195
202
  # * `:serial_number` - (String)
196
203
  # * `:base_32_string_seed` - (String)
@@ -337,6 +344,7 @@ module AWS
337
344
  # @return [Core::Response]
338
345
  # The #data method of the response object returns
339
346
  # a hash with the following structure:
347
+ #
340
348
  # * `:password_policy` - (Hash)
341
349
  # * `:minimum_password_length` - (Integer)
342
350
  # * `:require_symbols` - (Boolean)
@@ -351,6 +359,7 @@ module AWS
351
359
  # @return [Core::Response]
352
360
  # The #data method of the response object returns
353
361
  # a hash with the following structure:
362
+ #
354
363
  # * `:summary_map` - (Hash<String,Integer>)
355
364
 
356
365
  # @!method get_group(options = {})
@@ -368,6 +377,7 @@ module AWS
368
377
  # @return [Core::Response]
369
378
  # The #data method of the response object returns
370
379
  # a hash with the following structure:
380
+ #
371
381
  # * `:group` - (Hash)
372
382
  # * `:path` - (String)
373
383
  # * `:group_name` - (String)
@@ -393,6 +403,7 @@ module AWS
393
403
  # @return [Core::Response]
394
404
  # The #data method of the response object returns
395
405
  # a hash with the following structure:
406
+ #
396
407
  # * `:group_name` - (String)
397
408
  # * `:policy_name` - (String)
398
409
  # * `:policy_document` - (String)
@@ -405,6 +416,7 @@ module AWS
405
416
  # @return [Core::Response]
406
417
  # The #data method of the response object returns
407
418
  # a hash with the following structure:
419
+ #
408
420
  # * `:instance_profile` - (Hash)
409
421
  # * `:path` - (String)
410
422
  # * `:instance_profile_name` - (String)
@@ -427,6 +439,7 @@ module AWS
427
439
  # @return [Core::Response]
428
440
  # The #data method of the response object returns
429
441
  # a hash with the following structure:
442
+ #
430
443
  # * `:login_profile` - (Hash)
431
444
  # * `:user_name` - (String)
432
445
  # * `:create_date` - (Time)
@@ -439,6 +452,7 @@ module AWS
439
452
  # @return [Core::Response]
440
453
  # The #data method of the response object returns
441
454
  # a hash with the following structure:
455
+ #
442
456
  # * `:role` - (Hash)
443
457
  # * `:path` - (String)
444
458
  # * `:role_name` - (String)
@@ -457,6 +471,7 @@ module AWS
457
471
  # @return [Core::Response]
458
472
  # The #data method of the response object returns
459
473
  # a hash with the following structure:
474
+ #
460
475
  # * `:role_name` - (String)
461
476
  # * `:policy_name` - (String)
462
477
  # * `:policy_document` - (String)
@@ -469,6 +484,7 @@ module AWS
469
484
  # @return [Core::Response]
470
485
  # The #data method of the response object returns
471
486
  # a hash with the following structure:
487
+ #
472
488
  # * `:server_certificate` - (Hash)
473
489
  # * `:server_certificate_metadata` - (Hash)
474
490
  # * `:path` - (String)
@@ -488,6 +504,7 @@ module AWS
488
504
  # @return [Core::Response]
489
505
  # The #data method of the response object returns
490
506
  # a hash with the following structure:
507
+ #
491
508
  # * `:user` - (Hash)
492
509
  # * `:path` - (String)
493
510
  # * `:user_name` - (String)
@@ -505,6 +522,7 @@ module AWS
505
522
  # @return [Core::Response]
506
523
  # The #data method of the response object returns
507
524
  # a hash with the following structure:
525
+ #
508
526
  # * `:user_name` - (String)
509
527
  # * `:policy_name` - (String)
510
528
  # * `:policy_document` - (String)
@@ -524,6 +542,7 @@ module AWS
524
542
  # @return [Core::Response]
525
543
  # The #data method of the response object returns
526
544
  # a hash with the following structure:
545
+ #
527
546
  # * `:access_key_metadata` - (Array<Hash>)
528
547
  # * `:user_name` - (String)
529
548
  # * `:access_key_id` - (String)
@@ -546,6 +565,7 @@ module AWS
546
565
  # @return [Core::Response]
547
566
  # The #data method of the response object returns
548
567
  # a hash with the following structure:
568
+ #
549
569
  # * `:account_aliases` - (Array<String>)
550
570
  # * `:is_truncated` - (Boolean)
551
571
  # * `:marker` - (String)
@@ -566,6 +586,7 @@ module AWS
566
586
  # @return [Core::Response]
567
587
  # The #data method of the response object returns
568
588
  # a hash with the following structure:
589
+ #
569
590
  # * `:policy_names` - (Array<String>)
570
591
  # * `:is_truncated` - (Boolean)
571
592
  # * `:marker` - (String)
@@ -589,6 +610,7 @@ module AWS
589
610
  # @return [Core::Response]
590
611
  # The #data method of the response object returns
591
612
  # a hash with the following structure:
613
+ #
592
614
  # * `:groups` - (Array<Hash>)
593
615
  # * `:path` - (String)
594
616
  # * `:group_name` - (String)
@@ -614,6 +636,7 @@ module AWS
614
636
  # @return [Core::Response]
615
637
  # The #data method of the response object returns
616
638
  # a hash with the following structure:
639
+ #
617
640
  # * `:groups` - (Array<Hash>)
618
641
  # * `:path` - (String)
619
642
  # * `:group_name` - (String)
@@ -643,6 +666,7 @@ module AWS
643
666
  # @return [Core::Response]
644
667
  # The #data method of the response object returns
645
668
  # a hash with the following structure:
669
+ #
646
670
  # * `:instance_profiles` - (Array<Hash>)
647
671
  # * `:path` - (String)
648
672
  # * `:instance_profile_name` - (String)
@@ -675,6 +699,7 @@ module AWS
675
699
  # @return [Core::Response]
676
700
  # The #data method of the response object returns
677
701
  # a hash with the following structure:
702
+ #
678
703
  # * `:instance_profiles` - (Array<Hash>)
679
704
  # * `:path` - (String)
680
705
  # * `:instance_profile_name` - (String)
@@ -707,6 +732,7 @@ module AWS
707
732
  # @return [Core::Response]
708
733
  # The #data method of the response object returns
709
734
  # a hash with the following structure:
735
+ #
710
736
  # * `:mfa_devices` - (Array<Hash>)
711
737
  # * `:user_name` - (String)
712
738
  # * `:serial_number` - (String)
@@ -730,6 +756,7 @@ module AWS
730
756
  # @return [Core::Response]
731
757
  # The #data method of the response object returns
732
758
  # a hash with the following structure:
759
+ #
733
760
  # * `:policy_names` - (Array<String>)
734
761
  # * `:is_truncated` - (Boolean)
735
762
  # * `:marker` - (String)
@@ -753,6 +780,7 @@ module AWS
753
780
  # @return [Core::Response]
754
781
  # The #data method of the response object returns
755
782
  # a hash with the following structure:
783
+ #
756
784
  # * `:roles` - (Array<Hash>)
757
785
  # * `:path` - (String)
758
786
  # * `:role_name` - (String)
@@ -783,6 +811,7 @@ module AWS
783
811
  # @return [Core::Response]
784
812
  # The #data method of the response object returns
785
813
  # a hash with the following structure:
814
+ #
786
815
  # * `:server_certificate_metadata_list` - (Array<Hash>)
787
816
  # * `:path` - (String)
788
817
  # * `:server_certificate_name` - (String)
@@ -807,6 +836,7 @@ module AWS
807
836
  # @return [Core::Response]
808
837
  # The #data method of the response object returns
809
838
  # a hash with the following structure:
839
+ #
810
840
  # * `:certificates` - (Array<Hash>)
811
841
  # * `:user_name` - (String)
812
842
  # * `:certificate_id` - (String)
@@ -832,6 +862,7 @@ module AWS
832
862
  # @return [Core::Response]
833
863
  # The #data method of the response object returns
834
864
  # a hash with the following structure:
865
+ #
835
866
  # * `:policy_names` - (Array<String>)
836
867
  # * `:is_truncated` - (Boolean)
837
868
  # * `:marker` - (String)
@@ -856,6 +887,7 @@ module AWS
856
887
  # @return [Core::Response]
857
888
  # The #data method of the response object returns
858
889
  # a hash with the following structure:
890
+ #
859
891
  # * `:users` - (Array<Hash>)
860
892
  # * `:path` - (String)
861
893
  # * `:user_name` - (String)
@@ -886,6 +918,7 @@ module AWS
886
918
  # @return [Core::Response]
887
919
  # The #data method of the response object returns
888
920
  # a hash with the following structure:
921
+ #
889
922
  # * `:virtual_mfa_devices` - (Array<Hash>)
890
923
  # * `:serial_number` - (String)
891
924
  # * `:base_32_string_seed` - (String)
@@ -1068,6 +1101,7 @@ module AWS
1068
1101
  # @return [Core::Response]
1069
1102
  # The #data method of the response object returns
1070
1103
  # a hash with the following structure:
1104
+ #
1071
1105
  # * `:server_certificate_metadata` - (Hash)
1072
1106
  # * `:path` - (String)
1073
1107
  # * `:server_certificate_name` - (String)
@@ -1085,6 +1119,7 @@ module AWS
1085
1119
  # @return [Core::Response]
1086
1120
  # The #data method of the response object returns
1087
1121
  # a hash with the following structure:
1122
+ #
1088
1123
  # * `:certificate` - (Hash)
1089
1124
  # * `:user_name` - (String)
1090
1125
  # * `:certificate_id` - (String)