aws-sdk-devopsagent 1.7.0 → 1.9.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.
data/sig/types.rbs CHANGED
@@ -89,6 +89,88 @@ module Aws::DevOpsAgent
89
89
  SENSITIVE: [:description]
90
90
  end
91
91
 
92
+ class Asset
93
+ attr_accessor asset_id: ::String
94
+ attr_accessor asset_type: ::String
95
+ attr_accessor metadata: untyped
96
+ attr_accessor version: ::Integer
97
+ attr_accessor created_at: ::Time
98
+ attr_accessor updated_at: ::Time
99
+ SENSITIVE: []
100
+ end
101
+
102
+ class AssetContent
103
+ attr_accessor file: Types::AssetFileContent
104
+ attr_accessor zip: Types::AssetZipContent
105
+ attr_accessor unknown: untyped
106
+ SENSITIVE: []
107
+
108
+ class File < AssetContent
109
+ end
110
+ class Zip < AssetContent
111
+ end
112
+ class Unknown < AssetContent
113
+ end
114
+ end
115
+
116
+ class AssetFile
117
+ attr_accessor path: ::String
118
+ attr_accessor content: Types::AssetFileBody
119
+ attr_accessor metadata: untyped
120
+ attr_accessor version: ::Integer
121
+ attr_accessor created_at: ::Time
122
+ attr_accessor updated_at: ::Time
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class AssetFileBody
127
+ attr_accessor bytes: ::String
128
+ attr_accessor text: ::String
129
+ attr_accessor unknown: untyped
130
+ SENSITIVE: []
131
+
132
+ class Bytes < AssetFileBody
133
+ end
134
+ class Text < AssetFileBody
135
+ end
136
+ class Unknown < AssetFileBody
137
+ end
138
+ end
139
+
140
+ class AssetFileContent
141
+ attr_accessor path: ::String
142
+ attr_accessor body: Types::AssetFileBody
143
+ attr_accessor metadata: untyped
144
+ SENSITIVE: []
145
+ end
146
+
147
+ class AssetFileSummary
148
+ attr_accessor path: ::String
149
+ attr_accessor metadata: untyped
150
+ attr_accessor version: ::Integer
151
+ attr_accessor created_at: ::Time
152
+ attr_accessor updated_at: ::Time
153
+ SENSITIVE: []
154
+ end
155
+
156
+ class AssetTypeSummary
157
+ attr_accessor asset_type: ::String
158
+ attr_accessor description: ::String
159
+ SENSITIVE: []
160
+ end
161
+
162
+ class AssetVersionMetadata
163
+ attr_accessor version: ::Integer
164
+ attr_accessor created_at: ::Time
165
+ attr_accessor updated_at: ::Time
166
+ SENSITIVE: []
167
+ end
168
+
169
+ class AssetZipContent
170
+ attr_accessor zip_file: ::String
171
+ SENSITIVE: []
172
+ end
173
+
92
174
  class AssistantMessageBlock
93
175
  attr_accessor text: ::String
94
176
  attr_accessor tool_use: untyped
@@ -173,6 +255,35 @@ module Aws::DevOpsAgent
173
255
  SENSITIVE: []
174
256
  end
175
257
 
258
+ class CreateAssetFileRequest
259
+ attr_accessor agent_space_id: ::String
260
+ attr_accessor asset_id: ::String
261
+ attr_accessor path: ::String
262
+ attr_accessor content: Types::AssetFileBody
263
+ attr_accessor metadata: untyped
264
+ attr_accessor client_token: ::String
265
+ SENSITIVE: []
266
+ end
267
+
268
+ class CreateAssetFileResponse
269
+ attr_accessor file: Types::AssetFile
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class CreateAssetRequest
274
+ attr_accessor agent_space_id: ::String
275
+ attr_accessor asset_type: ::String
276
+ attr_accessor metadata: untyped
277
+ attr_accessor content: Types::AssetContent
278
+ attr_accessor client_token: ::String
279
+ SENSITIVE: []
280
+ end
281
+
282
+ class CreateAssetResponse
283
+ attr_accessor asset: Types::Asset
284
+ SENSITIVE: []
285
+ end
286
+
176
287
  class CreateBacklogTaskRequest
177
288
  attr_accessor agent_space_id: ::String
178
289
  attr_accessor reference: Types::ReferenceInput
@@ -218,10 +329,27 @@ module Aws::DevOpsAgent
218
329
  attr_accessor resource_configuration_id: ::String
219
330
  attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
220
331
  attr_accessor certificate_expiry_time: ::Time
332
+ attr_accessor dns_resolution: ("PUBLIC" | "IN_VPC")
333
+ attr_accessor failure_message: ::String
221
334
  attr_accessor tags: ::Hash[::String, ::String]
222
335
  SENSITIVE: []
223
336
  end
224
337
 
338
+ class CreateTriggerRequest
339
+ attr_accessor agent_space_id: ::String
340
+ attr_accessor type: ::String
341
+ attr_accessor condition: Types::TriggerCondition
342
+ attr_accessor action: untyped
343
+ attr_accessor status: ::String
344
+ attr_accessor client_token: ::String
345
+ SENSITIVE: []
346
+ end
347
+
348
+ class CreateTriggerResponse
349
+ attr_accessor trigger: Types::Trigger
350
+ SENSITIVE: []
351
+ end
352
+
225
353
  class DatadogAuthorizationConfig
226
354
  attr_accessor authorization_discovery: Types::MCPServerAuthorizationDiscoveryConfig
227
355
  attr_accessor unknown: untyped
@@ -249,6 +377,25 @@ module Aws::DevOpsAgent
249
377
  class DeleteAgentSpaceOutput < Aws::EmptyStructure
250
378
  end
251
379
 
380
+ class DeleteAssetFileRequest
381
+ attr_accessor agent_space_id: ::String
382
+ attr_accessor asset_id: ::String
383
+ attr_accessor path: ::String
384
+ SENSITIVE: []
385
+ end
386
+
387
+ class DeleteAssetFileResponse < Aws::EmptyStructure
388
+ end
389
+
390
+ class DeleteAssetRequest
391
+ attr_accessor agent_space_id: ::String
392
+ attr_accessor asset_id: ::String
393
+ SENSITIVE: []
394
+ end
395
+
396
+ class DeleteAssetResponse < Aws::EmptyStructure
397
+ end
398
+
252
399
  class DeletePrivateConnectionInput
253
400
  attr_accessor name: ::String
254
401
  SENSITIVE: []
@@ -260,6 +407,15 @@ module Aws::DevOpsAgent
260
407
  SENSITIVE: []
261
408
  end
262
409
 
410
+ class DeleteTriggerRequest
411
+ attr_accessor agent_space_id: ::String
412
+ attr_accessor trigger_id: ::String
413
+ SENSITIVE: []
414
+ end
415
+
416
+ class DeleteTriggerResponse < Aws::EmptyStructure
417
+ end
418
+
263
419
  class DeregisterServiceInput
264
420
  attr_accessor service_id: ::String
265
421
  SENSITIVE: []
@@ -282,6 +438,8 @@ module Aws::DevOpsAgent
282
438
  attr_accessor resource_configuration_id: ::String
283
439
  attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
284
440
  attr_accessor certificate_expiry_time: ::Time
441
+ attr_accessor dns_resolution: ("PUBLIC" | "IN_VPC")
442
+ attr_accessor failure_message: ::String
285
443
  attr_accessor tags: ::Hash[::String, ::String]
286
444
  SENSITIVE: []
287
445
  end
@@ -346,6 +504,7 @@ module Aws::DevOpsAgent
346
504
 
347
505
  class EnableOperatorAppOutput
348
506
  attr_accessor agent_space_id: ::String
507
+ attr_accessor operator_app_url: ::String
349
508
  attr_accessor iam: Types::IamAuthConfiguration
350
509
  attr_accessor idc: Types::IdcAuthConfiguration
351
510
  attr_accessor idp: Types::IdpAuthConfiguration
@@ -406,6 +565,44 @@ module Aws::DevOpsAgent
406
565
  SENSITIVE: []
407
566
  end
408
567
 
568
+ class GetAssetContentRequest
569
+ attr_accessor agent_space_id: ::String
570
+ attr_accessor asset_id: ::String
571
+ attr_accessor asset_version: ::Integer
572
+ SENSITIVE: []
573
+ end
574
+
575
+ class GetAssetContentResponse
576
+ attr_accessor content: Types::AssetZipContent
577
+ attr_accessor version: ::Integer
578
+ SENSITIVE: []
579
+ end
580
+
581
+ class GetAssetFileRequest
582
+ attr_accessor agent_space_id: ::String
583
+ attr_accessor asset_id: ::String
584
+ attr_accessor path: ::String
585
+ attr_accessor asset_version: ::Integer
586
+ SENSITIVE: []
587
+ end
588
+
589
+ class GetAssetFileResponse
590
+ attr_accessor file: Types::AssetFile
591
+ SENSITIVE: []
592
+ end
593
+
594
+ class GetAssetRequest
595
+ attr_accessor agent_space_id: ::String
596
+ attr_accessor asset_id: ::String
597
+ attr_accessor asset_version: ::Integer
598
+ SENSITIVE: []
599
+ end
600
+
601
+ class GetAssetResponse
602
+ attr_accessor asset: Types::Asset
603
+ SENSITIVE: []
604
+ end
605
+
409
606
  class GetAssociationInput
410
607
  attr_accessor agent_space_id: ::String
411
608
  attr_accessor association_id: ::String
@@ -434,6 +631,7 @@ module Aws::DevOpsAgent
434
631
  end
435
632
 
436
633
  class GetOperatorAppOutput
634
+ attr_accessor operator_app_url: ::String
437
635
  attr_accessor iam: Types::IamAuthConfiguration
438
636
  attr_accessor idc: Types::IdcAuthConfiguration
439
637
  attr_accessor idp: Types::IdpAuthConfiguration
@@ -463,6 +661,17 @@ module Aws::DevOpsAgent
463
661
  SENSITIVE: []
464
662
  end
465
663
 
664
+ class GetTriggerRequest
665
+ attr_accessor agent_space_id: ::String
666
+ attr_accessor trigger_id: ::String
667
+ SENSITIVE: []
668
+ end
669
+
670
+ class GetTriggerResponse
671
+ attr_accessor trigger: Types::Trigger
672
+ SENSITIVE: []
673
+ end
674
+
466
675
  class GitHubConfiguration
467
676
  attr_accessor repo_name: ::String
468
677
  attr_accessor repo_id: ::String
@@ -594,6 +803,63 @@ module Aws::DevOpsAgent
594
803
  SENSITIVE: []
595
804
  end
596
805
 
806
+ class ListAssetFilesRequest
807
+ attr_accessor agent_space_id: ::String
808
+ attr_accessor asset_id: ::String
809
+ attr_accessor asset_version: ::Integer
810
+ attr_accessor next_token: ::String
811
+ attr_accessor max_results: ::Integer
812
+ SENSITIVE: []
813
+ end
814
+
815
+ class ListAssetFilesResponse
816
+ attr_accessor items: ::Array[Types::AssetFileSummary]
817
+ attr_accessor next_token: ::String
818
+ SENSITIVE: []
819
+ end
820
+
821
+ class ListAssetTypesRequest
822
+ attr_accessor next_token: ::String
823
+ attr_accessor max_results: ::Integer
824
+ SENSITIVE: []
825
+ end
826
+
827
+ class ListAssetTypesResponse
828
+ attr_accessor items: ::Array[Types::AssetTypeSummary]
829
+ attr_accessor next_token: ::String
830
+ SENSITIVE: []
831
+ end
832
+
833
+ class ListAssetVersionsRequest
834
+ attr_accessor agent_space_id: ::String
835
+ attr_accessor asset_id: ::String
836
+ attr_accessor max_results: ::Integer
837
+ attr_accessor next_token: ::String
838
+ SENSITIVE: []
839
+ end
840
+
841
+ class ListAssetVersionsResponse
842
+ attr_accessor items: ::Array[Types::AssetVersionMetadata]
843
+ attr_accessor next_token: ::String
844
+ SENSITIVE: []
845
+ end
846
+
847
+ class ListAssetsRequest
848
+ attr_accessor agent_space_id: ::String
849
+ attr_accessor asset_type: ::String
850
+ attr_accessor updated_after: ::Time
851
+ attr_accessor updated_before: ::Time
852
+ attr_accessor next_token: ::String
853
+ attr_accessor max_results: ::Integer
854
+ SENSITIVE: []
855
+ end
856
+
857
+ class ListAssetsResponse
858
+ attr_accessor items: ::Array[Types::Asset]
859
+ attr_accessor next_token: ::String
860
+ SENSITIVE: []
861
+ end
862
+
597
863
  class ListAssociationsInput
598
864
  attr_accessor agent_space_id: ::String
599
865
  attr_accessor max_results: ::Integer
@@ -745,6 +1011,20 @@ module Aws::DevOpsAgent
745
1011
  SENSITIVE: []
746
1012
  end
747
1013
 
1014
+ class ListTriggersRequest
1015
+ attr_accessor agent_space_id: ::String
1016
+ attr_accessor status: ::String
1017
+ attr_accessor next_token: ::String
1018
+ attr_accessor max_results: ::Integer
1019
+ SENSITIVE: []
1020
+ end
1021
+
1022
+ class ListTriggersResponse
1023
+ attr_accessor items: ::Array[Types::Trigger]
1024
+ attr_accessor next_token: ::String
1025
+ SENSITIVE: []
1026
+ end
1027
+
748
1028
  class ListWebhooksInput
749
1029
  attr_accessor agent_space_id: ::String
750
1030
  attr_accessor association_id: ::String
@@ -854,6 +1134,7 @@ module Aws::DevOpsAgent
854
1134
  attr_accessor region: ::String
855
1135
  attr_accessor service: ::String
856
1136
  attr_accessor role_arn: ::String
1137
+ attr_accessor mcp_role_arn: ::String
857
1138
  attr_accessor custom_headers: ::Hash[::String, ::String]
858
1139
  SENSITIVE: []
859
1140
  end
@@ -979,6 +1260,8 @@ module Aws::DevOpsAgent
979
1260
  attr_accessor resource_configuration_id: ::String
980
1261
  attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
981
1262
  attr_accessor certificate_expiry_time: ::Time
1263
+ attr_accessor dns_resolution: ("PUBLIC" | "IN_VPC")
1264
+ attr_accessor failure_message: ::String
982
1265
  SENSITIVE: []
983
1266
  end
984
1267
 
@@ -1030,6 +1313,8 @@ module Aws::DevOpsAgent
1030
1313
  attr_accessor service_details: Types::ServiceDetails
1031
1314
  attr_accessor kms_key_arn: ::String
1032
1315
  attr_accessor private_connection_name: ::String
1316
+ attr_accessor target_url_private_connection_name: ::String
1317
+ attr_accessor exchange_url_private_connection_name: ::String
1033
1318
  attr_accessor name: ::String
1034
1319
  attr_accessor tags: ::Hash[::String, ::String]
1035
1320
  SENSITIVE: []
@@ -1092,6 +1377,7 @@ module Aws::DevOpsAgent
1092
1377
  attr_accessor region: ::String
1093
1378
  attr_accessor service: ::String
1094
1379
  attr_accessor role_arn: ::String
1380
+ attr_accessor mcp_role_arn: ::String
1095
1381
  attr_accessor custom_headers: ::Hash[::String, ::String]
1096
1382
  SENSITIVE: [:description]
1097
1383
  end
@@ -1135,6 +1421,11 @@ module Aws::DevOpsAgent
1135
1421
  SENSITIVE: []
1136
1422
  end
1137
1423
 
1424
+ class ScheduleCondition
1425
+ attr_accessor expression: ::String
1426
+ SENSITIVE: []
1427
+ end
1428
+
1138
1429
  class SelfManagedInput
1139
1430
  attr_accessor resource_configuration_id: ::String
1140
1431
  attr_accessor certificate: ::String
@@ -1206,6 +1497,7 @@ module Aws::DevOpsAgent
1206
1497
  attr_accessor content: ::String
1207
1498
  attr_accessor context: Types::SendMessageContext
1208
1499
  attr_accessor user_id: ::String
1500
+ attr_accessor asset_ids: ::Array[::String]
1209
1501
  SENSITIVE: []
1210
1502
  end
1211
1503
 
@@ -1376,6 +1668,7 @@ module Aws::DevOpsAgent
1376
1668
  attr_accessor ipv4_addresses_per_eni: ::Integer
1377
1669
  attr_accessor port_ranges: ::Array[::String]
1378
1670
  attr_accessor certificate: ::String
1671
+ attr_accessor dns_resolution: ("PUBLIC" | "IN_VPC")
1379
1672
  SENSITIVE: []
1380
1673
  end
1381
1674
 
@@ -1460,7 +1753,7 @@ module Aws::DevOpsAgent
1460
1753
  attr_accessor reference: Types::ReferenceOutput
1461
1754
  attr_accessor task_type: ("INVESTIGATION" | "EVALUATION")
1462
1755
  attr_accessor priority: ("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL")
1463
- attr_accessor status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED")
1756
+ attr_accessor status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")
1464
1757
  attr_accessor created_at: ::Time
1465
1758
  attr_accessor updated_at: ::Time
1466
1759
  attr_accessor version: ::Integer
@@ -1476,7 +1769,7 @@ module Aws::DevOpsAgent
1476
1769
  attr_accessor created_after: ::Time
1477
1770
  attr_accessor created_before: ::Time
1478
1771
  attr_accessor priority: ::Array[("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL")]
1479
- attr_accessor status: ::Array[("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED")]
1772
+ attr_accessor status: ::Array[("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")]
1480
1773
  attr_accessor task_type: ::Array[("INVESTIGATION" | "EVALUATION")]
1481
1774
  attr_accessor primary_task_id: ::String
1482
1775
  SENSITIVE: []
@@ -1487,6 +1780,29 @@ module Aws::DevOpsAgent
1487
1780
  SENSITIVE: []
1488
1781
  end
1489
1782
 
1783
+ class Trigger
1784
+ attr_accessor trigger_id: ::String
1785
+ attr_accessor agent_space_id: ::String
1786
+ attr_accessor type: ::String
1787
+ attr_accessor condition: Types::TriggerCondition
1788
+ attr_accessor action: untyped
1789
+ attr_accessor status: ::String
1790
+ attr_accessor created_at: ::Time
1791
+ attr_accessor updated_at: ::Time
1792
+ SENSITIVE: []
1793
+ end
1794
+
1795
+ class TriggerCondition
1796
+ attr_accessor schedule: Types::ScheduleCondition
1797
+ attr_accessor unknown: untyped
1798
+ SENSITIVE: []
1799
+
1800
+ class Schedule < TriggerCondition
1801
+ end
1802
+ class Unknown < TriggerCondition
1803
+ end
1804
+ end
1805
+
1490
1806
  class UntagResourceRequest
1491
1807
  attr_accessor resource_arn: ::String
1492
1808
  attr_accessor tag_keys: ::Array[::String]
@@ -1509,6 +1825,35 @@ module Aws::DevOpsAgent
1509
1825
  SENSITIVE: []
1510
1826
  end
1511
1827
 
1828
+ class UpdateAssetFileRequest
1829
+ attr_accessor agent_space_id: ::String
1830
+ attr_accessor asset_id: ::String
1831
+ attr_accessor path: ::String
1832
+ attr_accessor content: Types::AssetFileBody
1833
+ attr_accessor metadata: untyped
1834
+ attr_accessor client_token: ::String
1835
+ SENSITIVE: []
1836
+ end
1837
+
1838
+ class UpdateAssetFileResponse
1839
+ attr_accessor file: Types::AssetFile
1840
+ SENSITIVE: []
1841
+ end
1842
+
1843
+ class UpdateAssetRequest
1844
+ attr_accessor agent_space_id: ::String
1845
+ attr_accessor asset_id: ::String
1846
+ attr_accessor metadata: untyped
1847
+ attr_accessor content: Types::AssetContent
1848
+ attr_accessor client_token: ::String
1849
+ SENSITIVE: []
1850
+ end
1851
+
1852
+ class UpdateAssetResponse
1853
+ attr_accessor asset: Types::Asset
1854
+ SENSITIVE: []
1855
+ end
1856
+
1512
1857
  class UpdateAssociationInput
1513
1858
  attr_accessor agent_space_id: ::String
1514
1859
  attr_accessor association_id: ::String
@@ -1525,7 +1870,7 @@ module Aws::DevOpsAgent
1525
1870
  class UpdateBacklogTaskRequest
1526
1871
  attr_accessor agent_space_id: ::String
1527
1872
  attr_accessor task_id: ::String
1528
- attr_accessor task_status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED")
1873
+ attr_accessor task_status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")
1529
1874
  attr_accessor client_token: ::String
1530
1875
  SENSITIVE: []
1531
1876
  end
@@ -1575,6 +1920,8 @@ module Aws::DevOpsAgent
1575
1920
  attr_accessor resource_configuration_id: ::String
1576
1921
  attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
1577
1922
  attr_accessor certificate_expiry_time: ::Time
1923
+ attr_accessor dns_resolution: ("PUBLIC" | "IN_VPC")
1924
+ attr_accessor failure_message: ::String
1578
1925
  SENSITIVE: []
1579
1926
  end
1580
1927
 
@@ -1592,6 +1939,19 @@ module Aws::DevOpsAgent
1592
1939
  SENSITIVE: []
1593
1940
  end
1594
1941
 
1942
+ class UpdateTriggerRequest
1943
+ attr_accessor agent_space_id: ::String
1944
+ attr_accessor trigger_id: ::String
1945
+ attr_accessor status: ::String
1946
+ attr_accessor client_token: ::String
1947
+ SENSITIVE: []
1948
+ end
1949
+
1950
+ class UpdateTriggerResponse
1951
+ attr_accessor trigger: Types::Trigger
1952
+ SENSITIVE: []
1953
+ end
1954
+
1595
1955
  class UsageMetric
1596
1956
  attr_accessor limit: ::Integer
1597
1957
  attr_accessor usage: ::Float
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-devopsagent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services