aws-sdk-fis 1.42.0 → 1.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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.42.0'
57
+ GEM_VERSION = '1.44.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -124,6 +124,23 @@ module Aws
124
124
  ?experiment_options: {
125
125
  account_targeting: ("single-account" | "multi-account")?,
126
126
  empty_target_resolution_mode: ("fail" | "skip")?
127
+ },
128
+ ?experiment_report_configuration: {
129
+ outputs: {
130
+ s3_configuration: {
131
+ bucket_name: ::String?,
132
+ prefix: ::String?
133
+ }?
134
+ }?,
135
+ data_sources: {
136
+ cloud_watch_dashboards: Array[
137
+ {
138
+ dashboard_identifier: ::String?
139
+ },
140
+ ]?
141
+ }?,
142
+ pre_experiment_duration: ::String?,
143
+ post_experiment_duration: ::String?
127
144
  }
128
145
  ) -> _CreateExperimentTemplateResponseSuccess
129
146
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExperimentTemplateResponseSuccess
@@ -425,6 +442,23 @@ module Aws
425
442
  },
426
443
  ?experiment_options: {
427
444
  empty_target_resolution_mode: ("fail" | "skip")?
445
+ },
446
+ ?experiment_report_configuration: {
447
+ outputs: {
448
+ s3_configuration: {
449
+ bucket_name: ::String?,
450
+ prefix: ::String?
451
+ }?
452
+ }?,
453
+ data_sources: {
454
+ cloud_watch_dashboards: Array[
455
+ {
456
+ dashboard_identifier: ::String?
457
+ },
458
+ ]?
459
+ }?,
460
+ pre_experiment_duration: ::String?,
461
+ post_experiment_duration: ::String?
428
462
  }
429
463
  ) -> _UpdateExperimentTemplateResponseSuccess
430
464
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateExperimentTemplateResponseSuccess