aws-sdk-wellarchitected 1.15.0 → 1.16.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-wellarchitected/client.rb +171 -20
- data/lib/aws-sdk-wellarchitected/client_api.rb +15 -1
- data/lib/aws-sdk-wellarchitected/types.rb +259 -31
- data/lib/aws-sdk-wellarchitected.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0692924bc348d0621f0eed273514ddf7a8926f0ed3a3a48e8fc5531bb085e1b8'
|
|
4
|
+
data.tar.gz: 28d5e26813f6639f00f38a98ec71738f7b532769dbc31ca594c89973a3519e07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3fed47fb25664b5c029a272c7fa72f2a1f48c81446692c5180a85ee5f02a924131677bc11026d8fabc80786c2dea0284ba2c22157592a2a4cdadd013a2d55f2b
|
|
7
|
+
data.tar.gz: f2e2530ae801bcc595733edf830bcd52804897babd51caf1e67a1d1c128cc0b6a25eab44669b1f77248fa7ec8fff6acec4e1cf600da4801e3d96c5c6b50545ee
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.16.0 (2022-06-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for lens tagging, Adds support for multiple helpful-resource urls and multiple improvement-plan urls.
|
|
8
|
+
|
|
4
9
|
1.15.0 (2022-02-24)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.16.0
|
|
@@ -411,7 +411,14 @@ module Aws::WellArchitected
|
|
|
411
411
|
# </note>
|
|
412
412
|
#
|
|
413
413
|
# @option params [required, String] :lens_alias
|
|
414
|
-
# The alias of the lens
|
|
414
|
+
# The alias of the lens.
|
|
415
|
+
#
|
|
416
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
417
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
418
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
419
|
+
#
|
|
420
|
+
# For custom lenses, this is the lens ARN, such as
|
|
421
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
415
422
|
#
|
|
416
423
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
417
424
|
#
|
|
@@ -471,7 +478,14 @@ module Aws::WellArchitected
|
|
|
471
478
|
# Region. Only the owner of a lens can delete it.
|
|
472
479
|
#
|
|
473
480
|
# @option params [required, String] :lens_alias
|
|
474
|
-
# The alias of the lens
|
|
481
|
+
# The alias of the lens.
|
|
482
|
+
#
|
|
483
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
484
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
485
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
486
|
+
#
|
|
487
|
+
# For custom lenses, this is the lens ARN, such as
|
|
488
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
475
489
|
#
|
|
476
490
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
477
491
|
#
|
|
@@ -627,7 +641,7 @@ module Aws::WellArchitected
|
|
|
627
641
|
# @option params [String] :architectural_design
|
|
628
642
|
# The URL of the architectural design for the workload.
|
|
629
643
|
#
|
|
630
|
-
# @option params [
|
|
644
|
+
# @option params [String] :review_owner
|
|
631
645
|
# The review owner of the workload. The name, email address, or
|
|
632
646
|
# identifier for the primary group or individual that owns the workload
|
|
633
647
|
# review process.
|
|
@@ -737,7 +751,7 @@ module Aws::WellArchitected
|
|
|
737
751
|
# non_aws_regions: ["WorkloadNonAwsRegion"],
|
|
738
752
|
# pillar_priorities: ["PillarId"],
|
|
739
753
|
# architectural_design: "WorkloadArchitecturalDesign",
|
|
740
|
-
# review_owner: "WorkloadReviewOwner",
|
|
754
|
+
# review_owner: "WorkloadReviewOwner",
|
|
741
755
|
# industry_type: "WorkloadIndustryType",
|
|
742
756
|
# industry: "WorkloadIndustry",
|
|
743
757
|
# lenses: ["LensAlias"], # required
|
|
@@ -851,7 +865,14 @@ module Aws::WellArchitected
|
|
|
851
865
|
# </note>
|
|
852
866
|
#
|
|
853
867
|
# @option params [required, String] :lens_alias
|
|
854
|
-
# The alias of the lens
|
|
868
|
+
# The alias of the lens.
|
|
869
|
+
#
|
|
870
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
871
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
872
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
873
|
+
#
|
|
874
|
+
# For custom lenses, this is the lens ARN, such as
|
|
875
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
855
876
|
#
|
|
856
877
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
857
878
|
#
|
|
@@ -915,7 +936,14 @@ module Aws::WellArchitected
|
|
|
915
936
|
# The ID associated with the workload share.
|
|
916
937
|
#
|
|
917
938
|
# @option params [required, String] :lens_alias
|
|
918
|
-
# The alias of the lens
|
|
939
|
+
# The alias of the lens.
|
|
940
|
+
#
|
|
941
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
942
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
943
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
944
|
+
#
|
|
945
|
+
# For custom lenses, this is the lens ARN, such as
|
|
946
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
919
947
|
#
|
|
920
948
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
921
949
|
#
|
|
@@ -1102,7 +1130,14 @@ module Aws::WellArchitected
|
|
|
1102
1130
|
# [1]: https://docs.aws.amazon.com/wellarchitected/latest/userguide/lenses-format-specification.html
|
|
1103
1131
|
#
|
|
1104
1132
|
# @option params [required, String] :lens_alias
|
|
1105
|
-
# The alias of the lens
|
|
1133
|
+
# The alias of the lens.
|
|
1134
|
+
#
|
|
1135
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1136
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1137
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1138
|
+
#
|
|
1139
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1140
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1106
1141
|
#
|
|
1107
1142
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1108
1143
|
#
|
|
@@ -1140,7 +1175,14 @@ module Aws::WellArchitected
|
|
|
1140
1175
|
# Web Services Region.
|
|
1141
1176
|
#
|
|
1142
1177
|
# @option params [required, String] :lens_alias
|
|
1143
|
-
# The alias of the lens
|
|
1178
|
+
# The alias of the lens.
|
|
1179
|
+
#
|
|
1180
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1181
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1182
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1183
|
+
#
|
|
1184
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1185
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1144
1186
|
#
|
|
1145
1187
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1146
1188
|
#
|
|
@@ -1190,6 +1232,11 @@ module Aws::WellArchitected
|
|
|
1190
1232
|
# resp.answer.choices[0].helpful_resource.url #=> String
|
|
1191
1233
|
# resp.answer.choices[0].improvement_plan.display_text #=> String
|
|
1192
1234
|
# resp.answer.choices[0].improvement_plan.url #=> String
|
|
1235
|
+
# resp.answer.choices[0].additional_resources #=> Array
|
|
1236
|
+
# resp.answer.choices[0].additional_resources[0].type #=> String, one of "HELPFUL_RESOURCE", "IMPROVEMENT_PLAN"
|
|
1237
|
+
# resp.answer.choices[0].additional_resources[0].content #=> Array
|
|
1238
|
+
# resp.answer.choices[0].additional_resources[0].content[0].display_text #=> String
|
|
1239
|
+
# resp.answer.choices[0].additional_resources[0].content[0].url #=> String
|
|
1193
1240
|
# resp.answer.selected_choices #=> Array
|
|
1194
1241
|
# resp.answer.selected_choices[0] #=> String
|
|
1195
1242
|
# resp.answer.choice_answers #=> Array
|
|
@@ -1214,7 +1261,14 @@ module Aws::WellArchitected
|
|
|
1214
1261
|
# Get an existing lens.
|
|
1215
1262
|
#
|
|
1216
1263
|
# @option params [required, String] :lens_alias
|
|
1217
|
-
# The alias of the lens
|
|
1264
|
+
# The alias of the lens.
|
|
1265
|
+
#
|
|
1266
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1267
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1268
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1269
|
+
#
|
|
1270
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1271
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1218
1272
|
#
|
|
1219
1273
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1220
1274
|
#
|
|
@@ -1240,6 +1294,8 @@ module Aws::WellArchitected
|
|
|
1240
1294
|
# resp.lens.description #=> String
|
|
1241
1295
|
# resp.lens.owner #=> String
|
|
1242
1296
|
# resp.lens.share_invitation_id #=> String
|
|
1297
|
+
# resp.lens.tags #=> Hash
|
|
1298
|
+
# resp.lens.tags["TagKey"] #=> String
|
|
1243
1299
|
#
|
|
1244
1300
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/GetLens AWS API Documentation
|
|
1245
1301
|
#
|
|
@@ -1257,7 +1313,14 @@ module Aws::WellArchitected
|
|
|
1257
1313
|
# Web Services Region.
|
|
1258
1314
|
#
|
|
1259
1315
|
# @option params [required, String] :lens_alias
|
|
1260
|
-
# The alias of the lens
|
|
1316
|
+
# The alias of the lens.
|
|
1317
|
+
#
|
|
1318
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1319
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1320
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1321
|
+
#
|
|
1322
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1323
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1261
1324
|
#
|
|
1262
1325
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1263
1326
|
#
|
|
@@ -1317,7 +1380,14 @@ module Aws::WellArchitected
|
|
|
1317
1380
|
# Web Services Region.
|
|
1318
1381
|
#
|
|
1319
1382
|
# @option params [required, String] :lens_alias
|
|
1320
|
-
# The alias of the lens
|
|
1383
|
+
# The alias of the lens.
|
|
1384
|
+
#
|
|
1385
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1386
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1387
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1388
|
+
#
|
|
1389
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1390
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1321
1391
|
#
|
|
1322
1392
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1323
1393
|
#
|
|
@@ -1360,7 +1430,14 @@ module Aws::WellArchitected
|
|
|
1360
1430
|
# Get lens version differences.
|
|
1361
1431
|
#
|
|
1362
1432
|
# @option params [required, String] :lens_alias
|
|
1363
|
-
# The alias of the lens
|
|
1433
|
+
# The alias of the lens.
|
|
1434
|
+
#
|
|
1435
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1436
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1437
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1438
|
+
#
|
|
1439
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1440
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1364
1441
|
#
|
|
1365
1442
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1366
1443
|
#
|
|
@@ -1566,7 +1643,14 @@ module Aws::WellArchitected
|
|
|
1566
1643
|
# [1]: https://docs.aws.amazon.com/wellarchitected/latest/userguide/lenses-format-specification.html
|
|
1567
1644
|
#
|
|
1568
1645
|
# @option params [String] :lens_alias
|
|
1569
|
-
# The alias of the lens
|
|
1646
|
+
# The alias of the lens.
|
|
1647
|
+
#
|
|
1648
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1649
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1650
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1651
|
+
#
|
|
1652
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1653
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1570
1654
|
#
|
|
1571
1655
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1572
1656
|
#
|
|
@@ -1630,7 +1714,14 @@ module Aws::WellArchitected
|
|
|
1630
1714
|
# Web Services Region.
|
|
1631
1715
|
#
|
|
1632
1716
|
# @option params [required, String] :lens_alias
|
|
1633
|
-
# The alias of the lens
|
|
1717
|
+
# The alias of the lens.
|
|
1718
|
+
#
|
|
1719
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1720
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1721
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1722
|
+
#
|
|
1723
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1724
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1634
1725
|
#
|
|
1635
1726
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1636
1727
|
#
|
|
@@ -1690,6 +1781,11 @@ module Aws::WellArchitected
|
|
|
1690
1781
|
# resp.answer_summaries[0].choices[0].helpful_resource.url #=> String
|
|
1691
1782
|
# resp.answer_summaries[0].choices[0].improvement_plan.display_text #=> String
|
|
1692
1783
|
# resp.answer_summaries[0].choices[0].improvement_plan.url #=> String
|
|
1784
|
+
# resp.answer_summaries[0].choices[0].additional_resources #=> Array
|
|
1785
|
+
# resp.answer_summaries[0].choices[0].additional_resources[0].type #=> String, one of "HELPFUL_RESOURCE", "IMPROVEMENT_PLAN"
|
|
1786
|
+
# resp.answer_summaries[0].choices[0].additional_resources[0].content #=> Array
|
|
1787
|
+
# resp.answer_summaries[0].choices[0].additional_resources[0].content[0].display_text #=> String
|
|
1788
|
+
# resp.answer_summaries[0].choices[0].additional_resources[0].content[0].url #=> String
|
|
1693
1789
|
# resp.answer_summaries[0].selected_choices #=> Array
|
|
1694
1790
|
# resp.answer_summaries[0].selected_choices[0] #=> String
|
|
1695
1791
|
# resp.answer_summaries[0].choice_answer_summaries #=> Array
|
|
@@ -1717,7 +1813,14 @@ module Aws::WellArchitected
|
|
|
1717
1813
|
# Web Services Region.
|
|
1718
1814
|
#
|
|
1719
1815
|
# @option params [required, String] :lens_alias
|
|
1720
|
-
# The alias of the lens
|
|
1816
|
+
# The alias of the lens.
|
|
1817
|
+
#
|
|
1818
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1819
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1820
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1821
|
+
#
|
|
1822
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1823
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1721
1824
|
#
|
|
1722
1825
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1723
1826
|
#
|
|
@@ -1848,7 +1951,14 @@ module Aws::WellArchitected
|
|
|
1848
1951
|
# List the lens shares associated with the lens.
|
|
1849
1952
|
#
|
|
1850
1953
|
# @option params [required, String] :lens_alias
|
|
1851
|
-
# The alias of the lens
|
|
1954
|
+
# The alias of the lens.
|
|
1955
|
+
#
|
|
1956
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1957
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1958
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1959
|
+
#
|
|
1960
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1961
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1852
1962
|
#
|
|
1853
1963
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1854
1964
|
#
|
|
@@ -2118,6 +2228,11 @@ module Aws::WellArchitected
|
|
|
2118
2228
|
|
|
2119
2229
|
# List the tags for a resource.
|
|
2120
2230
|
#
|
|
2231
|
+
# <note markdown="1"> The WorkloadArn parameter can be either a workload ARN or a custom
|
|
2232
|
+
# lens ARN.
|
|
2233
|
+
#
|
|
2234
|
+
# </note>
|
|
2235
|
+
#
|
|
2121
2236
|
# @option params [required, String] :workload_arn
|
|
2122
2237
|
# The ARN for the workload.
|
|
2123
2238
|
#
|
|
@@ -2250,6 +2365,11 @@ module Aws::WellArchitected
|
|
|
2250
2365
|
|
|
2251
2366
|
# Adds one or more tags to the specified resource.
|
|
2252
2367
|
#
|
|
2368
|
+
# <note markdown="1"> The WorkloadArn parameter can be either a workload ARN or a custom
|
|
2369
|
+
# lens ARN.
|
|
2370
|
+
#
|
|
2371
|
+
# </note>
|
|
2372
|
+
#
|
|
2253
2373
|
# @option params [required, String] :workload_arn
|
|
2254
2374
|
# The ARN for the workload.
|
|
2255
2375
|
#
|
|
@@ -2278,6 +2398,11 @@ module Aws::WellArchitected
|
|
|
2278
2398
|
|
|
2279
2399
|
# Deletes specified tags from a resource.
|
|
2280
2400
|
#
|
|
2401
|
+
# <note markdown="1"> The WorkloadArn parameter can be either a workload ARN or a custom
|
|
2402
|
+
# lens ARN.
|
|
2403
|
+
#
|
|
2404
|
+
# </note>
|
|
2405
|
+
#
|
|
2281
2406
|
# To specify multiple tags, use separate **tagKeys** parameters, for
|
|
2282
2407
|
# example:
|
|
2283
2408
|
#
|
|
@@ -2315,7 +2440,14 @@ module Aws::WellArchitected
|
|
|
2315
2440
|
# Web Services Region.
|
|
2316
2441
|
#
|
|
2317
2442
|
# @option params [required, String] :lens_alias
|
|
2318
|
-
# The alias of the lens
|
|
2443
|
+
# The alias of the lens.
|
|
2444
|
+
#
|
|
2445
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
2446
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
2447
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
2448
|
+
#
|
|
2449
|
+
# For custom lenses, this is the lens ARN, such as
|
|
2450
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
2319
2451
|
#
|
|
2320
2452
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
2321
2453
|
#
|
|
@@ -2386,6 +2518,11 @@ module Aws::WellArchitected
|
|
|
2386
2518
|
# resp.answer.choices[0].helpful_resource.url #=> String
|
|
2387
2519
|
# resp.answer.choices[0].improvement_plan.display_text #=> String
|
|
2388
2520
|
# resp.answer.choices[0].improvement_plan.url #=> String
|
|
2521
|
+
# resp.answer.choices[0].additional_resources #=> Array
|
|
2522
|
+
# resp.answer.choices[0].additional_resources[0].type #=> String, one of "HELPFUL_RESOURCE", "IMPROVEMENT_PLAN"
|
|
2523
|
+
# resp.answer.choices[0].additional_resources[0].content #=> Array
|
|
2524
|
+
# resp.answer.choices[0].additional_resources[0].content[0].display_text #=> String
|
|
2525
|
+
# resp.answer.choices[0].additional_resources[0].content[0].url #=> String
|
|
2389
2526
|
# resp.answer.selected_choices #=> Array
|
|
2390
2527
|
# resp.answer.selected_choices[0] #=> String
|
|
2391
2528
|
# resp.answer.choice_answers #=> Array
|
|
@@ -2414,7 +2551,14 @@ module Aws::WellArchitected
|
|
|
2414
2551
|
# Web Services Region.
|
|
2415
2552
|
#
|
|
2416
2553
|
# @option params [required, String] :lens_alias
|
|
2417
|
-
# The alias of the lens
|
|
2554
|
+
# The alias of the lens.
|
|
2555
|
+
#
|
|
2556
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
2557
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
2558
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
2559
|
+
#
|
|
2560
|
+
# For custom lenses, this is the lens ARN, such as
|
|
2561
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
2418
2562
|
#
|
|
2419
2563
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
2420
2564
|
#
|
|
@@ -2743,7 +2887,14 @@ module Aws::WellArchitected
|
|
|
2743
2887
|
# Web Services Region.
|
|
2744
2888
|
#
|
|
2745
2889
|
# @option params [required, String] :lens_alias
|
|
2746
|
-
# The alias of the lens
|
|
2890
|
+
# The alias of the lens.
|
|
2891
|
+
#
|
|
2892
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
2893
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
2894
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
2895
|
+
#
|
|
2896
|
+
# For custom lenses, this is the lens ARN, such as
|
|
2897
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
2747
2898
|
#
|
|
2748
2899
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
2749
2900
|
#
|
|
@@ -2799,7 +2950,7 @@ module Aws::WellArchitected
|
|
|
2799
2950
|
params: params,
|
|
2800
2951
|
config: config)
|
|
2801
2952
|
context[:gem_name] = 'aws-sdk-wellarchitected'
|
|
2802
|
-
context[:gem_version] = '1.
|
|
2953
|
+
context[:gem_version] = '1.16.0'
|
|
2803
2954
|
Seahorse::Client::Request.new(handlers, context)
|
|
2804
2955
|
end
|
|
2805
2956
|
|
|
@@ -14,6 +14,9 @@ module Aws::WellArchitected
|
|
|
14
14
|
include Seahorse::Model
|
|
15
15
|
|
|
16
16
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
|
17
|
+
AdditionalResourceType = Shapes::StringShape.new(name: 'AdditionalResourceType')
|
|
18
|
+
AdditionalResources = Shapes::StructureShape.new(name: 'AdditionalResources')
|
|
19
|
+
AdditionalResourcesList = Shapes::ListShape.new(name: 'AdditionalResourcesList')
|
|
17
20
|
Answer = Shapes::StructureShape.new(name: 'Answer')
|
|
18
21
|
AnswerReason = Shapes::StringShape.new(name: 'AnswerReason')
|
|
19
22
|
AnswerSummaries = Shapes::ListShape.new(name: 'AnswerSummaries')
|
|
@@ -203,6 +206,7 @@ module Aws::WellArchitected
|
|
|
203
206
|
UpdateWorkloadShareInput = Shapes::StructureShape.new(name: 'UpdateWorkloadShareInput')
|
|
204
207
|
UpdateWorkloadShareOutput = Shapes::StructureShape.new(name: 'UpdateWorkloadShareOutput')
|
|
205
208
|
UpgradeLensReviewInput = Shapes::StructureShape.new(name: 'UpgradeLensReviewInput')
|
|
209
|
+
Urls = Shapes::ListShape.new(name: 'Urls')
|
|
206
210
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
|
207
211
|
ValidationExceptionField = Shapes::StructureShape.new(name: 'ValidationExceptionField')
|
|
208
212
|
ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
|
|
@@ -236,6 +240,12 @@ module Aws::WellArchitected
|
|
|
236
240
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, required: true, location_name: "Message"))
|
|
237
241
|
AccessDeniedException.struct_class = Types::AccessDeniedException
|
|
238
242
|
|
|
243
|
+
AdditionalResources.add_member(:type, Shapes::ShapeRef.new(shape: AdditionalResourceType, location_name: "Type"))
|
|
244
|
+
AdditionalResources.add_member(:content, Shapes::ShapeRef.new(shape: Urls, location_name: "Content"))
|
|
245
|
+
AdditionalResources.struct_class = Types::AdditionalResources
|
|
246
|
+
|
|
247
|
+
AdditionalResourcesList.member = Shapes::ShapeRef.new(shape: AdditionalResources)
|
|
248
|
+
|
|
239
249
|
Answer.add_member(:question_id, Shapes::ShapeRef.new(shape: QuestionId, location_name: "QuestionId"))
|
|
240
250
|
Answer.add_member(:pillar_id, Shapes::ShapeRef.new(shape: PillarId, location_name: "PillarId"))
|
|
241
251
|
Answer.add_member(:question_title, Shapes::ShapeRef.new(shape: QuestionTitle, location_name: "QuestionTitle"))
|
|
@@ -274,6 +284,7 @@ module Aws::WellArchitected
|
|
|
274
284
|
Choice.add_member(:description, Shapes::ShapeRef.new(shape: ChoiceDescription, location_name: "Description"))
|
|
275
285
|
Choice.add_member(:helpful_resource, Shapes::ShapeRef.new(shape: ChoiceContent, location_name: "HelpfulResource"))
|
|
276
286
|
Choice.add_member(:improvement_plan, Shapes::ShapeRef.new(shape: ChoiceContent, location_name: "ImprovementPlan"))
|
|
287
|
+
Choice.add_member(:additional_resources, Shapes::ShapeRef.new(shape: AdditionalResourcesList, location_name: "AdditionalResources"))
|
|
277
288
|
Choice.struct_class = Types::Choice
|
|
278
289
|
|
|
279
290
|
ChoiceAnswer.add_member(:choice_id, Shapes::ShapeRef.new(shape: ChoiceId, location_name: "ChoiceId"))
|
|
@@ -352,7 +363,7 @@ module Aws::WellArchitected
|
|
|
352
363
|
CreateWorkloadInput.add_member(:non_aws_regions, Shapes::ShapeRef.new(shape: WorkloadNonAwsRegions, location_name: "NonAwsRegions"))
|
|
353
364
|
CreateWorkloadInput.add_member(:pillar_priorities, Shapes::ShapeRef.new(shape: WorkloadPillarPriorities, location_name: "PillarPriorities"))
|
|
354
365
|
CreateWorkloadInput.add_member(:architectural_design, Shapes::ShapeRef.new(shape: WorkloadArchitecturalDesign, location_name: "ArchitecturalDesign"))
|
|
355
|
-
CreateWorkloadInput.add_member(:review_owner, Shapes::ShapeRef.new(shape: WorkloadReviewOwner,
|
|
366
|
+
CreateWorkloadInput.add_member(:review_owner, Shapes::ShapeRef.new(shape: WorkloadReviewOwner, location_name: "ReviewOwner"))
|
|
356
367
|
CreateWorkloadInput.add_member(:industry_type, Shapes::ShapeRef.new(shape: WorkloadIndustryType, location_name: "IndustryType"))
|
|
357
368
|
CreateWorkloadInput.add_member(:industry, Shapes::ShapeRef.new(shape: WorkloadIndustry, location_name: "Industry"))
|
|
358
369
|
CreateWorkloadInput.add_member(:lenses, Shapes::ShapeRef.new(shape: WorkloadLenses, required: true, location_name: "Lenses"))
|
|
@@ -501,6 +512,7 @@ module Aws::WellArchitected
|
|
|
501
512
|
Lens.add_member(:description, Shapes::ShapeRef.new(shape: LensDescription, location_name: "Description"))
|
|
502
513
|
Lens.add_member(:owner, Shapes::ShapeRef.new(shape: LensOwner, location_name: "Owner"))
|
|
503
514
|
Lens.add_member(:share_invitation_id, Shapes::ShapeRef.new(shape: ShareInvitationId, location_name: "ShareInvitationId"))
|
|
515
|
+
Lens.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
504
516
|
Lens.struct_class = Types::Lens
|
|
505
517
|
|
|
506
518
|
LensAliases.member = Shapes::ShapeRef.new(shape: LensAlias)
|
|
@@ -856,6 +868,8 @@ module Aws::WellArchitected
|
|
|
856
868
|
UpgradeLensReviewInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
|
|
857
869
|
UpgradeLensReviewInput.struct_class = Types::UpgradeLensReviewInput
|
|
858
870
|
|
|
871
|
+
Urls.member = Shapes::ShapeRef.new(shape: ChoiceContent)
|
|
872
|
+
|
|
859
873
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, required: true, location_name: "Message"))
|
|
860
874
|
ValidationException.add_member(:reason, Shapes::ShapeRef.new(shape: ValidationExceptionReason, location_name: "Reason"))
|
|
861
875
|
ValidationException.add_member(:fields, Shapes::ShapeRef.new(shape: ValidationExceptionFieldList, location_name: "Fields"))
|
|
@@ -24,6 +24,26 @@ module Aws::WellArchitected
|
|
|
24
24
|
include Aws::Structure
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
+
# The choice level additional resources.
|
|
28
|
+
#
|
|
29
|
+
# @!attribute [rw] type
|
|
30
|
+
# Type of additional resource.
|
|
31
|
+
# @return [String]
|
|
32
|
+
#
|
|
33
|
+
# @!attribute [rw] content
|
|
34
|
+
# The URLs for additional resources, either helpful resources or
|
|
35
|
+
# improvement plans. Up to five additional URLs can be specified.
|
|
36
|
+
# @return [Array<Types::ChoiceContent>]
|
|
37
|
+
#
|
|
38
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/AdditionalResources AWS API Documentation
|
|
39
|
+
#
|
|
40
|
+
class AdditionalResources < Struct.new(
|
|
41
|
+
:type,
|
|
42
|
+
:content)
|
|
43
|
+
SENSITIVE = []
|
|
44
|
+
include Aws::Structure
|
|
45
|
+
end
|
|
46
|
+
|
|
27
47
|
# An answer of the question.
|
|
28
48
|
#
|
|
29
49
|
# @!attribute [rw] question_id
|
|
@@ -221,6 +241,12 @@ module Aws::WellArchitected
|
|
|
221
241
|
# The choice level improvement plan.
|
|
222
242
|
# @return [Types::ChoiceContent]
|
|
223
243
|
#
|
|
244
|
+
# @!attribute [rw] additional_resources
|
|
245
|
+
# The additional resources for a choice. A choice can have up to two
|
|
246
|
+
# additional resources: one of type `HELPFUL_RESOURCE`, one of type
|
|
247
|
+
# `IMPROVEMENT_PLAN`, or both.
|
|
248
|
+
# @return [Array<Types::AdditionalResources>]
|
|
249
|
+
#
|
|
224
250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/Choice AWS API Documentation
|
|
225
251
|
#
|
|
226
252
|
class Choice < Struct.new(
|
|
@@ -228,7 +254,8 @@ module Aws::WellArchitected
|
|
|
228
254
|
:title,
|
|
229
255
|
:description,
|
|
230
256
|
:helpful_resource,
|
|
231
|
-
:improvement_plan
|
|
257
|
+
:improvement_plan,
|
|
258
|
+
:additional_resources)
|
|
232
259
|
SENSITIVE = []
|
|
233
260
|
include Aws::Structure
|
|
234
261
|
end
|
|
@@ -402,7 +429,14 @@ module Aws::WellArchitected
|
|
|
402
429
|
# }
|
|
403
430
|
#
|
|
404
431
|
# @!attribute [rw] lens_alias
|
|
405
|
-
# The alias of the lens
|
|
432
|
+
# The alias of the lens.
|
|
433
|
+
#
|
|
434
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
435
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
436
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
437
|
+
#
|
|
438
|
+
# For custom lenses, this is the lens ARN, such as
|
|
439
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
406
440
|
#
|
|
407
441
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
408
442
|
# @return [String]
|
|
@@ -463,7 +497,14 @@ module Aws::WellArchitected
|
|
|
463
497
|
# }
|
|
464
498
|
#
|
|
465
499
|
# @!attribute [rw] lens_alias
|
|
466
|
-
# The alias of the lens
|
|
500
|
+
# The alias of the lens.
|
|
501
|
+
#
|
|
502
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
503
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
504
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
505
|
+
#
|
|
506
|
+
# For custom lenses, this is the lens ARN, such as
|
|
507
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
467
508
|
#
|
|
468
509
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
469
510
|
# @return [String]
|
|
@@ -608,7 +649,7 @@ module Aws::WellArchitected
|
|
|
608
649
|
# non_aws_regions: ["WorkloadNonAwsRegion"],
|
|
609
650
|
# pillar_priorities: ["PillarId"],
|
|
610
651
|
# architectural_design: "WorkloadArchitecturalDesign",
|
|
611
|
-
# review_owner: "WorkloadReviewOwner",
|
|
652
|
+
# review_owner: "WorkloadReviewOwner",
|
|
612
653
|
# industry_type: "WorkloadIndustryType",
|
|
613
654
|
# industry: "WorkloadIndustry",
|
|
614
655
|
# lenses: ["LensAlias"], # required
|
|
@@ -888,7 +929,14 @@ module Aws::WellArchitected
|
|
|
888
929
|
# }
|
|
889
930
|
#
|
|
890
931
|
# @!attribute [rw] lens_alias
|
|
891
|
-
# The alias of the lens
|
|
932
|
+
# The alias of the lens.
|
|
933
|
+
#
|
|
934
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
935
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
936
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
937
|
+
#
|
|
938
|
+
# For custom lenses, this is the lens ARN, such as
|
|
939
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
892
940
|
#
|
|
893
941
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
894
942
|
# @return [String]
|
|
@@ -939,7 +987,14 @@ module Aws::WellArchitected
|
|
|
939
987
|
# @return [String]
|
|
940
988
|
#
|
|
941
989
|
# @!attribute [rw] lens_alias
|
|
942
|
-
# The alias of the lens
|
|
990
|
+
# The alias of the lens.
|
|
991
|
+
#
|
|
992
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
993
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
994
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
995
|
+
#
|
|
996
|
+
# For custom lenses, this is the lens ARN, such as
|
|
997
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
943
998
|
#
|
|
944
999
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
945
1000
|
# @return [String]
|
|
@@ -1102,7 +1157,14 @@ module Aws::WellArchitected
|
|
|
1102
1157
|
# }
|
|
1103
1158
|
#
|
|
1104
1159
|
# @!attribute [rw] lens_alias
|
|
1105
|
-
# The alias of the lens
|
|
1160
|
+
# The alias of the lens.
|
|
1161
|
+
#
|
|
1162
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1163
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1164
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1165
|
+
#
|
|
1166
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1167
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1106
1168
|
#
|
|
1107
1169
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1108
1170
|
# @return [String]
|
|
@@ -1150,7 +1212,14 @@ module Aws::WellArchitected
|
|
|
1150
1212
|
# @return [String]
|
|
1151
1213
|
#
|
|
1152
1214
|
# @!attribute [rw] lens_alias
|
|
1153
|
-
# The alias of the lens
|
|
1215
|
+
# The alias of the lens.
|
|
1216
|
+
#
|
|
1217
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1218
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1219
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1220
|
+
#
|
|
1221
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1222
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1154
1223
|
#
|
|
1155
1224
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1156
1225
|
# @return [String]
|
|
@@ -1190,7 +1259,14 @@ module Aws::WellArchitected
|
|
|
1190
1259
|
# @return [Integer]
|
|
1191
1260
|
#
|
|
1192
1261
|
# @!attribute [rw] lens_alias
|
|
1193
|
-
# The alias of the lens
|
|
1262
|
+
# The alias of the lens.
|
|
1263
|
+
#
|
|
1264
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1265
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1266
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1267
|
+
#
|
|
1268
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1269
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1194
1270
|
#
|
|
1195
1271
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1196
1272
|
# @return [String]
|
|
@@ -1224,7 +1300,14 @@ module Aws::WellArchitected
|
|
|
1224
1300
|
# }
|
|
1225
1301
|
#
|
|
1226
1302
|
# @!attribute [rw] lens_alias
|
|
1227
|
-
# The alias of the lens
|
|
1303
|
+
# The alias of the lens.
|
|
1304
|
+
#
|
|
1305
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1306
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1307
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1308
|
+
#
|
|
1309
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1310
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1228
1311
|
#
|
|
1229
1312
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1230
1313
|
# @return [String]
|
|
@@ -1271,7 +1354,14 @@ module Aws::WellArchitected
|
|
|
1271
1354
|
# @return [String]
|
|
1272
1355
|
#
|
|
1273
1356
|
# @!attribute [rw] lens_alias
|
|
1274
|
-
# The alias of the lens
|
|
1357
|
+
# The alias of the lens.
|
|
1358
|
+
#
|
|
1359
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1360
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1361
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1362
|
+
#
|
|
1363
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1364
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1275
1365
|
#
|
|
1276
1366
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1277
1367
|
# @return [String]
|
|
@@ -1336,7 +1426,14 @@ module Aws::WellArchitected
|
|
|
1336
1426
|
# @return [String]
|
|
1337
1427
|
#
|
|
1338
1428
|
# @!attribute [rw] lens_alias
|
|
1339
|
-
# The alias of the lens
|
|
1429
|
+
# The alias of the lens.
|
|
1430
|
+
#
|
|
1431
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1432
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1433
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1434
|
+
#
|
|
1435
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1436
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1340
1437
|
#
|
|
1341
1438
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1342
1439
|
# @return [String]
|
|
@@ -1394,7 +1491,14 @@ module Aws::WellArchitected
|
|
|
1394
1491
|
# }
|
|
1395
1492
|
#
|
|
1396
1493
|
# @!attribute [rw] lens_alias
|
|
1397
|
-
# The alias of the lens
|
|
1494
|
+
# The alias of the lens.
|
|
1495
|
+
#
|
|
1496
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1497
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1498
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1499
|
+
#
|
|
1500
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1501
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1398
1502
|
#
|
|
1399
1503
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1400
1504
|
# @return [String]
|
|
@@ -1418,7 +1522,14 @@ module Aws::WellArchitected
|
|
|
1418
1522
|
end
|
|
1419
1523
|
|
|
1420
1524
|
# @!attribute [rw] lens_alias
|
|
1421
|
-
# The alias of the lens
|
|
1525
|
+
# The alias of the lens.
|
|
1526
|
+
#
|
|
1527
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1528
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1529
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1530
|
+
#
|
|
1531
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1532
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1422
1533
|
#
|
|
1423
1534
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1424
1535
|
# @return [String]
|
|
@@ -1555,7 +1666,14 @@ module Aws::WellArchitected
|
|
|
1555
1666
|
# }
|
|
1556
1667
|
#
|
|
1557
1668
|
# @!attribute [rw] lens_alias
|
|
1558
|
-
# The alias of the lens
|
|
1669
|
+
# The alias of the lens.
|
|
1670
|
+
#
|
|
1671
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1672
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1673
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1674
|
+
#
|
|
1675
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1676
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1559
1677
|
#
|
|
1560
1678
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1561
1679
|
# @return [String]
|
|
@@ -1697,6 +1815,10 @@ module Aws::WellArchitected
|
|
|
1697
1815
|
# The ID assigned to the share invitation.
|
|
1698
1816
|
# @return [String]
|
|
1699
1817
|
#
|
|
1818
|
+
# @!attribute [rw] tags
|
|
1819
|
+
# The tags assigned to the lens.
|
|
1820
|
+
# @return [Hash<String,String>]
|
|
1821
|
+
#
|
|
1700
1822
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/Lens AWS API Documentation
|
|
1701
1823
|
#
|
|
1702
1824
|
class Lens < Struct.new(
|
|
@@ -1705,7 +1827,8 @@ module Aws::WellArchitected
|
|
|
1705
1827
|
:name,
|
|
1706
1828
|
:description,
|
|
1707
1829
|
:owner,
|
|
1708
|
-
:share_invitation_id
|
|
1830
|
+
:share_invitation_id,
|
|
1831
|
+
:tags)
|
|
1709
1832
|
SENSITIVE = []
|
|
1710
1833
|
include Aws::Structure
|
|
1711
1834
|
end
|
|
@@ -1713,7 +1836,14 @@ module Aws::WellArchitected
|
|
|
1713
1836
|
# A lens review of a question.
|
|
1714
1837
|
#
|
|
1715
1838
|
# @!attribute [rw] lens_alias
|
|
1716
|
-
# The alias of the lens
|
|
1839
|
+
# The alias of the lens.
|
|
1840
|
+
#
|
|
1841
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1842
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1843
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1844
|
+
#
|
|
1845
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1846
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1717
1847
|
#
|
|
1718
1848
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1719
1849
|
# @return [String]
|
|
@@ -1775,7 +1905,14 @@ module Aws::WellArchitected
|
|
|
1775
1905
|
# A report of a lens review.
|
|
1776
1906
|
#
|
|
1777
1907
|
# @!attribute [rw] lens_alias
|
|
1778
|
-
# The alias of the lens
|
|
1908
|
+
# The alias of the lens.
|
|
1909
|
+
#
|
|
1910
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1911
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1912
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1913
|
+
#
|
|
1914
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1915
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1779
1916
|
#
|
|
1780
1917
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1781
1918
|
# @return [String]
|
|
@@ -1803,7 +1940,14 @@ module Aws::WellArchitected
|
|
|
1803
1940
|
# A lens review summary of a workload.
|
|
1804
1941
|
#
|
|
1805
1942
|
# @!attribute [rw] lens_alias
|
|
1806
|
-
# The alias of the lens
|
|
1943
|
+
# The alias of the lens.
|
|
1944
|
+
#
|
|
1945
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
1946
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
1947
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
1948
|
+
#
|
|
1949
|
+
# For custom lenses, this is the lens ARN, such as
|
|
1950
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1807
1951
|
#
|
|
1808
1952
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1809
1953
|
# @return [String]
|
|
@@ -1879,7 +2023,14 @@ module Aws::WellArchitected
|
|
|
1879
2023
|
# @return [String]
|
|
1880
2024
|
#
|
|
1881
2025
|
# @!attribute [rw] lens_alias
|
|
1882
|
-
# The alias of the lens
|
|
2026
|
+
# The alias of the lens.
|
|
2027
|
+
#
|
|
2028
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
2029
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
2030
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
2031
|
+
#
|
|
2032
|
+
# For custom lenses, this is the lens ARN, such as
|
|
2033
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1883
2034
|
#
|
|
1884
2035
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1885
2036
|
# @return [String]
|
|
@@ -1949,7 +2100,14 @@ module Aws::WellArchitected
|
|
|
1949
2100
|
# @return [String]
|
|
1950
2101
|
#
|
|
1951
2102
|
# @!attribute [rw] lens_alias
|
|
1952
|
-
# The alias of the lens
|
|
2103
|
+
# The alias of the lens.
|
|
2104
|
+
#
|
|
2105
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
2106
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
2107
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
2108
|
+
#
|
|
2109
|
+
# For custom lenses, this is the lens ARN, such as
|
|
2110
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
1953
2111
|
#
|
|
1954
2112
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
1955
2113
|
# @return [String]
|
|
@@ -1999,7 +2157,14 @@ module Aws::WellArchitected
|
|
|
1999
2157
|
# @return [String]
|
|
2000
2158
|
#
|
|
2001
2159
|
# @!attribute [rw] lens_alias
|
|
2002
|
-
# The alias of the lens
|
|
2160
|
+
# The alias of the lens.
|
|
2161
|
+
#
|
|
2162
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
2163
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
2164
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
2165
|
+
#
|
|
2166
|
+
# For custom lenses, this is the lens ARN, such as
|
|
2167
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
2003
2168
|
#
|
|
2004
2169
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
2005
2170
|
# @return [String]
|
|
@@ -2051,7 +2216,14 @@ module Aws::WellArchitected
|
|
|
2051
2216
|
# @return [Integer]
|
|
2052
2217
|
#
|
|
2053
2218
|
# @!attribute [rw] lens_alias
|
|
2054
|
-
# The alias of the lens
|
|
2219
|
+
# The alias of the lens.
|
|
2220
|
+
#
|
|
2221
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
2222
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
2223
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
2224
|
+
#
|
|
2225
|
+
# For custom lenses, this is the lens ARN, such as
|
|
2226
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
2055
2227
|
#
|
|
2056
2228
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
2057
2229
|
# @return [String]
|
|
@@ -2101,7 +2273,14 @@ module Aws::WellArchitected
|
|
|
2101
2273
|
# @return [String]
|
|
2102
2274
|
#
|
|
2103
2275
|
# @!attribute [rw] lens_alias
|
|
2104
|
-
# The alias of the lens
|
|
2276
|
+
# The alias of the lens.
|
|
2277
|
+
#
|
|
2278
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
2279
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
2280
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
2281
|
+
#
|
|
2282
|
+
# For custom lenses, this is the lens ARN, such as
|
|
2283
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
2105
2284
|
#
|
|
2106
2285
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
2107
2286
|
# @return [String]
|
|
@@ -2153,7 +2332,14 @@ module Aws::WellArchitected
|
|
|
2153
2332
|
# @return [Integer]
|
|
2154
2333
|
#
|
|
2155
2334
|
# @!attribute [rw] lens_alias
|
|
2156
|
-
# The alias of the lens
|
|
2335
|
+
# The alias of the lens.
|
|
2336
|
+
#
|
|
2337
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
2338
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
2339
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
2340
|
+
#
|
|
2341
|
+
# For custom lenses, this is the lens ARN, such as
|
|
2342
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
2157
2343
|
#
|
|
2158
2344
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
2159
2345
|
# @return [String]
|
|
@@ -2268,7 +2454,14 @@ module Aws::WellArchitected
|
|
|
2268
2454
|
# }
|
|
2269
2455
|
#
|
|
2270
2456
|
# @!attribute [rw] lens_alias
|
|
2271
|
-
# The alias of the lens
|
|
2457
|
+
# The alias of the lens.
|
|
2458
|
+
#
|
|
2459
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
2460
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
2461
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
2462
|
+
#
|
|
2463
|
+
# For custom lenses, this is the lens ARN, such as
|
|
2464
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
2272
2465
|
#
|
|
2273
2466
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
2274
2467
|
# @return [String]
|
|
@@ -2948,7 +3141,14 @@ module Aws::WellArchitected
|
|
|
2948
3141
|
# @return [String]
|
|
2949
3142
|
#
|
|
2950
3143
|
# @!attribute [rw] lens_alias
|
|
2951
|
-
# The alias of the lens
|
|
3144
|
+
# The alias of the lens.
|
|
3145
|
+
#
|
|
3146
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
3147
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
3148
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
3149
|
+
#
|
|
3150
|
+
# For custom lenses, this is the lens ARN, such as
|
|
3151
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
2952
3152
|
#
|
|
2953
3153
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
2954
3154
|
# @return [String]
|
|
@@ -3142,7 +3342,14 @@ module Aws::WellArchitected
|
|
|
3142
3342
|
# @return [String]
|
|
3143
3343
|
#
|
|
3144
3344
|
# @!attribute [rw] lens_alias
|
|
3145
|
-
# The alias of the lens
|
|
3345
|
+
# The alias of the lens.
|
|
3346
|
+
#
|
|
3347
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
3348
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
3349
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
3350
|
+
#
|
|
3351
|
+
# For custom lenses, this is the lens ARN, such as
|
|
3352
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
3146
3353
|
#
|
|
3147
3354
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
3148
3355
|
# @return [String]
|
|
@@ -3197,7 +3404,14 @@ module Aws::WellArchitected
|
|
|
3197
3404
|
# @return [String]
|
|
3198
3405
|
#
|
|
3199
3406
|
# @!attribute [rw] lens_alias
|
|
3200
|
-
# The alias of the lens
|
|
3407
|
+
# The alias of the lens.
|
|
3408
|
+
#
|
|
3409
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
3410
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
3411
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
3412
|
+
#
|
|
3413
|
+
# For custom lenses, this is the lens ARN, such as
|
|
3414
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
3201
3415
|
#
|
|
3202
3416
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
3203
3417
|
# @return [String]
|
|
@@ -3241,7 +3455,14 @@ module Aws::WellArchitected
|
|
|
3241
3455
|
# @return [String]
|
|
3242
3456
|
#
|
|
3243
3457
|
# @!attribute [rw] lens_alias
|
|
3244
|
-
# The alias of the lens
|
|
3458
|
+
# The alias of the lens.
|
|
3459
|
+
#
|
|
3460
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
3461
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
3462
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
3463
|
+
#
|
|
3464
|
+
# For custom lenses, this is the lens ARN, such as
|
|
3465
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
3245
3466
|
#
|
|
3246
3467
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
3247
3468
|
# @return [String]
|
|
@@ -3586,7 +3807,14 @@ module Aws::WellArchitected
|
|
|
3586
3807
|
# @return [String]
|
|
3587
3808
|
#
|
|
3588
3809
|
# @!attribute [rw] lens_alias
|
|
3589
|
-
# The alias of the lens
|
|
3810
|
+
# The alias of the lens.
|
|
3811
|
+
#
|
|
3812
|
+
# For Amazon Web Services official lenses, this is either the lens
|
|
3813
|
+
# alias, such as `serverless`, or the lens ARN, such as
|
|
3814
|
+
# `arn:aws:wellarchitected:us-west-2::lens/serverless`.
|
|
3815
|
+
#
|
|
3816
|
+
# For custom lenses, this is the lens ARN, such as
|
|
3817
|
+
# `arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens`.
|
|
3590
3818
|
#
|
|
3591
3819
|
# Each lens is identified by its LensSummary$LensAlias.
|
|
3592
3820
|
# @return [String]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-wellarchitected
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-06-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|