aws-sdk-fis 1.43.0 → 1.45.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3725e700be51761300d11ad1887aef89eaa701629d0911acfe47bcf2b183b881
4
- data.tar.gz: 58a97fe38cbb8288898d6e7c0d9e88efa7a48d0d79a43d55df88da212afe5c95
3
+ metadata.gz: 636fd8a849672771d0069932d8da98b7c59df4caf013eb914a0879740ceb1060
4
+ data.tar.gz: 89550c5ff12167b7802429a63ec75ce3004c5c751400d475342c1287d82eeaa7
5
5
  SHA512:
6
- metadata.gz: 18273c250edce349a698f282391e35dd96fc7d67a170a72d882da43e05f6e43c0079f55a2a2032c263ab2009027e0edee6f945fecee839f1b3c2ae116c5b74c9
7
- data.tar.gz: e20fc690e775ab57fc24e6abb818627616ce216932b8de90babd09f9c8684c5db1289b5c0906412a9efb4c84263c23644d7789c2d9f6f167d3dad7f7127d4b99
6
+ metadata.gz: 835fc3b811a3422b53c2ae6eaaa7bb0bf6049ddb5f5920787e3ae5988e2c2d3fae6ac094dcc5e0e5d496fecfd03af553856645695f7b62f553c35e92df7a0b56
7
+ data.tar.gz: 30c17ec49017a750bd45e959e2c8a9f086e5aadb777b316bcefd1d3bd74a871f2720712b325d36ab79212747fbe9ac778f1a6a6a2c850fb6e67f06e63885fb8e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.44.0 (2024-11-12)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for generating experiment reports with the experiment report configuration
13
+
4
14
  1.43.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.43.0
1
+ 1.45.0
@@ -257,11 +257,34 @@ module Aws::FIS
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -502,6 +525,9 @@ module Aws::FIS
502
525
  # @option params [Types::CreateExperimentTemplateExperimentOptionsInput] :experiment_options
503
526
  # The experiment options for the experiment template.
504
527
  #
528
+ # @option params [Types::CreateExperimentTemplateReportConfigurationInput] :experiment_report_configuration
529
+ # The experiment report configuration for the experiment template.
530
+ #
505
531
  # @return [Types::CreateExperimentTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
506
532
  #
507
533
  # * {Types::CreateExperimentTemplateResponse#experiment_template #experiment_template} => Types::ExperimentTemplate
@@ -567,6 +593,23 @@ module Aws::FIS
567
593
  # account_targeting: "single-account", # accepts single-account, multi-account
568
594
  # empty_target_resolution_mode: "fail", # accepts fail, skip
569
595
  # },
596
+ # experiment_report_configuration: {
597
+ # outputs: {
598
+ # s3_configuration: {
599
+ # bucket_name: "S3BucketName",
600
+ # prefix: "S3ObjectKey",
601
+ # },
602
+ # },
603
+ # data_sources: {
604
+ # cloud_watch_dashboards: [
605
+ # {
606
+ # dashboard_identifier: "ReportConfigurationCloudWatchDashboardIdentifier",
607
+ # },
608
+ # ],
609
+ # },
610
+ # pre_experiment_duration: "ReportConfigurationDuration",
611
+ # post_experiment_duration: "ReportConfigurationDuration",
612
+ # },
570
613
  # })
571
614
  #
572
615
  # @example Response structure
@@ -611,6 +654,12 @@ module Aws::FIS
611
654
  # resp.experiment_template.experiment_options.account_targeting #=> String, one of "single-account", "multi-account"
612
655
  # resp.experiment_template.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
613
656
  # resp.experiment_template.target_account_configurations_count #=> Integer
657
+ # resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
658
+ # resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
659
+ # resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
660
+ # resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
661
+ # resp.experiment_template.experiment_report_configuration.pre_experiment_duration #=> String
662
+ # resp.experiment_template.experiment_report_configuration.post_experiment_duration #=> String
614
663
  #
615
664
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/CreateExperimentTemplate AWS API Documentation
616
665
  #
@@ -736,6 +785,12 @@ module Aws::FIS
736
785
  # resp.experiment_template.experiment_options.account_targeting #=> String, one of "single-account", "multi-account"
737
786
  # resp.experiment_template.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
738
787
  # resp.experiment_template.target_account_configurations_count #=> Integer
788
+ # resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
789
+ # resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
790
+ # resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
791
+ # resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
792
+ # resp.experiment_template.experiment_report_configuration.pre_experiment_duration #=> String
793
+ # resp.experiment_template.experiment_report_configuration.post_experiment_duration #=> String
739
794
  #
740
795
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/DeleteExperimentTemplate AWS API Documentation
741
796
  #
@@ -886,6 +941,18 @@ module Aws::FIS
886
941
  # resp.experiment.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
887
942
  # resp.experiment.experiment_options.actions_mode #=> String, one of "skip-all", "run-all"
888
943
  # resp.experiment.target_account_configurations_count #=> Integer
944
+ # resp.experiment.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
945
+ # resp.experiment.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
946
+ # resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
947
+ # resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
948
+ # resp.experiment.experiment_report_configuration.pre_experiment_duration #=> String
949
+ # resp.experiment.experiment_report_configuration.post_experiment_duration #=> String
950
+ # resp.experiment.experiment_report.state.status #=> String, one of "pending", "running", "completed", "cancelled", "failed"
951
+ # resp.experiment.experiment_report.state.reason #=> String
952
+ # resp.experiment.experiment_report.state.error.code #=> String
953
+ # resp.experiment.experiment_report.s3_reports #=> Array
954
+ # resp.experiment.experiment_report.s3_reports[0].arn #=> String
955
+ # resp.experiment.experiment_report.s3_reports[0].report_type #=> String
889
956
  #
890
957
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/GetExperiment AWS API Documentation
891
958
  #
@@ -988,6 +1055,12 @@ module Aws::FIS
988
1055
  # resp.experiment_template.experiment_options.account_targeting #=> String, one of "single-account", "multi-account"
989
1056
  # resp.experiment_template.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
990
1057
  # resp.experiment_template.target_account_configurations_count #=> Integer
1058
+ # resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
1059
+ # resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
1060
+ # resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
1061
+ # resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
1062
+ # resp.experiment_template.experiment_report_configuration.pre_experiment_duration #=> String
1063
+ # resp.experiment_template.experiment_report_configuration.post_experiment_duration #=> String
991
1064
  #
992
1065
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/GetExperimentTemplate AWS API Documentation
993
1066
  #
@@ -1532,6 +1605,18 @@ module Aws::FIS
1532
1605
  # resp.experiment.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
1533
1606
  # resp.experiment.experiment_options.actions_mode #=> String, one of "skip-all", "run-all"
1534
1607
  # resp.experiment.target_account_configurations_count #=> Integer
1608
+ # resp.experiment.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
1609
+ # resp.experiment.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
1610
+ # resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
1611
+ # resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
1612
+ # resp.experiment.experiment_report_configuration.pre_experiment_duration #=> String
1613
+ # resp.experiment.experiment_report_configuration.post_experiment_duration #=> String
1614
+ # resp.experiment.experiment_report.state.status #=> String, one of "pending", "running", "completed", "cancelled", "failed"
1615
+ # resp.experiment.experiment_report.state.reason #=> String
1616
+ # resp.experiment.experiment_report.state.error.code #=> String
1617
+ # resp.experiment.experiment_report.s3_reports #=> Array
1618
+ # resp.experiment.experiment_report.s3_reports[0].arn #=> String
1619
+ # resp.experiment.experiment_report.s3_reports[0].report_type #=> String
1535
1620
  #
1536
1621
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/StartExperiment AWS API Documentation
1537
1622
  #
@@ -1610,6 +1695,18 @@ module Aws::FIS
1610
1695
  # resp.experiment.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
1611
1696
  # resp.experiment.experiment_options.actions_mode #=> String, one of "skip-all", "run-all"
1612
1697
  # resp.experiment.target_account_configurations_count #=> Integer
1698
+ # resp.experiment.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
1699
+ # resp.experiment.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
1700
+ # resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
1701
+ # resp.experiment.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
1702
+ # resp.experiment.experiment_report_configuration.pre_experiment_duration #=> String
1703
+ # resp.experiment.experiment_report_configuration.post_experiment_duration #=> String
1704
+ # resp.experiment.experiment_report.state.status #=> String, one of "pending", "running", "completed", "cancelled", "failed"
1705
+ # resp.experiment.experiment_report.state.reason #=> String
1706
+ # resp.experiment.experiment_report.state.error.code #=> String
1707
+ # resp.experiment.experiment_report.s3_reports #=> Array
1708
+ # resp.experiment.experiment_report.s3_reports[0].arn #=> String
1709
+ # resp.experiment.experiment_report.s3_reports[0].report_type #=> String
1613
1710
  #
1614
1711
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/StopExperiment AWS API Documentation
1615
1712
  #
@@ -1701,6 +1798,9 @@ module Aws::FIS
1701
1798
  # @option params [Types::UpdateExperimentTemplateExperimentOptionsInput] :experiment_options
1702
1799
  # The experiment options for the experiment template.
1703
1800
  #
1801
+ # @option params [Types::UpdateExperimentTemplateReportConfigurationInput] :experiment_report_configuration
1802
+ # The experiment report configuration for the experiment template.
1803
+ #
1704
1804
  # @return [Types::UpdateExperimentTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1705
1805
  #
1706
1806
  # * {Types::UpdateExperimentTemplateResponse#experiment_template #experiment_template} => Types::ExperimentTemplate
@@ -1762,6 +1862,23 @@ module Aws::FIS
1762
1862
  # experiment_options: {
1763
1863
  # empty_target_resolution_mode: "fail", # accepts fail, skip
1764
1864
  # },
1865
+ # experiment_report_configuration: {
1866
+ # outputs: {
1867
+ # s3_configuration: {
1868
+ # bucket_name: "S3BucketName",
1869
+ # prefix: "S3ObjectKey",
1870
+ # },
1871
+ # },
1872
+ # data_sources: {
1873
+ # cloud_watch_dashboards: [
1874
+ # {
1875
+ # dashboard_identifier: "ReportConfigurationCloudWatchDashboardIdentifier",
1876
+ # },
1877
+ # ],
1878
+ # },
1879
+ # pre_experiment_duration: "ReportConfigurationDuration",
1880
+ # post_experiment_duration: "ReportConfigurationDuration",
1881
+ # },
1765
1882
  # })
1766
1883
  #
1767
1884
  # @example Response structure
@@ -1806,6 +1923,12 @@ module Aws::FIS
1806
1923
  # resp.experiment_template.experiment_options.account_targeting #=> String, one of "single-account", "multi-account"
1807
1924
  # resp.experiment_template.experiment_options.empty_target_resolution_mode #=> String, one of "fail", "skip"
1808
1925
  # resp.experiment_template.target_account_configurations_count #=> Integer
1926
+ # resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.bucket_name #=> String
1927
+ # resp.experiment_template.experiment_report_configuration.outputs.s3_configuration.prefix #=> String
1928
+ # resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards #=> Array
1929
+ # resp.experiment_template.experiment_report_configuration.data_sources.cloud_watch_dashboards[0].dashboard_identifier #=> String
1930
+ # resp.experiment_template.experiment_report_configuration.pre_experiment_duration #=> String
1931
+ # resp.experiment_template.experiment_report_configuration.post_experiment_duration #=> String
1809
1932
  #
1810
1933
  # @see http://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/UpdateExperimentTemplate AWS API Documentation
1811
1934
  #
@@ -1915,7 +2038,7 @@ module Aws::FIS
1915
2038
  tracer: tracer
1916
2039
  )
1917
2040
  context[:gem_name] = 'aws-sdk-fis'
1918
- context[:gem_version] = '1.43.0'
2041
+ context[:gem_version] = '1.45.0'
1919
2042
  Seahorse::Client::Request.new(handlers, context)
1920
2043
  end
1921
2044
 
@@ -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"))
@@ -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
@@ -54,7 +54,7 @@ module Aws::FIS
54
54
  autoload :EndpointProvider, 'aws-sdk-fis/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-fis/endpoints'
56
56
 
57
- GEM_VERSION = '1.43.0'
57
+ GEM_VERSION = '1.45.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -124,6 +126,23 @@ module Aws
124
126
  ?experiment_options: {
125
127
  account_targeting: ("single-account" | "multi-account")?,
126
128
  empty_target_resolution_mode: ("fail" | "skip")?
129
+ },
130
+ ?experiment_report_configuration: {
131
+ outputs: {
132
+ s3_configuration: {
133
+ bucket_name: ::String?,
134
+ prefix: ::String?
135
+ }?
136
+ }?,
137
+ data_sources: {
138
+ cloud_watch_dashboards: Array[
139
+ {
140
+ dashboard_identifier: ::String?
141
+ },
142
+ ]?
143
+ }?,
144
+ pre_experiment_duration: ::String?,
145
+ post_experiment_duration: ::String?
127
146
  }
128
147
  ) -> _CreateExperimentTemplateResponseSuccess
129
148
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExperimentTemplateResponseSuccess
@@ -425,6 +444,23 @@ module Aws
425
444
  },
426
445
  ?experiment_options: {
427
446
  empty_target_resolution_mode: ("fail" | "skip")?
447
+ },
448
+ ?experiment_report_configuration: {
449
+ outputs: {
450
+ s3_configuration: {
451
+ bucket_name: ::String?,
452
+ prefix: ::String?
453
+ }?
454
+ }?,
455
+ data_sources: {
456
+ cloud_watch_dashboards: Array[
457
+ {
458
+ dashboard_identifier: ::String?
459
+ },
460
+ ]?
461
+ }?,
462
+ pre_experiment_duration: ::String?,
463
+ post_experiment_duration: ::String?
428
464
  }
429
465
  ) -> _UpdateExperimentTemplateResponseSuccess
430
466
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateExperimentTemplateResponseSuccess
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
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.43.0
4
+ version: 1.45.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-10-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement