aws-sdk-fis 1.43.0 → 1.44.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-fis/client.rb +101 -1
- data/lib/aws-sdk-fis/client_api.rb +123 -0
- data/lib/aws-sdk-fis/types.rb +438 -4
- data/lib/aws-sdk-fis.rb +1 -1
- data/sig/client.rbs +34 -0
- data/sig/types.rbs +124 -0
- 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: 0f94012b34aae0a5e6e45cd8debf81ce0fea3924b97b074ff72c604d9a63764c
|
4
|
+
data.tar.gz: e8a35b3b9246aebd959f02c704273b55f0ae5698864e4670b6d47df876c500fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10fb07d1570cb7f2d47335f88c2e6968a93078e58786fd504c6a41cad18f8bb5aa81d7b4f704c5b2e699c771f3f5f72a8735eb74fd54d349f199795d9b8a82ce
|
7
|
+
data.tar.gz: 3d0dca2c541b6a5fdc0e71c4411e7a20b3ac0dc364dd0891ed1c17f72562bd5ec5ab39903b9baa75407327af9b75ab2d74bec3d6155eaca8816ffc9f32ae4c3a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.0
|
data/lib/aws-sdk-fis/client.rb
CHANGED
@@ -502,6 +502,9 @@ module Aws::FIS
|
|
502
502
|
# @option params [Types::CreateExperimentTemplateExperimentOptionsInput] :experiment_options
|
503
503
|
# The experiment options for the experiment template.
|
504
504
|
#
|
505
|
+
# @option params [Types::CreateExperimentTemplateReportConfigurationInput] :experiment_report_configuration
|
506
|
+
# The experiment report configuration for the experiment template.
|
507
|
+
#
|
505
508
|
# @return [Types::CreateExperimentTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
506
509
|
#
|
507
510
|
# * {Types::CreateExperimentTemplateResponse#experiment_template #experiment_template} => Types::ExperimentTemplate
|
@@ -567,6 +570,23 @@ module Aws::FIS
|
|
567
570
|
# account_targeting: "single-account", # accepts single-account, multi-account
|
568
571
|
# empty_target_resolution_mode: "fail", # accepts fail, skip
|
569
572
|
# },
|
573
|
+
# experiment_report_configuration: {
|
574
|
+
# outputs: {
|
575
|
+
# s3_configuration: {
|
576
|
+
# bucket_name: "S3BucketName",
|
577
|
+
# prefix: "S3ObjectKey",
|
578
|
+
# },
|
579
|
+
# },
|
580
|
+
# data_sources: {
|
581
|
+
# cloud_watch_dashboards: [
|
582
|
+
# {
|
583
|
+
# dashboard_identifier: "ReportConfigurationCloudWatchDashboardIdentifier",
|
584
|
+
# },
|
585
|
+
# ],
|
586
|
+
# },
|
587
|
+
# pre_experiment_duration: "ReportConfigurationDuration",
|
588
|
+
# post_experiment_duration: "ReportConfigurationDuration",
|
589
|
+
# },
|
570
590
|
# })
|
571
591
|
#
|
572
592
|
# @example Response structure
|
@@ -611,6 +631,12 @@ module Aws::FIS
|
|
611
631
|
# resp.experiment_template.experiment_options.account_targeting #=> String, one of "single-account", "multi-account"
|
612
632
|
# resp.experiment_template.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
|
613
633
|
# resp.experiment_template.target_account_configurations_count #=> Integer
|
634
|
+
# resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
|
635
|
+
# resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
|
636
|
+
# resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
|
637
|
+
# resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
|
638
|
+
# resp.experiment_template.experiment_report_configuration.pre_experiment_duration #=> String
|
639
|
+
# resp.experiment_template.experiment_report_configuration.post_experiment_duration #=> String
|
614
640
|
#
|
615
641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/CreateExperimentTemplate AWS API Documentation
|
616
642
|
#
|
@@ -736,6 +762,12 @@ module Aws::FIS
|
|
736
762
|
# resp.experiment_template.experiment_options.account_targeting #=> String, one of "single-account", "multi-account"
|
737
763
|
# resp.experiment_template.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
|
738
764
|
# resp.experiment_template.target_account_configurations_count #=> Integer
|
765
|
+
# resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
|
766
|
+
# resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
|
767
|
+
# resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
|
768
|
+
# resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
|
769
|
+
# resp.experiment_template.experiment_report_configuration.pre_experiment_duration #=> String
|
770
|
+
# resp.experiment_template.experiment_report_configuration.post_experiment_duration #=> String
|
739
771
|
#
|
740
772
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/DeleteExperimentTemplate AWS API Documentation
|
741
773
|
#
|
@@ -886,6 +918,18 @@ module Aws::FIS
|
|
886
918
|
# resp.experiment.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
|
887
919
|
# resp.experiment.experiment_options.actions_mode #=> String, one of "skip-all", "run-all"
|
888
920
|
# resp.experiment.target_account_configurations_count #=> Integer
|
921
|
+
# resp.experiment.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
|
922
|
+
# resp.experiment.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
|
923
|
+
# resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
|
924
|
+
# resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
|
925
|
+
# resp.experiment.experiment_report_configuration.pre_experiment_duration #=> String
|
926
|
+
# resp.experiment.experiment_report_configuration.post_experiment_duration #=> String
|
927
|
+
# resp.experiment.experiment_report.state.status #=> String, one of "pending", "running", "completed", "cancelled", "failed"
|
928
|
+
# resp.experiment.experiment_report.state.reason #=> String
|
929
|
+
# resp.experiment.experiment_report.state.error.code #=> String
|
930
|
+
# resp.experiment.experiment_report.s3_reports #=> Array
|
931
|
+
# resp.experiment.experiment_report.s3_reports[0].arn #=> String
|
932
|
+
# resp.experiment.experiment_report.s3_reports[0].report_type #=> String
|
889
933
|
#
|
890
934
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/GetExperiment AWS API Documentation
|
891
935
|
#
|
@@ -988,6 +1032,12 @@ module Aws::FIS
|
|
988
1032
|
# resp.experiment_template.experiment_options.account_targeting #=> String, one of "single-account", "multi-account"
|
989
1033
|
# resp.experiment_template.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
|
990
1034
|
# resp.experiment_template.target_account_configurations_count #=> Integer
|
1035
|
+
# resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
|
1036
|
+
# resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
|
1037
|
+
# resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
|
1038
|
+
# resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
|
1039
|
+
# resp.experiment_template.experiment_report_configuration.pre_experiment_duration #=> String
|
1040
|
+
# resp.experiment_template.experiment_report_configuration.post_experiment_duration #=> String
|
991
1041
|
#
|
992
1042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/GetExperimentTemplate AWS API Documentation
|
993
1043
|
#
|
@@ -1532,6 +1582,18 @@ module Aws::FIS
|
|
1532
1582
|
# resp.experiment.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
|
1533
1583
|
# resp.experiment.experiment_options.actions_mode #=> String, one of "skip-all", "run-all"
|
1534
1584
|
# resp.experiment.target_account_configurations_count #=> Integer
|
1585
|
+
# resp.experiment.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
|
1586
|
+
# resp.experiment.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
|
1587
|
+
# resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
|
1588
|
+
# resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
|
1589
|
+
# resp.experiment.experiment_report_configuration.pre_experiment_duration #=> String
|
1590
|
+
# resp.experiment.experiment_report_configuration.post_experiment_duration #=> String
|
1591
|
+
# resp.experiment.experiment_report.state.status #=> String, one of "pending", "running", "completed", "cancelled", "failed"
|
1592
|
+
# resp.experiment.experiment_report.state.reason #=> String
|
1593
|
+
# resp.experiment.experiment_report.state.error.code #=> String
|
1594
|
+
# resp.experiment.experiment_report.s3_reports #=> Array
|
1595
|
+
# resp.experiment.experiment_report.s3_reports[0].arn #=> String
|
1596
|
+
# resp.experiment.experiment_report.s3_reports[0].report_type #=> String
|
1535
1597
|
#
|
1536
1598
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/StartExperiment AWS API Documentation
|
1537
1599
|
#
|
@@ -1610,6 +1672,18 @@ module Aws::FIS
|
|
1610
1672
|
# resp.experiment.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
|
1611
1673
|
# resp.experiment.experiment_options.actions_mode #=> String, one of "skip-all", "run-all"
|
1612
1674
|
# resp.experiment.target_account_configurations_count #=> Integer
|
1675
|
+
# resp.experiment.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
|
1676
|
+
# resp.experiment.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
|
1677
|
+
# resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
|
1678
|
+
# resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
|
1679
|
+
# resp.experiment.experiment_report_configuration.pre_experiment_duration #=> String
|
1680
|
+
# resp.experiment.experiment_report_configuration.post_experiment_duration #=> String
|
1681
|
+
# resp.experiment.experiment_report.state.status #=> String, one of "pending", "running", "completed", "cancelled", "failed"
|
1682
|
+
# resp.experiment.experiment_report.state.reason #=> String
|
1683
|
+
# resp.experiment.experiment_report.state.error.code #=> String
|
1684
|
+
# resp.experiment.experiment_report.s3_reports #=> Array
|
1685
|
+
# resp.experiment.experiment_report.s3_reports[0].arn #=> String
|
1686
|
+
# resp.experiment.experiment_report.s3_reports[0].report_type #=> String
|
1613
1687
|
#
|
1614
1688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/StopExperiment AWS API Documentation
|
1615
1689
|
#
|
@@ -1701,6 +1775,9 @@ module Aws::FIS
|
|
1701
1775
|
# @option params [Types::UpdateExperimentTemplateExperimentOptionsInput] :experiment_options
|
1702
1776
|
# The experiment options for the experiment template.
|
1703
1777
|
#
|
1778
|
+
# @option params [Types::UpdateExperimentTemplateReportConfigurationInput] :experiment_report_configuration
|
1779
|
+
# The experiment report configuration for the experiment template.
|
1780
|
+
#
|
1704
1781
|
# @return [Types::UpdateExperimentTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1705
1782
|
#
|
1706
1783
|
# * {Types::UpdateExperimentTemplateResponse#experiment_template #experiment_template} => Types::ExperimentTemplate
|
@@ -1762,6 +1839,23 @@ module Aws::FIS
|
|
1762
1839
|
# experiment_options: {
|
1763
1840
|
# empty_target_resolution_mode: "fail", # accepts fail, skip
|
1764
1841
|
# },
|
1842
|
+
# experiment_report_configuration: {
|
1843
|
+
# outputs: {
|
1844
|
+
# s3_configuration: {
|
1845
|
+
# bucket_name: "S3BucketName",
|
1846
|
+
# prefix: "S3ObjectKey",
|
1847
|
+
# },
|
1848
|
+
# },
|
1849
|
+
# data_sources: {
|
1850
|
+
# cloud_watch_dashboards: [
|
1851
|
+
# {
|
1852
|
+
# dashboard_identifier: "ReportConfigurationCloudWatchDashboardIdentifier",
|
1853
|
+
# },
|
1854
|
+
# ],
|
1855
|
+
# },
|
1856
|
+
# pre_experiment_duration: "ReportConfigurationDuration",
|
1857
|
+
# post_experiment_duration: "ReportConfigurationDuration",
|
1858
|
+
# },
|
1765
1859
|
# })
|
1766
1860
|
#
|
1767
1861
|
# @example Response structure
|
@@ -1806,6 +1900,12 @@ module Aws::FIS
|
|
1806
1900
|
# resp.experiment_template.experiment_options.account_targeting #=> String, one of "single-account", "multi-account"
|
1807
1901
|
# resp.experiment_template.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
|
1808
1902
|
# resp.experiment_template.target_account_configurations_count #=> Integer
|
1903
|
+
# resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
|
1904
|
+
# resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
|
1905
|
+
# resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
|
1906
|
+
# resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
|
1907
|
+
# resp.experiment_template.experiment_report_configuration.pre_experiment_duration #=> String
|
1908
|
+
# resp.experiment_template.experiment_report_configuration.post_experiment_duration #=> String
|
1809
1909
|
#
|
1810
1910
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/UpdateExperimentTemplate AWS API Documentation
|
1811
1911
|
#
|
@@ -1915,7 +2015,7 @@ module Aws::FIS
|
|
1915
2015
|
tracer: tracer
|
1916
2016
|
)
|
1917
2017
|
context[:gem_name] = 'aws-sdk-fis'
|
1918
|
-
context[:gem_version] = '1.
|
2018
|
+
context[:gem_version] = '1.44.0'
|
1919
2019
|
Seahorse::Client::Request.new(handlers, context)
|
1920
2020
|
end
|
1921
2021
|
|
@@ -36,6 +36,7 @@ module Aws::FIS
|
|
36
36
|
CreateExperimentTemplateActionInputMap = Shapes::MapShape.new(name: 'CreateExperimentTemplateActionInputMap')
|
37
37
|
CreateExperimentTemplateExperimentOptionsInput = Shapes::StructureShape.new(name: 'CreateExperimentTemplateExperimentOptionsInput')
|
38
38
|
CreateExperimentTemplateLogConfigurationInput = Shapes::StructureShape.new(name: 'CreateExperimentTemplateLogConfigurationInput')
|
39
|
+
CreateExperimentTemplateReportConfigurationInput = Shapes::StructureShape.new(name: 'CreateExperimentTemplateReportConfigurationInput')
|
39
40
|
CreateExperimentTemplateRequest = Shapes::StructureShape.new(name: 'CreateExperimentTemplateRequest')
|
40
41
|
CreateExperimentTemplateResponse = Shapes::StructureShape.new(name: 'CreateExperimentTemplateResponse')
|
41
42
|
CreateExperimentTemplateStopConditionInput = Shapes::StructureShape.new(name: 'CreateExperimentTemplateStopConditionInput')
|
@@ -77,6 +78,22 @@ module Aws::FIS
|
|
77
78
|
ExperimentId = Shapes::StringShape.new(name: 'ExperimentId')
|
78
79
|
ExperimentLogConfiguration = Shapes::StructureShape.new(name: 'ExperimentLogConfiguration')
|
79
80
|
ExperimentOptions = Shapes::StructureShape.new(name: 'ExperimentOptions')
|
81
|
+
ExperimentReport = Shapes::StructureShape.new(name: 'ExperimentReport')
|
82
|
+
ExperimentReportConfiguration = Shapes::StructureShape.new(name: 'ExperimentReportConfiguration')
|
83
|
+
ExperimentReportConfigurationCloudWatchDashboard = Shapes::StructureShape.new(name: 'ExperimentReportConfigurationCloudWatchDashboard')
|
84
|
+
ExperimentReportConfigurationCloudWatchDashboardList = Shapes::ListShape.new(name: 'ExperimentReportConfigurationCloudWatchDashboardList')
|
85
|
+
ExperimentReportConfigurationDataSources = Shapes::StructureShape.new(name: 'ExperimentReportConfigurationDataSources')
|
86
|
+
ExperimentReportConfigurationOutputs = Shapes::StructureShape.new(name: 'ExperimentReportConfigurationOutputs')
|
87
|
+
ExperimentReportConfigurationOutputsS3Configuration = Shapes::StructureShape.new(name: 'ExperimentReportConfigurationOutputsS3Configuration')
|
88
|
+
ExperimentReportError = Shapes::StructureShape.new(name: 'ExperimentReportError')
|
89
|
+
ExperimentReportErrorCode = Shapes::StringShape.new(name: 'ExperimentReportErrorCode')
|
90
|
+
ExperimentReportReason = Shapes::StringShape.new(name: 'ExperimentReportReason')
|
91
|
+
ExperimentReportS3Report = Shapes::StructureShape.new(name: 'ExperimentReportS3Report')
|
92
|
+
ExperimentReportS3ReportArn = Shapes::StringShape.new(name: 'ExperimentReportS3ReportArn')
|
93
|
+
ExperimentReportS3ReportList = Shapes::ListShape.new(name: 'ExperimentReportS3ReportList')
|
94
|
+
ExperimentReportS3ReportType = Shapes::StringShape.new(name: 'ExperimentReportS3ReportType')
|
95
|
+
ExperimentReportState = Shapes::StructureShape.new(name: 'ExperimentReportState')
|
96
|
+
ExperimentReportStatus = Shapes::StringShape.new(name: 'ExperimentReportStatus')
|
80
97
|
ExperimentS3LogConfiguration = Shapes::StructureShape.new(name: 'ExperimentS3LogConfiguration')
|
81
98
|
ExperimentStartTime = Shapes::TimestampShape.new(name: 'ExperimentStartTime')
|
82
99
|
ExperimentState = Shapes::StructureShape.new(name: 'ExperimentState')
|
@@ -119,6 +136,13 @@ module Aws::FIS
|
|
119
136
|
ExperimentTemplateExperimentOptions = Shapes::StructureShape.new(name: 'ExperimentTemplateExperimentOptions')
|
120
137
|
ExperimentTemplateId = Shapes::StringShape.new(name: 'ExperimentTemplateId')
|
121
138
|
ExperimentTemplateLogConfiguration = Shapes::StructureShape.new(name: 'ExperimentTemplateLogConfiguration')
|
139
|
+
ExperimentTemplateReportConfiguration = Shapes::StructureShape.new(name: 'ExperimentTemplateReportConfiguration')
|
140
|
+
ExperimentTemplateReportConfigurationCloudWatchDashboard = Shapes::StructureShape.new(name: 'ExperimentTemplateReportConfigurationCloudWatchDashboard')
|
141
|
+
ExperimentTemplateReportConfigurationCloudWatchDashboardList = Shapes::ListShape.new(name: 'ExperimentTemplateReportConfigurationCloudWatchDashboardList')
|
142
|
+
ExperimentTemplateReportConfigurationDataSources = Shapes::StructureShape.new(name: 'ExperimentTemplateReportConfigurationDataSources')
|
143
|
+
ExperimentTemplateReportConfigurationDataSourcesInput = Shapes::StructureShape.new(name: 'ExperimentTemplateReportConfigurationDataSourcesInput')
|
144
|
+
ExperimentTemplateReportConfigurationOutputs = Shapes::StructureShape.new(name: 'ExperimentTemplateReportConfigurationOutputs')
|
145
|
+
ExperimentTemplateReportConfigurationOutputsInput = Shapes::StructureShape.new(name: 'ExperimentTemplateReportConfigurationOutputsInput')
|
122
146
|
ExperimentTemplateS3LogConfiguration = Shapes::StructureShape.new(name: 'ExperimentTemplateS3LogConfiguration')
|
123
147
|
ExperimentTemplateS3LogConfigurationInput = Shapes::StructureShape.new(name: 'ExperimentTemplateS3LogConfigurationInput')
|
124
148
|
ExperimentTemplateStopCondition = Shapes::StructureShape.new(name: 'ExperimentTemplateStopCondition')
|
@@ -178,6 +202,12 @@ module Aws::FIS
|
|
178
202
|
ListTargetResourceTypesResponse = Shapes::StructureShape.new(name: 'ListTargetResourceTypesResponse')
|
179
203
|
LogSchemaVersion = Shapes::IntegerShape.new(name: 'LogSchemaVersion')
|
180
204
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
205
|
+
ReportConfigurationCloudWatchDashboardIdentifier = Shapes::StringShape.new(name: 'ReportConfigurationCloudWatchDashboardIdentifier')
|
206
|
+
ReportConfigurationCloudWatchDashboardInput = Shapes::StructureShape.new(name: 'ReportConfigurationCloudWatchDashboardInput')
|
207
|
+
ReportConfigurationCloudWatchDashboardInputList = Shapes::ListShape.new(name: 'ReportConfigurationCloudWatchDashboardInputList')
|
208
|
+
ReportConfigurationDuration = Shapes::StringShape.new(name: 'ReportConfigurationDuration')
|
209
|
+
ReportConfigurationS3Output = Shapes::StructureShape.new(name: 'ReportConfigurationS3Output')
|
210
|
+
ReportConfigurationS3OutputInput = Shapes::StructureShape.new(name: 'ReportConfigurationS3OutputInput')
|
181
211
|
ResolvedTarget = Shapes::StructureShape.new(name: 'ResolvedTarget')
|
182
212
|
ResolvedTargetList = Shapes::ListShape.new(name: 'ResolvedTargetList')
|
183
213
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
@@ -232,6 +262,7 @@ module Aws::FIS
|
|
232
262
|
UpdateExperimentTemplateActionInputMap = Shapes::MapShape.new(name: 'UpdateExperimentTemplateActionInputMap')
|
233
263
|
UpdateExperimentTemplateExperimentOptionsInput = Shapes::StructureShape.new(name: 'UpdateExperimentTemplateExperimentOptionsInput')
|
234
264
|
UpdateExperimentTemplateLogConfigurationInput = Shapes::StructureShape.new(name: 'UpdateExperimentTemplateLogConfigurationInput')
|
265
|
+
UpdateExperimentTemplateReportConfigurationInput = Shapes::StructureShape.new(name: 'UpdateExperimentTemplateReportConfigurationInput')
|
235
266
|
UpdateExperimentTemplateRequest = Shapes::StructureShape.new(name: 'UpdateExperimentTemplateRequest')
|
236
267
|
UpdateExperimentTemplateResponse = Shapes::StructureShape.new(name: 'UpdateExperimentTemplateResponse')
|
237
268
|
UpdateExperimentTemplateStopConditionInput = Shapes::StructureShape.new(name: 'UpdateExperimentTemplateStopConditionInput')
|
@@ -297,6 +328,12 @@ module Aws::FIS
|
|
297
328
|
CreateExperimentTemplateLogConfigurationInput.add_member(:log_schema_version, Shapes::ShapeRef.new(shape: LogSchemaVersion, required: true, location_name: "logSchemaVersion"))
|
298
329
|
CreateExperimentTemplateLogConfigurationInput.struct_class = Types::CreateExperimentTemplateLogConfigurationInput
|
299
330
|
|
331
|
+
CreateExperimentTemplateReportConfigurationInput.add_member(:outputs, Shapes::ShapeRef.new(shape: ExperimentTemplateReportConfigurationOutputsInput, location_name: "outputs"))
|
332
|
+
CreateExperimentTemplateReportConfigurationInput.add_member(:data_sources, Shapes::ShapeRef.new(shape: ExperimentTemplateReportConfigurationDataSourcesInput, location_name: "dataSources"))
|
333
|
+
CreateExperimentTemplateReportConfigurationInput.add_member(:pre_experiment_duration, Shapes::ShapeRef.new(shape: ReportConfigurationDuration, location_name: "preExperimentDuration"))
|
334
|
+
CreateExperimentTemplateReportConfigurationInput.add_member(:post_experiment_duration, Shapes::ShapeRef.new(shape: ReportConfigurationDuration, location_name: "postExperimentDuration"))
|
335
|
+
CreateExperimentTemplateReportConfigurationInput.struct_class = Types::CreateExperimentTemplateReportConfigurationInput
|
336
|
+
|
300
337
|
CreateExperimentTemplateRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
301
338
|
CreateExperimentTemplateRequest.add_member(:description, Shapes::ShapeRef.new(shape: ExperimentTemplateDescription, required: true, location_name: "description"))
|
302
339
|
CreateExperimentTemplateRequest.add_member(:stop_conditions, Shapes::ShapeRef.new(shape: CreateExperimentTemplateStopConditionInputList, required: true, location_name: "stopConditions"))
|
@@ -306,6 +343,7 @@ module Aws::FIS
|
|
306
343
|
CreateExperimentTemplateRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
307
344
|
CreateExperimentTemplateRequest.add_member(:log_configuration, Shapes::ShapeRef.new(shape: CreateExperimentTemplateLogConfigurationInput, location_name: "logConfiguration"))
|
308
345
|
CreateExperimentTemplateRequest.add_member(:experiment_options, Shapes::ShapeRef.new(shape: CreateExperimentTemplateExperimentOptionsInput, location_name: "experimentOptions"))
|
346
|
+
CreateExperimentTemplateRequest.add_member(:experiment_report_configuration, Shapes::ShapeRef.new(shape: CreateExperimentTemplateReportConfigurationInput, location_name: "experimentReportConfiguration"))
|
309
347
|
CreateExperimentTemplateRequest.struct_class = Types::CreateExperimentTemplateRequest
|
310
348
|
|
311
349
|
CreateExperimentTemplateResponse.add_member(:experiment_template, Shapes::ShapeRef.new(shape: ExperimentTemplate, location_name: "experimentTemplate"))
|
@@ -366,6 +404,8 @@ module Aws::FIS
|
|
366
404
|
Experiment.add_member(:log_configuration, Shapes::ShapeRef.new(shape: ExperimentLogConfiguration, location_name: "logConfiguration"))
|
367
405
|
Experiment.add_member(:experiment_options, Shapes::ShapeRef.new(shape: ExperimentOptions, location_name: "experimentOptions"))
|
368
406
|
Experiment.add_member(:target_account_configurations_count, Shapes::ShapeRef.new(shape: TargetAccountConfigurationsCount, location_name: "targetAccountConfigurationsCount"))
|
407
|
+
Experiment.add_member(:experiment_report_configuration, Shapes::ShapeRef.new(shape: ExperimentReportConfiguration, location_name: "experimentReportConfiguration"))
|
408
|
+
Experiment.add_member(:experiment_report, Shapes::ShapeRef.new(shape: ExperimentReport, location_name: "experimentReport"))
|
369
409
|
Experiment.struct_class = Types::Experiment
|
370
410
|
|
371
411
|
ExperimentAction.add_member(:action_id, Shapes::ShapeRef.new(shape: ActionId, location_name: "actionId"))
|
@@ -411,6 +451,45 @@ module Aws::FIS
|
|
411
451
|
ExperimentOptions.add_member(:actions_mode, Shapes::ShapeRef.new(shape: ActionsMode, location_name: "actionsMode"))
|
412
452
|
ExperimentOptions.struct_class = Types::ExperimentOptions
|
413
453
|
|
454
|
+
ExperimentReport.add_member(:state, Shapes::ShapeRef.new(shape: ExperimentReportState, location_name: "state"))
|
455
|
+
ExperimentReport.add_member(:s3_reports, Shapes::ShapeRef.new(shape: ExperimentReportS3ReportList, location_name: "s3Reports"))
|
456
|
+
ExperimentReport.struct_class = Types::ExperimentReport
|
457
|
+
|
458
|
+
ExperimentReportConfiguration.add_member(:outputs, Shapes::ShapeRef.new(shape: ExperimentReportConfigurationOutputs, location_name: "outputs"))
|
459
|
+
ExperimentReportConfiguration.add_member(:data_sources, Shapes::ShapeRef.new(shape: ExperimentReportConfigurationDataSources, location_name: "dataSources"))
|
460
|
+
ExperimentReportConfiguration.add_member(:pre_experiment_duration, Shapes::ShapeRef.new(shape: ReportConfigurationDuration, location_name: "preExperimentDuration"))
|
461
|
+
ExperimentReportConfiguration.add_member(:post_experiment_duration, Shapes::ShapeRef.new(shape: ReportConfigurationDuration, location_name: "postExperimentDuration"))
|
462
|
+
ExperimentReportConfiguration.struct_class = Types::ExperimentReportConfiguration
|
463
|
+
|
464
|
+
ExperimentReportConfigurationCloudWatchDashboard.add_member(:dashboard_identifier, Shapes::ShapeRef.new(shape: ReportConfigurationCloudWatchDashboardIdentifier, location_name: "dashboardIdentifier"))
|
465
|
+
ExperimentReportConfigurationCloudWatchDashboard.struct_class = Types::ExperimentReportConfigurationCloudWatchDashboard
|
466
|
+
|
467
|
+
ExperimentReportConfigurationCloudWatchDashboardList.member = Shapes::ShapeRef.new(shape: ExperimentReportConfigurationCloudWatchDashboard)
|
468
|
+
|
469
|
+
ExperimentReportConfigurationDataSources.add_member(:cloud_watch_dashboards, Shapes::ShapeRef.new(shape: ExperimentReportConfigurationCloudWatchDashboardList, location_name: "cloudWatchDashboards"))
|
470
|
+
ExperimentReportConfigurationDataSources.struct_class = Types::ExperimentReportConfigurationDataSources
|
471
|
+
|
472
|
+
ExperimentReportConfigurationOutputs.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: ExperimentReportConfigurationOutputsS3Configuration, location_name: "s3Configuration"))
|
473
|
+
ExperimentReportConfigurationOutputs.struct_class = Types::ExperimentReportConfigurationOutputs
|
474
|
+
|
475
|
+
ExperimentReportConfigurationOutputsS3Configuration.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3BucketName, location_name: "bucketName"))
|
476
|
+
ExperimentReportConfigurationOutputsS3Configuration.add_member(:prefix, Shapes::ShapeRef.new(shape: S3ObjectKey, location_name: "prefix"))
|
477
|
+
ExperimentReportConfigurationOutputsS3Configuration.struct_class = Types::ExperimentReportConfigurationOutputsS3Configuration
|
478
|
+
|
479
|
+
ExperimentReportError.add_member(:code, Shapes::ShapeRef.new(shape: ExperimentReportErrorCode, location_name: "code"))
|
480
|
+
ExperimentReportError.struct_class = Types::ExperimentReportError
|
481
|
+
|
482
|
+
ExperimentReportS3Report.add_member(:arn, Shapes::ShapeRef.new(shape: ExperimentReportS3ReportArn, location_name: "arn"))
|
483
|
+
ExperimentReportS3Report.add_member(:report_type, Shapes::ShapeRef.new(shape: ExperimentReportS3ReportType, location_name: "reportType"))
|
484
|
+
ExperimentReportS3Report.struct_class = Types::ExperimentReportS3Report
|
485
|
+
|
486
|
+
ExperimentReportS3ReportList.member = Shapes::ShapeRef.new(shape: ExperimentReportS3Report)
|
487
|
+
|
488
|
+
ExperimentReportState.add_member(:status, Shapes::ShapeRef.new(shape: ExperimentReportStatus, location_name: "status"))
|
489
|
+
ExperimentReportState.add_member(:reason, Shapes::ShapeRef.new(shape: ExperimentReportReason, location_name: "reason"))
|
490
|
+
ExperimentReportState.add_member(:error, Shapes::ShapeRef.new(shape: ExperimentReportError, location_name: "error"))
|
491
|
+
ExperimentReportState.struct_class = Types::ExperimentReportState
|
492
|
+
|
414
493
|
ExperimentS3LogConfiguration.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3BucketName, location_name: "bucketName"))
|
415
494
|
ExperimentS3LogConfiguration.add_member(:prefix, Shapes::ShapeRef.new(shape: S3ObjectKey, location_name: "prefix"))
|
416
495
|
ExperimentS3LogConfiguration.struct_class = Types::ExperimentS3LogConfiguration
|
@@ -484,6 +563,7 @@ module Aws::FIS
|
|
484
563
|
ExperimentTemplate.add_member(:log_configuration, Shapes::ShapeRef.new(shape: ExperimentTemplateLogConfiguration, location_name: "logConfiguration"))
|
485
564
|
ExperimentTemplate.add_member(:experiment_options, Shapes::ShapeRef.new(shape: ExperimentTemplateExperimentOptions, location_name: "experimentOptions"))
|
486
565
|
ExperimentTemplate.add_member(:target_account_configurations_count, Shapes::ShapeRef.new(shape: TargetAccountConfigurationsCount, location_name: "targetAccountConfigurationsCount"))
|
566
|
+
ExperimentTemplate.add_member(:experiment_report_configuration, Shapes::ShapeRef.new(shape: ExperimentTemplateReportConfiguration, location_name: "experimentReportConfiguration"))
|
487
567
|
ExperimentTemplate.struct_class = Types::ExperimentTemplate
|
488
568
|
|
489
569
|
ExperimentTemplateAction.add_member(:action_id, Shapes::ShapeRef.new(shape: ActionId, location_name: "actionId"))
|
@@ -519,6 +599,29 @@ module Aws::FIS
|
|
519
599
|
ExperimentTemplateLogConfiguration.add_member(:log_schema_version, Shapes::ShapeRef.new(shape: LogSchemaVersion, location_name: "logSchemaVersion"))
|
520
600
|
ExperimentTemplateLogConfiguration.struct_class = Types::ExperimentTemplateLogConfiguration
|
521
601
|
|
602
|
+
ExperimentTemplateReportConfiguration.add_member(:outputs, Shapes::ShapeRef.new(shape: ExperimentTemplateReportConfigurationOutputs, location_name: "outputs"))
|
603
|
+
ExperimentTemplateReportConfiguration.add_member(:data_sources, Shapes::ShapeRef.new(shape: ExperimentTemplateReportConfigurationDataSources, location_name: "dataSources"))
|
604
|
+
ExperimentTemplateReportConfiguration.add_member(:pre_experiment_duration, Shapes::ShapeRef.new(shape: ReportConfigurationDuration, location_name: "preExperimentDuration"))
|
605
|
+
ExperimentTemplateReportConfiguration.add_member(:post_experiment_duration, Shapes::ShapeRef.new(shape: ReportConfigurationDuration, location_name: "postExperimentDuration"))
|
606
|
+
ExperimentTemplateReportConfiguration.struct_class = Types::ExperimentTemplateReportConfiguration
|
607
|
+
|
608
|
+
ExperimentTemplateReportConfigurationCloudWatchDashboard.add_member(:dashboard_identifier, Shapes::ShapeRef.new(shape: ReportConfigurationCloudWatchDashboardIdentifier, location_name: "dashboardIdentifier"))
|
609
|
+
ExperimentTemplateReportConfigurationCloudWatchDashboard.struct_class = Types::ExperimentTemplateReportConfigurationCloudWatchDashboard
|
610
|
+
|
611
|
+
ExperimentTemplateReportConfigurationCloudWatchDashboardList.member = Shapes::ShapeRef.new(shape: ExperimentTemplateReportConfigurationCloudWatchDashboard)
|
612
|
+
|
613
|
+
ExperimentTemplateReportConfigurationDataSources.add_member(:cloud_watch_dashboards, Shapes::ShapeRef.new(shape: ExperimentTemplateReportConfigurationCloudWatchDashboardList, location_name: "cloudWatchDashboards"))
|
614
|
+
ExperimentTemplateReportConfigurationDataSources.struct_class = Types::ExperimentTemplateReportConfigurationDataSources
|
615
|
+
|
616
|
+
ExperimentTemplateReportConfigurationDataSourcesInput.add_member(:cloud_watch_dashboards, Shapes::ShapeRef.new(shape: ReportConfigurationCloudWatchDashboardInputList, location_name: "cloudWatchDashboards"))
|
617
|
+
ExperimentTemplateReportConfigurationDataSourcesInput.struct_class = Types::ExperimentTemplateReportConfigurationDataSourcesInput
|
618
|
+
|
619
|
+
ExperimentTemplateReportConfigurationOutputs.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: ReportConfigurationS3Output, location_name: "s3Configuration"))
|
620
|
+
ExperimentTemplateReportConfigurationOutputs.struct_class = Types::ExperimentTemplateReportConfigurationOutputs
|
621
|
+
|
622
|
+
ExperimentTemplateReportConfigurationOutputsInput.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: ReportConfigurationS3OutputInput, location_name: "s3Configuration"))
|
623
|
+
ExperimentTemplateReportConfigurationOutputsInput.struct_class = Types::ExperimentTemplateReportConfigurationOutputsInput
|
624
|
+
|
522
625
|
ExperimentTemplateS3LogConfiguration.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3BucketName, location_name: "bucketName"))
|
523
626
|
ExperimentTemplateS3LogConfiguration.add_member(:prefix, Shapes::ShapeRef.new(shape: S3ObjectKey, location_name: "prefix"))
|
524
627
|
ExperimentTemplateS3LogConfiguration.struct_class = Types::ExperimentTemplateS3LogConfiguration
|
@@ -681,6 +784,19 @@ module Aws::FIS
|
|
681
784
|
ListTargetResourceTypesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
682
785
|
ListTargetResourceTypesResponse.struct_class = Types::ListTargetResourceTypesResponse
|
683
786
|
|
787
|
+
ReportConfigurationCloudWatchDashboardInput.add_member(:dashboard_identifier, Shapes::ShapeRef.new(shape: ReportConfigurationCloudWatchDashboardIdentifier, location_name: "dashboardIdentifier"))
|
788
|
+
ReportConfigurationCloudWatchDashboardInput.struct_class = Types::ReportConfigurationCloudWatchDashboardInput
|
789
|
+
|
790
|
+
ReportConfigurationCloudWatchDashboardInputList.member = Shapes::ShapeRef.new(shape: ReportConfigurationCloudWatchDashboardInput)
|
791
|
+
|
792
|
+
ReportConfigurationS3Output.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3BucketName, location_name: "bucketName"))
|
793
|
+
ReportConfigurationS3Output.add_member(:prefix, Shapes::ShapeRef.new(shape: S3ObjectKey, location_name: "prefix"))
|
794
|
+
ReportConfigurationS3Output.struct_class = Types::ReportConfigurationS3Output
|
795
|
+
|
796
|
+
ReportConfigurationS3OutputInput.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3BucketName, location_name: "bucketName"))
|
797
|
+
ReportConfigurationS3OutputInput.add_member(:prefix, Shapes::ShapeRef.new(shape: S3ObjectKey, location_name: "prefix"))
|
798
|
+
ReportConfigurationS3OutputInput.struct_class = Types::ReportConfigurationS3OutputInput
|
799
|
+
|
684
800
|
ResolvedTarget.add_member(:resource_type, Shapes::ShapeRef.new(shape: TargetResourceTypeId, location_name: "resourceType"))
|
685
801
|
ResolvedTarget.add_member(:target_name, Shapes::ShapeRef.new(shape: TargetName, location_name: "targetName"))
|
686
802
|
ResolvedTarget.add_member(:target_information, Shapes::ShapeRef.new(shape: TargetInformationMap, location_name: "targetInformation"))
|
@@ -791,6 +907,12 @@ module Aws::FIS
|
|
791
907
|
UpdateExperimentTemplateLogConfigurationInput.add_member(:log_schema_version, Shapes::ShapeRef.new(shape: LogSchemaVersion, location_name: "logSchemaVersion"))
|
792
908
|
UpdateExperimentTemplateLogConfigurationInput.struct_class = Types::UpdateExperimentTemplateLogConfigurationInput
|
793
909
|
|
910
|
+
UpdateExperimentTemplateReportConfigurationInput.add_member(:outputs, Shapes::ShapeRef.new(shape: ExperimentTemplateReportConfigurationOutputsInput, location_name: "outputs"))
|
911
|
+
UpdateExperimentTemplateReportConfigurationInput.add_member(:data_sources, Shapes::ShapeRef.new(shape: ExperimentTemplateReportConfigurationDataSourcesInput, location_name: "dataSources"))
|
912
|
+
UpdateExperimentTemplateReportConfigurationInput.add_member(:pre_experiment_duration, Shapes::ShapeRef.new(shape: ReportConfigurationDuration, location_name: "preExperimentDuration"))
|
913
|
+
UpdateExperimentTemplateReportConfigurationInput.add_member(:post_experiment_duration, Shapes::ShapeRef.new(shape: ReportConfigurationDuration, location_name: "postExperimentDuration"))
|
914
|
+
UpdateExperimentTemplateReportConfigurationInput.struct_class = Types::UpdateExperimentTemplateReportConfigurationInput
|
915
|
+
|
794
916
|
UpdateExperimentTemplateRequest.add_member(:id, Shapes::ShapeRef.new(shape: ExperimentTemplateId, required: true, location: "uri", location_name: "id"))
|
795
917
|
UpdateExperimentTemplateRequest.add_member(:description, Shapes::ShapeRef.new(shape: ExperimentTemplateDescription, location_name: "description"))
|
796
918
|
UpdateExperimentTemplateRequest.add_member(:stop_conditions, Shapes::ShapeRef.new(shape: UpdateExperimentTemplateStopConditionInputList, location_name: "stopConditions"))
|
@@ -799,6 +921,7 @@ module Aws::FIS
|
|
799
921
|
UpdateExperimentTemplateRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
|
800
922
|
UpdateExperimentTemplateRequest.add_member(:log_configuration, Shapes::ShapeRef.new(shape: UpdateExperimentTemplateLogConfigurationInput, location_name: "logConfiguration"))
|
801
923
|
UpdateExperimentTemplateRequest.add_member(:experiment_options, Shapes::ShapeRef.new(shape: UpdateExperimentTemplateExperimentOptionsInput, location_name: "experimentOptions"))
|
924
|
+
UpdateExperimentTemplateRequest.add_member(:experiment_report_configuration, Shapes::ShapeRef.new(shape: UpdateExperimentTemplateReportConfigurationInput, location_name: "experimentReportConfiguration"))
|
802
925
|
UpdateExperimentTemplateRequest.struct_class = Types::UpdateExperimentTemplateRequest
|
803
926
|
|
804
927
|
UpdateExperimentTemplateResponse.add_member(:experiment_template, Shapes::ShapeRef.new(shape: ExperimentTemplate, location_name: "experimentTemplate"))
|
data/lib/aws-sdk-fis/types.rb
CHANGED
@@ -221,6 +221,37 @@ module Aws::FIS
|
|
221
221
|
include Aws::Structure
|
222
222
|
end
|
223
223
|
|
224
|
+
# Specifies the configuration for experiment reports.
|
225
|
+
#
|
226
|
+
# @!attribute [rw] outputs
|
227
|
+
# The output destinations of the experiment report.
|
228
|
+
# @return [Types::ExperimentTemplateReportConfigurationOutputsInput]
|
229
|
+
#
|
230
|
+
# @!attribute [rw] data_sources
|
231
|
+
# The data sources for the experiment report.
|
232
|
+
# @return [Types::ExperimentTemplateReportConfigurationDataSourcesInput]
|
233
|
+
#
|
234
|
+
# @!attribute [rw] pre_experiment_duration
|
235
|
+
# The duration before the experiment start time for the data sources
|
236
|
+
# to include in the report.
|
237
|
+
# @return [String]
|
238
|
+
#
|
239
|
+
# @!attribute [rw] post_experiment_duration
|
240
|
+
# The duration after the experiment end time for the data sources to
|
241
|
+
# include in the report.
|
242
|
+
# @return [String]
|
243
|
+
#
|
244
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/CreateExperimentTemplateReportConfigurationInput AWS API Documentation
|
245
|
+
#
|
246
|
+
class CreateExperimentTemplateReportConfigurationInput < Struct.new(
|
247
|
+
:outputs,
|
248
|
+
:data_sources,
|
249
|
+
:pre_experiment_duration,
|
250
|
+
:post_experiment_duration)
|
251
|
+
SENSITIVE = []
|
252
|
+
include Aws::Structure
|
253
|
+
end
|
254
|
+
|
224
255
|
# @!attribute [rw] client_token
|
225
256
|
# Unique, case-sensitive identifier that you provide to ensure the
|
226
257
|
# idempotency of the request.
|
@@ -262,6 +293,10 @@ module Aws::FIS
|
|
262
293
|
# The experiment options for the experiment template.
|
263
294
|
# @return [Types::CreateExperimentTemplateExperimentOptionsInput]
|
264
295
|
#
|
296
|
+
# @!attribute [rw] experiment_report_configuration
|
297
|
+
# The experiment report configuration for the experiment template.
|
298
|
+
# @return [Types::CreateExperimentTemplateReportConfigurationInput]
|
299
|
+
#
|
265
300
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/CreateExperimentTemplateRequest AWS API Documentation
|
266
301
|
#
|
267
302
|
class CreateExperimentTemplateRequest < Struct.new(
|
@@ -273,7 +308,8 @@ module Aws::FIS
|
|
273
308
|
:role_arn,
|
274
309
|
:tags,
|
275
310
|
:log_configuration,
|
276
|
-
:experiment_options
|
311
|
+
:experiment_options,
|
312
|
+
:experiment_report_configuration)
|
277
313
|
SENSITIVE = []
|
278
314
|
include Aws::Structure
|
279
315
|
end
|
@@ -540,6 +576,14 @@ module Aws::FIS
|
|
540
576
|
# The count of target account configurations for the experiment.
|
541
577
|
# @return [Integer]
|
542
578
|
#
|
579
|
+
# @!attribute [rw] experiment_report_configuration
|
580
|
+
# The experiment report configuration for the experiment.
|
581
|
+
# @return [Types::ExperimentReportConfiguration]
|
582
|
+
#
|
583
|
+
# @!attribute [rw] experiment_report
|
584
|
+
# The experiment report for the experiment.
|
585
|
+
# @return [Types::ExperimentReport]
|
586
|
+
#
|
543
587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/Experiment AWS API Documentation
|
544
588
|
#
|
545
589
|
class Experiment < Struct.new(
|
@@ -557,7 +601,9 @@ module Aws::FIS
|
|
557
601
|
:tags,
|
558
602
|
:log_configuration,
|
559
603
|
:experiment_options,
|
560
|
-
:target_account_configurations_count
|
604
|
+
:target_account_configurations_count,
|
605
|
+
:experiment_report_configuration,
|
606
|
+
:experiment_report)
|
561
607
|
SENSITIVE = []
|
562
608
|
include Aws::Structure
|
563
609
|
end
|
@@ -721,6 +767,186 @@ module Aws::FIS
|
|
721
767
|
include Aws::Structure
|
722
768
|
end
|
723
769
|
|
770
|
+
# Describes the experiment report.
|
771
|
+
#
|
772
|
+
# @!attribute [rw] state
|
773
|
+
# The state of the experiment report.
|
774
|
+
# @return [Types::ExperimentReportState]
|
775
|
+
#
|
776
|
+
# @!attribute [rw] s3_reports
|
777
|
+
# The S3 destination of the experiment report.
|
778
|
+
# @return [Array<Types::ExperimentReportS3Report>]
|
779
|
+
#
|
780
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentReport AWS API Documentation
|
781
|
+
#
|
782
|
+
class ExperimentReport < Struct.new(
|
783
|
+
:state,
|
784
|
+
:s3_reports)
|
785
|
+
SENSITIVE = []
|
786
|
+
include Aws::Structure
|
787
|
+
end
|
788
|
+
|
789
|
+
# Describes the report configuration for the experiment. For more
|
790
|
+
# information, see [Experiment report configurations for AWS FIS][1].
|
791
|
+
#
|
792
|
+
#
|
793
|
+
#
|
794
|
+
# [1]: https://docs.aws.amazon.com/fis/latest/userguide/experiment-report-configuration
|
795
|
+
#
|
796
|
+
# @!attribute [rw] outputs
|
797
|
+
# The output destinations of the experiment report.
|
798
|
+
# @return [Types::ExperimentReportConfigurationOutputs]
|
799
|
+
#
|
800
|
+
# @!attribute [rw] data_sources
|
801
|
+
# The data sources for the experiment report.
|
802
|
+
# @return [Types::ExperimentReportConfigurationDataSources]
|
803
|
+
#
|
804
|
+
# @!attribute [rw] pre_experiment_duration
|
805
|
+
# The duration before the experiment start time for the data sources
|
806
|
+
# to include in the report.
|
807
|
+
# @return [String]
|
808
|
+
#
|
809
|
+
# @!attribute [rw] post_experiment_duration
|
810
|
+
# The duration after the experiment end time for the data sources to
|
811
|
+
# include in the report.
|
812
|
+
# @return [String]
|
813
|
+
#
|
814
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentReportConfiguration AWS API Documentation
|
815
|
+
#
|
816
|
+
class ExperimentReportConfiguration < Struct.new(
|
817
|
+
:outputs,
|
818
|
+
:data_sources,
|
819
|
+
:pre_experiment_duration,
|
820
|
+
:post_experiment_duration)
|
821
|
+
SENSITIVE = []
|
822
|
+
include Aws::Structure
|
823
|
+
end
|
824
|
+
|
825
|
+
# Specifies the CloudWatch dashboard to include in the experiment
|
826
|
+
# report. The dashboard widgets will be captured as snapshot graphs
|
827
|
+
# within the report.
|
828
|
+
#
|
829
|
+
# @!attribute [rw] dashboard_identifier
|
830
|
+
# The Amazon Resource Name (ARN) of the CloudWatch dashboard to
|
831
|
+
# include in the experiment report.
|
832
|
+
# @return [String]
|
833
|
+
#
|
834
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentReportConfigurationCloudWatchDashboard AWS API Documentation
|
835
|
+
#
|
836
|
+
class ExperimentReportConfigurationCloudWatchDashboard < Struct.new(
|
837
|
+
:dashboard_identifier)
|
838
|
+
SENSITIVE = []
|
839
|
+
include Aws::Structure
|
840
|
+
end
|
841
|
+
|
842
|
+
# Describes the data sources for the experiment report.
|
843
|
+
#
|
844
|
+
# @!attribute [rw] cloud_watch_dashboards
|
845
|
+
# The CloudWatch dashboards to include as data sources in the
|
846
|
+
# experiment report.
|
847
|
+
# @return [Array<Types::ExperimentReportConfigurationCloudWatchDashboard>]
|
848
|
+
#
|
849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentReportConfigurationDataSources AWS API Documentation
|
850
|
+
#
|
851
|
+
class ExperimentReportConfigurationDataSources < Struct.new(
|
852
|
+
:cloud_watch_dashboards)
|
853
|
+
SENSITIVE = []
|
854
|
+
include Aws::Structure
|
855
|
+
end
|
856
|
+
|
857
|
+
# Describes the output destinations of the experiment report.
|
858
|
+
#
|
859
|
+
# @!attribute [rw] s3_configuration
|
860
|
+
# The S3 destination for the experiment report.
|
861
|
+
# @return [Types::ExperimentReportConfigurationOutputsS3Configuration]
|
862
|
+
#
|
863
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentReportConfigurationOutputs AWS API Documentation
|
864
|
+
#
|
865
|
+
class ExperimentReportConfigurationOutputs < Struct.new(
|
866
|
+
:s3_configuration)
|
867
|
+
SENSITIVE = []
|
868
|
+
include Aws::Structure
|
869
|
+
end
|
870
|
+
|
871
|
+
# Specifies the S3 destination for the experiment report.
|
872
|
+
#
|
873
|
+
# @!attribute [rw] bucket_name
|
874
|
+
# The name of the S3 bucket where the experiment report will be
|
875
|
+
# stored.
|
876
|
+
# @return [String]
|
877
|
+
#
|
878
|
+
# @!attribute [rw] prefix
|
879
|
+
# The prefix of the S3 bucket where the experiment report will be
|
880
|
+
# stored.
|
881
|
+
# @return [String]
|
882
|
+
#
|
883
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentReportConfigurationOutputsS3Configuration AWS API Documentation
|
884
|
+
#
|
885
|
+
class ExperimentReportConfigurationOutputsS3Configuration < Struct.new(
|
886
|
+
:bucket_name,
|
887
|
+
:prefix)
|
888
|
+
SENSITIVE = []
|
889
|
+
include Aws::Structure
|
890
|
+
end
|
891
|
+
|
892
|
+
# Describes the error when experiment report generation has failed.
|
893
|
+
#
|
894
|
+
# @!attribute [rw] code
|
895
|
+
# The error code for the failed experiment report generation.
|
896
|
+
# @return [String]
|
897
|
+
#
|
898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentReportError AWS API Documentation
|
899
|
+
#
|
900
|
+
class ExperimentReportError < Struct.new(
|
901
|
+
:code)
|
902
|
+
SENSITIVE = []
|
903
|
+
include Aws::Structure
|
904
|
+
end
|
905
|
+
|
906
|
+
# Describes the S3 destination for the report.
|
907
|
+
#
|
908
|
+
# @!attribute [rw] arn
|
909
|
+
# The Amazon Resource Name (ARN) of the generated report.
|
910
|
+
# @return [String]
|
911
|
+
#
|
912
|
+
# @!attribute [rw] report_type
|
913
|
+
# The report type for the experiment report.
|
914
|
+
# @return [String]
|
915
|
+
#
|
916
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentReportS3Report AWS API Documentation
|
917
|
+
#
|
918
|
+
class ExperimentReportS3Report < Struct.new(
|
919
|
+
:arn,
|
920
|
+
:report_type)
|
921
|
+
SENSITIVE = []
|
922
|
+
include Aws::Structure
|
923
|
+
end
|
924
|
+
|
925
|
+
# Describes the state of the experiment report generation.
|
926
|
+
#
|
927
|
+
# @!attribute [rw] status
|
928
|
+
# The state of the experiment report generation.
|
929
|
+
# @return [String]
|
930
|
+
#
|
931
|
+
# @!attribute [rw] reason
|
932
|
+
# The reason for the state of the experiment report generation.
|
933
|
+
# @return [String]
|
934
|
+
#
|
935
|
+
# @!attribute [rw] error
|
936
|
+
# The error information of the experiment when the experiment report
|
937
|
+
# generation has failed.
|
938
|
+
# @return [Types::ExperimentReportError]
|
939
|
+
#
|
940
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentReportState AWS API Documentation
|
941
|
+
#
|
942
|
+
class ExperimentReportState < Struct.new(
|
943
|
+
:status,
|
944
|
+
:reason,
|
945
|
+
:error)
|
946
|
+
SENSITIVE = []
|
947
|
+
include Aws::Structure
|
948
|
+
end
|
949
|
+
|
724
950
|
# Describes the configuration for experiment logging to Amazon S3.
|
725
951
|
#
|
726
952
|
# @!attribute [rw] bucket_name
|
@@ -993,6 +1219,10 @@ module Aws::FIS
|
|
993
1219
|
# template.
|
994
1220
|
# @return [Integer]
|
995
1221
|
#
|
1222
|
+
# @!attribute [rw] experiment_report_configuration
|
1223
|
+
# Describes the report configuration for the experiment template.
|
1224
|
+
# @return [Types::ExperimentTemplateReportConfiguration]
|
1225
|
+
#
|
996
1226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTemplate AWS API Documentation
|
997
1227
|
#
|
998
1228
|
class ExperimentTemplate < Struct.new(
|
@@ -1008,7 +1238,8 @@ module Aws::FIS
|
|
1008
1238
|
:tags,
|
1009
1239
|
:log_configuration,
|
1010
1240
|
:experiment_options,
|
1011
|
-
:target_account_configurations_count
|
1241
|
+
:target_account_configurations_count,
|
1242
|
+
:experiment_report_configuration)
|
1012
1243
|
SENSITIVE = []
|
1013
1244
|
include Aws::Structure
|
1014
1245
|
end
|
@@ -1123,6 +1354,116 @@ module Aws::FIS
|
|
1123
1354
|
include Aws::Structure
|
1124
1355
|
end
|
1125
1356
|
|
1357
|
+
# Describes the experiment report configuration. For more information,
|
1358
|
+
# see [Experiment report configurations for AWS FIS][1].
|
1359
|
+
#
|
1360
|
+
#
|
1361
|
+
#
|
1362
|
+
# [1]: https://docs.aws.amazon.com/fis/latest/userguide/experiment-report-configuration
|
1363
|
+
#
|
1364
|
+
# @!attribute [rw] outputs
|
1365
|
+
# Describes the output destinations of the experiment report.
|
1366
|
+
# @return [Types::ExperimentTemplateReportConfigurationOutputs]
|
1367
|
+
#
|
1368
|
+
# @!attribute [rw] data_sources
|
1369
|
+
# The data sources for the experiment report.
|
1370
|
+
# @return [Types::ExperimentTemplateReportConfigurationDataSources]
|
1371
|
+
#
|
1372
|
+
# @!attribute [rw] pre_experiment_duration
|
1373
|
+
# The duration before the experiment start time for the data sources
|
1374
|
+
# to include in the report.
|
1375
|
+
# @return [String]
|
1376
|
+
#
|
1377
|
+
# @!attribute [rw] post_experiment_duration
|
1378
|
+
# The duration after the experiment end time for the data sources to
|
1379
|
+
# include in the report.
|
1380
|
+
# @return [String]
|
1381
|
+
#
|
1382
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTemplateReportConfiguration AWS API Documentation
|
1383
|
+
#
|
1384
|
+
class ExperimentTemplateReportConfiguration < Struct.new(
|
1385
|
+
:outputs,
|
1386
|
+
:data_sources,
|
1387
|
+
:pre_experiment_duration,
|
1388
|
+
:post_experiment_duration)
|
1389
|
+
SENSITIVE = []
|
1390
|
+
include Aws::Structure
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
# The CloudWatch dashboards to include as data sources in the experiment
|
1394
|
+
# report.
|
1395
|
+
#
|
1396
|
+
# @!attribute [rw] dashboard_identifier
|
1397
|
+
# The Amazon Resource Name (ARN) of the CloudWatch dashboard to
|
1398
|
+
# include in the experiment report.
|
1399
|
+
# @return [String]
|
1400
|
+
#
|
1401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTemplateReportConfigurationCloudWatchDashboard AWS API Documentation
|
1402
|
+
#
|
1403
|
+
class ExperimentTemplateReportConfigurationCloudWatchDashboard < Struct.new(
|
1404
|
+
:dashboard_identifier)
|
1405
|
+
SENSITIVE = []
|
1406
|
+
include Aws::Structure
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
# Describes the data sources for the experiment report.
|
1410
|
+
#
|
1411
|
+
# @!attribute [rw] cloud_watch_dashboards
|
1412
|
+
# The CloudWatch dashboards to include as data sources in the
|
1413
|
+
# experiment report.
|
1414
|
+
# @return [Array<Types::ExperimentTemplateReportConfigurationCloudWatchDashboard>]
|
1415
|
+
#
|
1416
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTemplateReportConfigurationDataSources AWS API Documentation
|
1417
|
+
#
|
1418
|
+
class ExperimentTemplateReportConfigurationDataSources < Struct.new(
|
1419
|
+
:cloud_watch_dashboards)
|
1420
|
+
SENSITIVE = []
|
1421
|
+
include Aws::Structure
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
# Specifies the data sources for the experiment report.
|
1425
|
+
#
|
1426
|
+
# @!attribute [rw] cloud_watch_dashboards
|
1427
|
+
# The CloudWatch dashboards to include as data sources in the
|
1428
|
+
# experiment report.
|
1429
|
+
# @return [Array<Types::ReportConfigurationCloudWatchDashboardInput>]
|
1430
|
+
#
|
1431
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTemplateReportConfigurationDataSourcesInput AWS API Documentation
|
1432
|
+
#
|
1433
|
+
class ExperimentTemplateReportConfigurationDataSourcesInput < Struct.new(
|
1434
|
+
:cloud_watch_dashboards)
|
1435
|
+
SENSITIVE = []
|
1436
|
+
include Aws::Structure
|
1437
|
+
end
|
1438
|
+
|
1439
|
+
# The output destinations of the experiment report.
|
1440
|
+
#
|
1441
|
+
# @!attribute [rw] s3_configuration
|
1442
|
+
# The S3 destination for the experiment report.
|
1443
|
+
# @return [Types::ReportConfigurationS3Output]
|
1444
|
+
#
|
1445
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTemplateReportConfigurationOutputs AWS API Documentation
|
1446
|
+
#
|
1447
|
+
class ExperimentTemplateReportConfigurationOutputs < Struct.new(
|
1448
|
+
:s3_configuration)
|
1449
|
+
SENSITIVE = []
|
1450
|
+
include Aws::Structure
|
1451
|
+
end
|
1452
|
+
|
1453
|
+
# Specifies the outputs for the experiment templates.
|
1454
|
+
#
|
1455
|
+
# @!attribute [rw] s3_configuration
|
1456
|
+
# The S3 destination for the experiment report.
|
1457
|
+
# @return [Types::ReportConfigurationS3OutputInput]
|
1458
|
+
#
|
1459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ExperimentTemplateReportConfigurationOutputsInput AWS API Documentation
|
1460
|
+
#
|
1461
|
+
class ExperimentTemplateReportConfigurationOutputsInput < Struct.new(
|
1462
|
+
:s3_configuration)
|
1463
|
+
SENSITIVE = []
|
1464
|
+
include Aws::Structure
|
1465
|
+
end
|
1466
|
+
|
1126
1467
|
# Describes the configuration for experiment logging to Amazon S3.
|
1127
1468
|
#
|
1128
1469
|
# @!attribute [rw] bucket_name
|
@@ -1786,6 +2127,63 @@ module Aws::FIS
|
|
1786
2127
|
include Aws::Structure
|
1787
2128
|
end
|
1788
2129
|
|
2130
|
+
# Specifies the CloudWatch dashboard for the experiment report.
|
2131
|
+
#
|
2132
|
+
# @!attribute [rw] dashboard_identifier
|
2133
|
+
# The Amazon Resource Name (ARN) of the CloudWatch dashboard to
|
2134
|
+
# include in the experiment report.
|
2135
|
+
# @return [String]
|
2136
|
+
#
|
2137
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ReportConfigurationCloudWatchDashboardInput AWS API Documentation
|
2138
|
+
#
|
2139
|
+
class ReportConfigurationCloudWatchDashboardInput < Struct.new(
|
2140
|
+
:dashboard_identifier)
|
2141
|
+
SENSITIVE = []
|
2142
|
+
include Aws::Structure
|
2143
|
+
end
|
2144
|
+
|
2145
|
+
# Describes the S3 destination for the experiment report.
|
2146
|
+
#
|
2147
|
+
# @!attribute [rw] bucket_name
|
2148
|
+
# The name of the S3 bucket where the experiment report will be
|
2149
|
+
# stored.
|
2150
|
+
# @return [String]
|
2151
|
+
#
|
2152
|
+
# @!attribute [rw] prefix
|
2153
|
+
# The prefix of the S3 bucket where the experiment report will be
|
2154
|
+
# stored.
|
2155
|
+
# @return [String]
|
2156
|
+
#
|
2157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ReportConfigurationS3Output AWS API Documentation
|
2158
|
+
#
|
2159
|
+
class ReportConfigurationS3Output < Struct.new(
|
2160
|
+
:bucket_name,
|
2161
|
+
:prefix)
|
2162
|
+
SENSITIVE = []
|
2163
|
+
include Aws::Structure
|
2164
|
+
end
|
2165
|
+
|
2166
|
+
# Specifies the S3 destination for the experiment report.
|
2167
|
+
#
|
2168
|
+
# @!attribute [rw] bucket_name
|
2169
|
+
# The name of the S3 bucket where the experiment report will be
|
2170
|
+
# stored.
|
2171
|
+
# @return [String]
|
2172
|
+
#
|
2173
|
+
# @!attribute [rw] prefix
|
2174
|
+
# The prefix of the S3 bucket where the experiment report will be
|
2175
|
+
# stored.
|
2176
|
+
# @return [String]
|
2177
|
+
#
|
2178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ReportConfigurationS3OutputInput AWS API Documentation
|
2179
|
+
#
|
2180
|
+
class ReportConfigurationS3OutputInput < Struct.new(
|
2181
|
+
:bucket_name,
|
2182
|
+
:prefix)
|
2183
|
+
SENSITIVE = []
|
2184
|
+
include Aws::Structure
|
2185
|
+
end
|
2186
|
+
|
1789
2187
|
# Describes a resolved target.
|
1790
2188
|
#
|
1791
2189
|
# @!attribute [rw] resource_type
|
@@ -2189,6 +2587,37 @@ module Aws::FIS
|
|
2189
2587
|
include Aws::Structure
|
2190
2588
|
end
|
2191
2589
|
|
2590
|
+
# Specifies the input for the experiment report configuration.
|
2591
|
+
#
|
2592
|
+
# @!attribute [rw] outputs
|
2593
|
+
# Describes the output destinations of the experiment report.
|
2594
|
+
# @return [Types::ExperimentTemplateReportConfigurationOutputsInput]
|
2595
|
+
#
|
2596
|
+
# @!attribute [rw] data_sources
|
2597
|
+
# The data sources for the experiment report.
|
2598
|
+
# @return [Types::ExperimentTemplateReportConfigurationDataSourcesInput]
|
2599
|
+
#
|
2600
|
+
# @!attribute [rw] pre_experiment_duration
|
2601
|
+
# The duration before the experiment start time for the data sources
|
2602
|
+
# to include in the report.
|
2603
|
+
# @return [String]
|
2604
|
+
#
|
2605
|
+
# @!attribute [rw] post_experiment_duration
|
2606
|
+
# The duration after the experiment end time for the data sources to
|
2607
|
+
# include in the report.
|
2608
|
+
# @return [String]
|
2609
|
+
#
|
2610
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/UpdateExperimentTemplateReportConfigurationInput AWS API Documentation
|
2611
|
+
#
|
2612
|
+
class UpdateExperimentTemplateReportConfigurationInput < Struct.new(
|
2613
|
+
:outputs,
|
2614
|
+
:data_sources,
|
2615
|
+
:pre_experiment_duration,
|
2616
|
+
:post_experiment_duration)
|
2617
|
+
SENSITIVE = []
|
2618
|
+
include Aws::Structure
|
2619
|
+
end
|
2620
|
+
|
2192
2621
|
# @!attribute [rw] id
|
2193
2622
|
# The ID of the experiment template.
|
2194
2623
|
# @return [String]
|
@@ -2222,6 +2651,10 @@ module Aws::FIS
|
|
2222
2651
|
# The experiment options for the experiment template.
|
2223
2652
|
# @return [Types::UpdateExperimentTemplateExperimentOptionsInput]
|
2224
2653
|
#
|
2654
|
+
# @!attribute [rw] experiment_report_configuration
|
2655
|
+
# The experiment report configuration for the experiment template.
|
2656
|
+
# @return [Types::UpdateExperimentTemplateReportConfigurationInput]
|
2657
|
+
#
|
2225
2658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/UpdateExperimentTemplateRequest AWS API Documentation
|
2226
2659
|
#
|
2227
2660
|
class UpdateExperimentTemplateRequest < Struct.new(
|
@@ -2232,7 +2665,8 @@ module Aws::FIS
|
|
2232
2665
|
:actions,
|
2233
2666
|
:role_arn,
|
2234
2667
|
:log_configuration,
|
2235
|
-
:experiment_options
|
2668
|
+
:experiment_options,
|
2669
|
+
:experiment_report_configuration)
|
2236
2670
|
SENSITIVE = []
|
2237
2671
|
include Aws::Structure
|
2238
2672
|
end
|
data/lib/aws-sdk-fis.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -124,6 +124,23 @@ module Aws
|
|
124
124
|
?experiment_options: {
|
125
125
|
account_targeting: ("single-account" | "multi-account")?,
|
126
126
|
empty_target_resolution_mode: ("fail" | "skip")?
|
127
|
+
},
|
128
|
+
?experiment_report_configuration: {
|
129
|
+
outputs: {
|
130
|
+
s3_configuration: {
|
131
|
+
bucket_name: ::String?,
|
132
|
+
prefix: ::String?
|
133
|
+
}?
|
134
|
+
}?,
|
135
|
+
data_sources: {
|
136
|
+
cloud_watch_dashboards: Array[
|
137
|
+
{
|
138
|
+
dashboard_identifier: ::String?
|
139
|
+
},
|
140
|
+
]?
|
141
|
+
}?,
|
142
|
+
pre_experiment_duration: ::String?,
|
143
|
+
post_experiment_duration: ::String?
|
127
144
|
}
|
128
145
|
) -> _CreateExperimentTemplateResponseSuccess
|
129
146
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExperimentTemplateResponseSuccess
|
@@ -425,6 +442,23 @@ module Aws
|
|
425
442
|
},
|
426
443
|
?experiment_options: {
|
427
444
|
empty_target_resolution_mode: ("fail" | "skip")?
|
445
|
+
},
|
446
|
+
?experiment_report_configuration: {
|
447
|
+
outputs: {
|
448
|
+
s3_configuration: {
|
449
|
+
bucket_name: ::String?,
|
450
|
+
prefix: ::String?
|
451
|
+
}?
|
452
|
+
}?,
|
453
|
+
data_sources: {
|
454
|
+
cloud_watch_dashboards: Array[
|
455
|
+
{
|
456
|
+
dashboard_identifier: ::String?
|
457
|
+
},
|
458
|
+
]?
|
459
|
+
}?,
|
460
|
+
pre_experiment_duration: ::String?,
|
461
|
+
post_experiment_duration: ::String?
|
428
462
|
}
|
429
463
|
) -> _UpdateExperimentTemplateResponseSuccess
|
430
464
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateExperimentTemplateResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -65,6 +65,14 @@ module Aws::FIS
|
|
65
65
|
SENSITIVE: []
|
66
66
|
end
|
67
67
|
|
68
|
+
class CreateExperimentTemplateReportConfigurationInput
|
69
|
+
attr_accessor outputs: Types::ExperimentTemplateReportConfigurationOutputsInput
|
70
|
+
attr_accessor data_sources: Types::ExperimentTemplateReportConfigurationDataSourcesInput
|
71
|
+
attr_accessor pre_experiment_duration: ::String
|
72
|
+
attr_accessor post_experiment_duration: ::String
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
68
76
|
class CreateExperimentTemplateRequest
|
69
77
|
attr_accessor client_token: ::String
|
70
78
|
attr_accessor description: ::String
|
@@ -75,6 +83,7 @@ module Aws::FIS
|
|
75
83
|
attr_accessor tags: ::Hash[::String, ::String]
|
76
84
|
attr_accessor log_configuration: Types::CreateExperimentTemplateLogConfigurationInput
|
77
85
|
attr_accessor experiment_options: Types::CreateExperimentTemplateExperimentOptionsInput
|
86
|
+
attr_accessor experiment_report_configuration: Types::CreateExperimentTemplateReportConfigurationInput
|
78
87
|
SENSITIVE: []
|
79
88
|
end
|
80
89
|
|
@@ -150,6 +159,8 @@ module Aws::FIS
|
|
150
159
|
attr_accessor log_configuration: Types::ExperimentLogConfiguration
|
151
160
|
attr_accessor experiment_options: Types::ExperimentOptions
|
152
161
|
attr_accessor target_account_configurations_count: ::Integer
|
162
|
+
attr_accessor experiment_report_configuration: Types::ExperimentReportConfiguration
|
163
|
+
attr_accessor experiment_report: Types::ExperimentReport
|
153
164
|
SENSITIVE: []
|
154
165
|
end
|
155
166
|
|
@@ -197,6 +208,59 @@ module Aws::FIS
|
|
197
208
|
SENSITIVE: []
|
198
209
|
end
|
199
210
|
|
211
|
+
class ExperimentReport
|
212
|
+
attr_accessor state: Types::ExperimentReportState
|
213
|
+
attr_accessor s3_reports: ::Array[Types::ExperimentReportS3Report]
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class ExperimentReportConfiguration
|
218
|
+
attr_accessor outputs: Types::ExperimentReportConfigurationOutputs
|
219
|
+
attr_accessor data_sources: Types::ExperimentReportConfigurationDataSources
|
220
|
+
attr_accessor pre_experiment_duration: ::String
|
221
|
+
attr_accessor post_experiment_duration: ::String
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
225
|
+
class ExperimentReportConfigurationCloudWatchDashboard
|
226
|
+
attr_accessor dashboard_identifier: ::String
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class ExperimentReportConfigurationDataSources
|
231
|
+
attr_accessor cloud_watch_dashboards: ::Array[Types::ExperimentReportConfigurationCloudWatchDashboard]
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class ExperimentReportConfigurationOutputs
|
236
|
+
attr_accessor s3_configuration: Types::ExperimentReportConfigurationOutputsS3Configuration
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class ExperimentReportConfigurationOutputsS3Configuration
|
241
|
+
attr_accessor bucket_name: ::String
|
242
|
+
attr_accessor prefix: ::String
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class ExperimentReportError
|
247
|
+
attr_accessor code: ::String
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class ExperimentReportS3Report
|
252
|
+
attr_accessor arn: ::String
|
253
|
+
attr_accessor report_type: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class ExperimentReportState
|
258
|
+
attr_accessor status: ("pending" | "running" | "completed" | "cancelled" | "failed")
|
259
|
+
attr_accessor reason: ::String
|
260
|
+
attr_accessor error: Types::ExperimentReportError
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
200
264
|
class ExperimentS3LogConfiguration
|
201
265
|
attr_accessor bucket_name: ::String
|
202
266
|
attr_accessor prefix: ::String
|
@@ -271,6 +335,7 @@ module Aws::FIS
|
|
271
335
|
attr_accessor log_configuration: Types::ExperimentTemplateLogConfiguration
|
272
336
|
attr_accessor experiment_options: Types::ExperimentTemplateExperimentOptions
|
273
337
|
attr_accessor target_account_configurations_count: ::Integer
|
338
|
+
attr_accessor experiment_report_configuration: Types::ExperimentTemplateReportConfiguration
|
274
339
|
SENSITIVE: []
|
275
340
|
end
|
276
341
|
|
@@ -306,6 +371,39 @@ module Aws::FIS
|
|
306
371
|
SENSITIVE: []
|
307
372
|
end
|
308
373
|
|
374
|
+
class ExperimentTemplateReportConfiguration
|
375
|
+
attr_accessor outputs: Types::ExperimentTemplateReportConfigurationOutputs
|
376
|
+
attr_accessor data_sources: Types::ExperimentTemplateReportConfigurationDataSources
|
377
|
+
attr_accessor pre_experiment_duration: ::String
|
378
|
+
attr_accessor post_experiment_duration: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class ExperimentTemplateReportConfigurationCloudWatchDashboard
|
383
|
+
attr_accessor dashboard_identifier: ::String
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class ExperimentTemplateReportConfigurationDataSources
|
388
|
+
attr_accessor cloud_watch_dashboards: ::Array[Types::ExperimentTemplateReportConfigurationCloudWatchDashboard]
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class ExperimentTemplateReportConfigurationDataSourcesInput
|
393
|
+
attr_accessor cloud_watch_dashboards: ::Array[Types::ReportConfigurationCloudWatchDashboardInput]
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class ExperimentTemplateReportConfigurationOutputs
|
398
|
+
attr_accessor s3_configuration: Types::ReportConfigurationS3Output
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class ExperimentTemplateReportConfigurationOutputsInput
|
403
|
+
attr_accessor s3_configuration: Types::ReportConfigurationS3OutputInput
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
309
407
|
class ExperimentTemplateS3LogConfiguration
|
310
408
|
attr_accessor bucket_name: ::String
|
311
409
|
attr_accessor prefix: ::String
|
@@ -526,6 +624,23 @@ module Aws::FIS
|
|
526
624
|
SENSITIVE: []
|
527
625
|
end
|
528
626
|
|
627
|
+
class ReportConfigurationCloudWatchDashboardInput
|
628
|
+
attr_accessor dashboard_identifier: ::String
|
629
|
+
SENSITIVE: []
|
630
|
+
end
|
631
|
+
|
632
|
+
class ReportConfigurationS3Output
|
633
|
+
attr_accessor bucket_name: ::String
|
634
|
+
attr_accessor prefix: ::String
|
635
|
+
SENSITIVE: []
|
636
|
+
end
|
637
|
+
|
638
|
+
class ReportConfigurationS3OutputInput
|
639
|
+
attr_accessor bucket_name: ::String
|
640
|
+
attr_accessor prefix: ::String
|
641
|
+
SENSITIVE: []
|
642
|
+
end
|
643
|
+
|
529
644
|
class ResolvedTarget
|
530
645
|
attr_accessor resource_type: ::String
|
531
646
|
attr_accessor target_name: ::String
|
@@ -656,6 +771,14 @@ module Aws::FIS
|
|
656
771
|
SENSITIVE: []
|
657
772
|
end
|
658
773
|
|
774
|
+
class UpdateExperimentTemplateReportConfigurationInput
|
775
|
+
attr_accessor outputs: Types::ExperimentTemplateReportConfigurationOutputsInput
|
776
|
+
attr_accessor data_sources: Types::ExperimentTemplateReportConfigurationDataSourcesInput
|
777
|
+
attr_accessor pre_experiment_duration: ::String
|
778
|
+
attr_accessor post_experiment_duration: ::String
|
779
|
+
SENSITIVE: []
|
780
|
+
end
|
781
|
+
|
659
782
|
class UpdateExperimentTemplateRequest
|
660
783
|
attr_accessor id: ::String
|
661
784
|
attr_accessor description: ::String
|
@@ -665,6 +788,7 @@ module Aws::FIS
|
|
665
788
|
attr_accessor role_arn: ::String
|
666
789
|
attr_accessor log_configuration: Types::UpdateExperimentTemplateLogConfigurationInput
|
667
790
|
attr_accessor experiment_options: Types::UpdateExperimentTemplateExperimentOptionsInput
|
791
|
+
attr_accessor experiment_report_configuration: Types::UpdateExperimentTemplateReportConfigurationInput
|
668
792
|
SENSITIVE: []
|
669
793
|
end
|
670
794
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-fis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.44.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: 2024-
|
11
|
+
date: 2024-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|