@aws-sdk/client-fis 3.51.0 → 3.54.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.
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { CreateExperimentTemplateCommandInput, CreateExperimentTemplateCommandOutput } from "./commands/CreateExperimentTemplateCommand";
10
10
  import { DeleteExperimentTemplateCommandInput, DeleteExperimentTemplateCommandOutput } from "./commands/DeleteExperimentTemplateCommand";
11
11
  import { GetActionCommandInput, GetActionCommandOutput } from "./commands/GetActionCommand";
@@ -44,7 +44,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
44
44
  * A function that can calculate the length of a request body.
45
45
  * @internal
46
46
  */
47
- bodyLengthChecker?: (body: any) => number | undefined;
47
+ bodyLengthChecker?: __BodyLengthCalculator;
48
48
  /**
49
49
  * A function that converts a stream into an array of bytes.
50
50
  * @internal
@@ -3,3 +3,4 @@ export * from "./FisClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { FisServiceException } from "./models/FisServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from Fis service.
4
+ */
5
+ export declare class FisServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { FisServiceException as __BaseException } from "./FisServiceException";
2
3
  /**
3
4
  * <p>Describes a parameter for an action.</p>
4
5
  */
@@ -105,10 +106,13 @@ export declare namespace ActionSummary {
105
106
  /**
106
107
  * <p>The request could not be processed because of a conflict.</p>
107
108
  */
108
- export interface ConflictException extends __SmithyException, $MetadataBearer {
109
- name: "ConflictException";
110
- $fault: "client";
111
- message?: string;
109
+ export declare class ConflictException extends __BaseException {
110
+ readonly name: "ConflictException";
111
+ readonly $fault: "client";
112
+ /**
113
+ * @internal
114
+ */
115
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
112
116
  }
113
117
  /**
114
118
  * <p>Specifies an action for an experiment template.</p>
@@ -147,6 +151,63 @@ export declare namespace CreateExperimentTemplateActionInput {
147
151
  */
148
152
  const filterSensitiveLog: (obj: CreateExperimentTemplateActionInput) => any;
149
153
  }
154
+ /**
155
+ * <p>Specifies the configuration for experiment logging to Amazon CloudWatch Logs.</p>
156
+ */
157
+ export interface ExperimentTemplateCloudWatchLogsLogConfigurationInput {
158
+ /**
159
+ * <p>The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.</p>
160
+ */
161
+ logGroupArn: string | undefined;
162
+ }
163
+ export declare namespace ExperimentTemplateCloudWatchLogsLogConfigurationInput {
164
+ /**
165
+ * @internal
166
+ */
167
+ const filterSensitiveLog: (obj: ExperimentTemplateCloudWatchLogsLogConfigurationInput) => any;
168
+ }
169
+ /**
170
+ * <p>Specifies the configuration for experiment logging to Amazon S3.</p>
171
+ */
172
+ export interface ExperimentTemplateS3LogConfigurationInput {
173
+ /**
174
+ * <p>The name of the destination bucket.</p>
175
+ */
176
+ bucketName: string | undefined;
177
+ /**
178
+ * <p>The bucket prefix.</p>
179
+ */
180
+ prefix?: string;
181
+ }
182
+ export declare namespace ExperimentTemplateS3LogConfigurationInput {
183
+ /**
184
+ * @internal
185
+ */
186
+ const filterSensitiveLog: (obj: ExperimentTemplateS3LogConfigurationInput) => any;
187
+ }
188
+ /**
189
+ * <p>Specifies the configuration for experiment logging.</p>
190
+ */
191
+ export interface CreateExperimentTemplateLogConfigurationInput {
192
+ /**
193
+ * <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
194
+ */
195
+ cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
196
+ /**
197
+ * <p>The configuration for experiment logging to Amazon S3.</p>
198
+ */
199
+ s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
200
+ /**
201
+ * <p>The schema version.</p>
202
+ */
203
+ logSchemaVersion: number | undefined;
204
+ }
205
+ export declare namespace CreateExperimentTemplateLogConfigurationInput {
206
+ /**
207
+ * @internal
208
+ */
209
+ const filterSensitiveLog: (obj: CreateExperimentTemplateLogConfigurationInput) => any;
210
+ }
150
211
  /**
151
212
  * <p>Specifies a stop condition for an experiment template.</p>
152
213
  */
@@ -280,6 +341,10 @@ export interface CreateExperimentTemplateRequest {
280
341
  tags?: {
281
342
  [key: string]: string;
282
343
  };
344
+ /**
345
+ * <p>The configuration for experiment logging.</p>
346
+ */
347
+ logConfiguration?: CreateExperimentTemplateLogConfigurationInput;
283
348
  }
284
349
  export declare namespace CreateExperimentTemplateRequest {
285
350
  /**
@@ -322,6 +387,63 @@ export declare namespace ExperimentTemplateAction {
322
387
  */
323
388
  const filterSensitiveLog: (obj: ExperimentTemplateAction) => any;
324
389
  }
390
+ /**
391
+ * <p>Describes the configuration for experiment logging to Amazon CloudWatch Logs.</p>
392
+ */
393
+ export interface ExperimentTemplateCloudWatchLogsLogConfiguration {
394
+ /**
395
+ * <p>The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.</p>
396
+ */
397
+ logGroupArn?: string;
398
+ }
399
+ export declare namespace ExperimentTemplateCloudWatchLogsLogConfiguration {
400
+ /**
401
+ * @internal
402
+ */
403
+ const filterSensitiveLog: (obj: ExperimentTemplateCloudWatchLogsLogConfiguration) => any;
404
+ }
405
+ /**
406
+ * <p>Describes the configuration for experiment logging to Amazon S3.</p>
407
+ */
408
+ export interface ExperimentTemplateS3LogConfiguration {
409
+ /**
410
+ * <p>The name of the destination bucket.</p>
411
+ */
412
+ bucketName?: string;
413
+ /**
414
+ * <p>The bucket prefix.</p>
415
+ */
416
+ prefix?: string;
417
+ }
418
+ export declare namespace ExperimentTemplateS3LogConfiguration {
419
+ /**
420
+ * @internal
421
+ */
422
+ const filterSensitiveLog: (obj: ExperimentTemplateS3LogConfiguration) => any;
423
+ }
424
+ /**
425
+ * <p>Describes the configuration for experiment logging.</p>
426
+ */
427
+ export interface ExperimentTemplateLogConfiguration {
428
+ /**
429
+ * <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
430
+ */
431
+ cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfiguration;
432
+ /**
433
+ * <p>The configuration for experiment logging to Amazon S3.</p>
434
+ */
435
+ s3Configuration?: ExperimentTemplateS3LogConfiguration;
436
+ /**
437
+ * <p>The schema version.</p>
438
+ */
439
+ logSchemaVersion?: number;
440
+ }
441
+ export declare namespace ExperimentTemplateLogConfiguration {
442
+ /**
443
+ * @internal
444
+ */
445
+ const filterSensitiveLog: (obj: ExperimentTemplateLogConfiguration) => any;
446
+ }
325
447
  /**
326
448
  * <p>Describes a stop condition for an experiment template.</p>
327
449
  */
@@ -445,6 +567,10 @@ export interface ExperimentTemplate {
445
567
  tags?: {
446
568
  [key: string]: string;
447
569
  };
570
+ /**
571
+ * <p>The configuration for experiment logging.</p>
572
+ */
573
+ logConfiguration?: ExperimentTemplateLogConfiguration;
448
574
  }
449
575
  export declare namespace ExperimentTemplate {
450
576
  /**
@@ -467,26 +593,35 @@ export declare namespace CreateExperimentTemplateResponse {
467
593
  /**
468
594
  * <p>The specified resource cannot be found.</p>
469
595
  */
470
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
471
- name: "ResourceNotFoundException";
472
- $fault: "client";
473
- message?: string;
596
+ export declare class ResourceNotFoundException extends __BaseException {
597
+ readonly name: "ResourceNotFoundException";
598
+ readonly $fault: "client";
599
+ /**
600
+ * @internal
601
+ */
602
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
474
603
  }
475
604
  /**
476
605
  * <p>You have exceeded your service quota.</p>
477
606
  */
478
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
479
- name: "ServiceQuotaExceededException";
480
- $fault: "client";
481
- message?: string;
607
+ export declare class ServiceQuotaExceededException extends __BaseException {
608
+ readonly name: "ServiceQuotaExceededException";
609
+ readonly $fault: "client";
610
+ /**
611
+ * @internal
612
+ */
613
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
482
614
  }
483
615
  /**
484
616
  * <p>The specified input is not valid, or fails to satisfy the constraints for the request.</p>
485
617
  */
486
- export interface ValidationException extends __SmithyException, $MetadataBearer {
487
- name: "ValidationException";
488
- $fault: "client";
489
- message?: string;
618
+ export declare class ValidationException extends __BaseException {
619
+ readonly name: "ValidationException";
620
+ readonly $fault: "client";
621
+ /**
622
+ * @internal
623
+ */
624
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
490
625
  }
491
626
  export interface DeleteExperimentTemplateRequest {
492
627
  /**
@@ -588,6 +723,63 @@ export declare namespace ExperimentAction {
588
723
  */
589
724
  const filterSensitiveLog: (obj: ExperimentAction) => any;
590
725
  }
726
+ /**
727
+ * <p>Describes the configuration for experiment logging to Amazon CloudWatch Logs.</p>
728
+ */
729
+ export interface ExperimentCloudWatchLogsLogConfiguration {
730
+ /**
731
+ * <p>The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.</p>
732
+ */
733
+ logGroupArn?: string;
734
+ }
735
+ export declare namespace ExperimentCloudWatchLogsLogConfiguration {
736
+ /**
737
+ * @internal
738
+ */
739
+ const filterSensitiveLog: (obj: ExperimentCloudWatchLogsLogConfiguration) => any;
740
+ }
741
+ /**
742
+ * <p>Describes the configuration for experiment logging to Amazon S3.</p>
743
+ */
744
+ export interface ExperimentS3LogConfiguration {
745
+ /**
746
+ * <p>The name of the destination bucket.</p>
747
+ */
748
+ bucketName?: string;
749
+ /**
750
+ * <p>The bucket prefix.</p>
751
+ */
752
+ prefix?: string;
753
+ }
754
+ export declare namespace ExperimentS3LogConfiguration {
755
+ /**
756
+ * @internal
757
+ */
758
+ const filterSensitiveLog: (obj: ExperimentS3LogConfiguration) => any;
759
+ }
760
+ /**
761
+ * <p>Describes the configuration for experiment logging.</p>
762
+ */
763
+ export interface ExperimentLogConfiguration {
764
+ /**
765
+ * <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
766
+ */
767
+ cloudWatchLogsConfiguration?: ExperimentCloudWatchLogsLogConfiguration;
768
+ /**
769
+ * <p>The configuration for experiment logging to Amazon S3.</p>
770
+ */
771
+ s3Configuration?: ExperimentS3LogConfiguration;
772
+ /**
773
+ * <p>The schema version.</p>
774
+ */
775
+ logSchemaVersion?: number;
776
+ }
777
+ export declare namespace ExperimentLogConfiguration {
778
+ /**
779
+ * @internal
780
+ */
781
+ const filterSensitiveLog: (obj: ExperimentLogConfiguration) => any;
782
+ }
591
783
  export declare enum ExperimentStatus {
592
784
  completed = "completed",
593
785
  failed = "failed",
@@ -747,6 +939,10 @@ export interface Experiment {
747
939
  tags?: {
748
940
  [key: string]: string;
749
941
  };
942
+ /**
943
+ * <p>The configuration for experiment logging.</p>
944
+ */
945
+ logConfiguration?: ExperimentLogConfiguration;
750
946
  }
751
947
  export declare namespace Experiment {
752
948
  /**
@@ -1277,6 +1473,29 @@ export declare namespace UpdateExperimentTemplateActionInputItem {
1277
1473
  */
1278
1474
  const filterSensitiveLog: (obj: UpdateExperimentTemplateActionInputItem) => any;
1279
1475
  }
1476
+ /**
1477
+ * <p>Specifies the configuration for experiment logging.</p>
1478
+ */
1479
+ export interface UpdateExperimentTemplateLogConfigurationInput {
1480
+ /**
1481
+ * <p>The configuration for experiment logging to Amazon CloudWatch Logs.</p>
1482
+ */
1483
+ cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
1484
+ /**
1485
+ * <p>The configuration for experiment logging to Amazon S3.</p>
1486
+ */
1487
+ s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
1488
+ /**
1489
+ * <p>The schema version.</p>
1490
+ */
1491
+ logSchemaVersion?: number;
1492
+ }
1493
+ export declare namespace UpdateExperimentTemplateLogConfigurationInput {
1494
+ /**
1495
+ * @internal
1496
+ */
1497
+ const filterSensitiveLog: (obj: UpdateExperimentTemplateLogConfigurationInput) => any;
1498
+ }
1280
1499
  /**
1281
1500
  * <p>Specifies a stop condition for an experiment. You can define a stop condition as a CloudWatch alarm.</p>
1282
1501
  */
@@ -1366,6 +1585,10 @@ export interface UpdateExperimentTemplateRequest {
1366
1585
  * <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
1367
1586
  */
1368
1587
  roleArn?: string;
1588
+ /**
1589
+ * <p>The configuration for experiment logging.</p>
1590
+ */
1591
+ logConfiguration?: UpdateExperimentTemplateLogConfigurationInput;
1369
1592
  }
1370
1593
  export declare namespace UpdateExperimentTemplateRequest {
1371
1594
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { CreateExperimentTemplateCommandInput, CreateExperimentTemplateCommandOutput } from "./commands/CreateExperimentTemplateCommand";
10
10
  import { DeleteExperimentTemplateCommandInput, DeleteExperimentTemplateCommandOutput } from "./commands/DeleteExperimentTemplateCommand";
11
11
  import { GetActionCommandInput, GetActionCommandOutput } from "./commands/GetActionCommand";
@@ -32,7 +32,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
32
32
 
33
33
  urlParser?: __UrlParser;
34
34
 
35
- bodyLengthChecker?: (body: any) => number | undefined;
35
+ bodyLengthChecker?: __BodyLengthCalculator;
36
36
 
37
37
  streamCollector?: __StreamCollector;
38
38
 
@@ -3,3 +3,4 @@ export * from "./FisClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { FisServiceException } from "./models/FisServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class FisServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { FisServiceException as __BaseException } from "./FisServiceException";
2
3
 
3
4
  export interface ActionParameter {
4
5
 
@@ -62,10 +63,11 @@ export declare namespace ActionSummary {
62
63
  const filterSensitiveLog: (obj: ActionSummary) => any;
63
64
  }
64
65
 
65
- export interface ConflictException extends __SmithyException, $MetadataBearer {
66
- name: "ConflictException";
67
- $fault: "client";
68
- message?: string;
66
+ export declare class ConflictException extends __BaseException {
67
+ readonly name: "ConflictException";
68
+ readonly $fault: "client";
69
+
70
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
69
71
  }
70
72
 
71
73
  export interface CreateExperimentTemplateActionInput {
@@ -89,6 +91,39 @@ export declare namespace CreateExperimentTemplateActionInput {
89
91
  const filterSensitiveLog: (obj: CreateExperimentTemplateActionInput) => any;
90
92
  }
91
93
 
94
+ export interface ExperimentTemplateCloudWatchLogsLogConfigurationInput {
95
+
96
+ logGroupArn: string | undefined;
97
+ }
98
+ export declare namespace ExperimentTemplateCloudWatchLogsLogConfigurationInput {
99
+
100
+ const filterSensitiveLog: (obj: ExperimentTemplateCloudWatchLogsLogConfigurationInput) => any;
101
+ }
102
+
103
+ export interface ExperimentTemplateS3LogConfigurationInput {
104
+
105
+ bucketName: string | undefined;
106
+
107
+ prefix?: string;
108
+ }
109
+ export declare namespace ExperimentTemplateS3LogConfigurationInput {
110
+
111
+ const filterSensitiveLog: (obj: ExperimentTemplateS3LogConfigurationInput) => any;
112
+ }
113
+
114
+ export interface CreateExperimentTemplateLogConfigurationInput {
115
+
116
+ cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
117
+
118
+ s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
119
+
120
+ logSchemaVersion: number | undefined;
121
+ }
122
+ export declare namespace CreateExperimentTemplateLogConfigurationInput {
123
+
124
+ const filterSensitiveLog: (obj: CreateExperimentTemplateLogConfigurationInput) => any;
125
+ }
126
+
92
127
  export interface CreateExperimentTemplateStopConditionInput {
93
128
 
94
129
  source: string | undefined;
@@ -154,6 +189,8 @@ export interface CreateExperimentTemplateRequest {
154
189
  tags?: {
155
190
  [key: string]: string;
156
191
  };
192
+
193
+ logConfiguration?: CreateExperimentTemplateLogConfigurationInput;
157
194
  }
158
195
  export declare namespace CreateExperimentTemplateRequest {
159
196
 
@@ -181,6 +218,39 @@ export declare namespace ExperimentTemplateAction {
181
218
  const filterSensitiveLog: (obj: ExperimentTemplateAction) => any;
182
219
  }
183
220
 
221
+ export interface ExperimentTemplateCloudWatchLogsLogConfiguration {
222
+
223
+ logGroupArn?: string;
224
+ }
225
+ export declare namespace ExperimentTemplateCloudWatchLogsLogConfiguration {
226
+
227
+ const filterSensitiveLog: (obj: ExperimentTemplateCloudWatchLogsLogConfiguration) => any;
228
+ }
229
+
230
+ export interface ExperimentTemplateS3LogConfiguration {
231
+
232
+ bucketName?: string;
233
+
234
+ prefix?: string;
235
+ }
236
+ export declare namespace ExperimentTemplateS3LogConfiguration {
237
+
238
+ const filterSensitiveLog: (obj: ExperimentTemplateS3LogConfiguration) => any;
239
+ }
240
+
241
+ export interface ExperimentTemplateLogConfiguration {
242
+
243
+ cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfiguration;
244
+
245
+ s3Configuration?: ExperimentTemplateS3LogConfiguration;
246
+
247
+ logSchemaVersion?: number;
248
+ }
249
+ export declare namespace ExperimentTemplateLogConfiguration {
250
+
251
+ const filterSensitiveLog: (obj: ExperimentTemplateLogConfiguration) => any;
252
+ }
253
+
184
254
  export interface ExperimentTemplateStopCondition {
185
255
 
186
256
  source?: string;
@@ -251,6 +321,8 @@ export interface ExperimentTemplate {
251
321
  tags?: {
252
322
  [key: string]: string;
253
323
  };
324
+
325
+ logConfiguration?: ExperimentTemplateLogConfiguration;
254
326
  }
255
327
  export declare namespace ExperimentTemplate {
256
328
 
@@ -265,22 +337,25 @@ export declare namespace CreateExperimentTemplateResponse {
265
337
  const filterSensitiveLog: (obj: CreateExperimentTemplateResponse) => any;
266
338
  }
267
339
 
268
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
269
- name: "ResourceNotFoundException";
270
- $fault: "client";
271
- message?: string;
340
+ export declare class ResourceNotFoundException extends __BaseException {
341
+ readonly name: "ResourceNotFoundException";
342
+ readonly $fault: "client";
343
+
344
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
272
345
  }
273
346
 
274
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
275
- name: "ServiceQuotaExceededException";
276
- $fault: "client";
277
- message?: string;
347
+ export declare class ServiceQuotaExceededException extends __BaseException {
348
+ readonly name: "ServiceQuotaExceededException";
349
+ readonly $fault: "client";
350
+
351
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
278
352
  }
279
353
 
280
- export interface ValidationException extends __SmithyException, $MetadataBearer {
281
- name: "ValidationException";
282
- $fault: "client";
283
- message?: string;
354
+ export declare class ValidationException extends __BaseException {
355
+ readonly name: "ValidationException";
356
+ readonly $fault: "client";
357
+
358
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
284
359
  }
285
360
  export interface DeleteExperimentTemplateRequest {
286
361
 
@@ -346,6 +421,39 @@ export declare namespace ExperimentAction {
346
421
 
347
422
  const filterSensitiveLog: (obj: ExperimentAction) => any;
348
423
  }
424
+
425
+ export interface ExperimentCloudWatchLogsLogConfiguration {
426
+
427
+ logGroupArn?: string;
428
+ }
429
+ export declare namespace ExperimentCloudWatchLogsLogConfiguration {
430
+
431
+ const filterSensitiveLog: (obj: ExperimentCloudWatchLogsLogConfiguration) => any;
432
+ }
433
+
434
+ export interface ExperimentS3LogConfiguration {
435
+
436
+ bucketName?: string;
437
+
438
+ prefix?: string;
439
+ }
440
+ export declare namespace ExperimentS3LogConfiguration {
441
+
442
+ const filterSensitiveLog: (obj: ExperimentS3LogConfiguration) => any;
443
+ }
444
+
445
+ export interface ExperimentLogConfiguration {
446
+
447
+ cloudWatchLogsConfiguration?: ExperimentCloudWatchLogsLogConfiguration;
448
+
449
+ s3Configuration?: ExperimentS3LogConfiguration;
450
+
451
+ logSchemaVersion?: number;
452
+ }
453
+ export declare namespace ExperimentLogConfiguration {
454
+
455
+ const filterSensitiveLog: (obj: ExperimentLogConfiguration) => any;
456
+ }
349
457
  export declare enum ExperimentStatus {
350
458
  completed = "completed",
351
459
  failed = "failed",
@@ -441,6 +549,8 @@ export interface Experiment {
441
549
  tags?: {
442
550
  [key: string]: string;
443
551
  };
552
+
553
+ logConfiguration?: ExperimentLogConfiguration;
444
554
  }
445
555
  export declare namespace Experiment {
446
556
 
@@ -777,6 +887,19 @@ export declare namespace UpdateExperimentTemplateActionInputItem {
777
887
  const filterSensitiveLog: (obj: UpdateExperimentTemplateActionInputItem) => any;
778
888
  }
779
889
 
890
+ export interface UpdateExperimentTemplateLogConfigurationInput {
891
+
892
+ cloudWatchLogsConfiguration?: ExperimentTemplateCloudWatchLogsLogConfigurationInput;
893
+
894
+ s3Configuration?: ExperimentTemplateS3LogConfigurationInput;
895
+
896
+ logSchemaVersion?: number;
897
+ }
898
+ export declare namespace UpdateExperimentTemplateLogConfigurationInput {
899
+
900
+ const filterSensitiveLog: (obj: UpdateExperimentTemplateLogConfigurationInput) => any;
901
+ }
902
+
780
903
  export interface UpdateExperimentTemplateStopConditionInput {
781
904
 
782
905
  source: string | undefined;
@@ -827,6 +950,8 @@ export interface UpdateExperimentTemplateRequest {
827
950
  };
828
951
 
829
952
  roleArn?: string;
953
+
954
+ logConfiguration?: UpdateExperimentTemplateLogConfigurationInput;
830
955
  }
831
956
  export declare namespace UpdateExperimentTemplateRequest {
832
957
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: FisClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;