aws-sdk-fis 1.42.0 → 1.44.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e75e370e2b76476a453e6c493906a7472bc40cd3ba4eea03ce86c6f32418de6
4
- data.tar.gz: 3567c310687382876b83de736f9bddeb6d9ce9ee07a9dd8a586e763d742fc090
3
+ metadata.gz: 0f94012b34aae0a5e6e45cd8debf81ce0fea3924b97b074ff72c604d9a63764c
4
+ data.tar.gz: e8a35b3b9246aebd959f02c704273b55f0ae5698864e4670b6d47df876c500fc
5
5
  SHA512:
6
- metadata.gz: 9e3f8e4974320ea68b735c51dec326a05f35e185a3e6283df22f97022b276a8eea12765bc2c2a715c4751efacc4e921dffb884ca56dc885368fea5083d829259
7
- data.tar.gz: 83a437cb31f68ca004919529d15c8339a0d5b6624d8e52fd431f360973919833384ae5cc6ca1fad4882b9e4c9dda28821a69206549d98cecbabb403f303b1eff
6
+ metadata.gz: 10fb07d1570cb7f2d47335f88c2e6968a93078e58786fd504c6a41cad18f8bb5aa81d7b4f704c5b2e699c771f3f5f72a8735eb74fd54d349f199795d9b8a82ce
7
+ data.tar.gz: 3d0dca2c541b6a5fdc0e71c4411e7a20b3ac0dc364dd0891ed1c17f72562bd5ec5ab39903b9baa75407327af9b75ab2d74bec3d6155eaca8816ffc9f32ae4c3a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.0 (2024-11-12)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for generating experiment reports with the experiment report configuration
8
+
9
+ 1.43.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.42.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.44.0
@@ -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.42.0'
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"))
@@ -52,15 +52,18 @@ module Aws::FIS
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end