@aws-sdk/client-sfn 3.686.0 → 3.691.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.
@@ -33,12 +33,12 @@ export interface ActivityFailedEventDetails {
33
33
  * <p>The error code of the failure.</p>
34
34
  * @public
35
35
  */
36
- error?: string;
36
+ error?: string | undefined;
37
37
  /**
38
38
  * <p>A more detailed explanation of the cause of the failure.</p>
39
39
  * @public
40
40
  */
41
- cause?: string;
41
+ cause?: string | undefined;
42
42
  }
43
43
  /**
44
44
  * <p>The maximum number of activities has been reached. Existing activities must be deleted
@@ -106,7 +106,7 @@ export interface HistoryEventExecutionDataDetails {
106
106
  * for API calls.</p>
107
107
  * @public
108
108
  */
109
- truncated?: boolean;
109
+ truncated?: boolean | undefined;
110
110
  }
111
111
  /**
112
112
  * <p>Contains details about an activity scheduled during an execution.</p>
@@ -122,22 +122,22 @@ export interface ActivityScheduledEventDetails {
122
122
  * <p>The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
123
123
  * @public
124
124
  */
125
- input?: string;
125
+ input?: string | undefined;
126
126
  /**
127
127
  * <p>Contains details about the input for an execution history event.</p>
128
128
  * @public
129
129
  */
130
- inputDetails?: HistoryEventExecutionDataDetails;
130
+ inputDetails?: HistoryEventExecutionDataDetails | undefined;
131
131
  /**
132
132
  * <p>The maximum allowed duration of the activity task.</p>
133
133
  * @public
134
134
  */
135
- timeoutInSeconds?: number;
135
+ timeoutInSeconds?: number | undefined;
136
136
  /**
137
137
  * <p>The maximum allowed duration between two heartbeats for the activity task.</p>
138
138
  * @public
139
139
  */
140
- heartbeatInSeconds?: number;
140
+ heartbeatInSeconds?: number | undefined;
141
141
  }
142
142
  /**
143
143
  * <p>Contains details about an activity schedule failure that occurred during an
@@ -149,12 +149,12 @@ export interface ActivityScheduleFailedEventDetails {
149
149
  * <p>The error code of the failure.</p>
150
150
  * @public
151
151
  */
152
- error?: string;
152
+ error?: string | undefined;
153
153
  /**
154
154
  * <p>A more detailed explanation of the cause of the failure.</p>
155
155
  * @public
156
156
  */
157
- cause?: string;
157
+ cause?: string | undefined;
158
158
  }
159
159
  /**
160
160
  * <p>Contains details about the start of an activity during an execution.</p>
@@ -166,7 +166,7 @@ export interface ActivityStartedEventDetails {
166
166
  * workers when calling <a>GetActivityTask</a>.</p>
167
167
  * @public
168
168
  */
169
- workerName?: string;
169
+ workerName?: string | undefined;
170
170
  }
171
171
  /**
172
172
  * <p>Contains details about an activity that successfully terminated during an
@@ -178,12 +178,12 @@ export interface ActivitySucceededEventDetails {
178
178
  * <p>The JSON data output by the activity task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
179
179
  * @public
180
180
  */
181
- output?: string;
181
+ output?: string | undefined;
182
182
  /**
183
183
  * <p>Contains details about the output of an execution history event.</p>
184
184
  * @public
185
185
  */
186
- outputDetails?: HistoryEventExecutionDataDetails;
186
+ outputDetails?: HistoryEventExecutionDataDetails | undefined;
187
187
  }
188
188
  /**
189
189
  * <p>Contains details about an activity timeout that occurred during an execution.</p>
@@ -194,12 +194,12 @@ export interface ActivityTimedOutEventDetails {
194
194
  * <p>The error code of the failure.</p>
195
195
  * @public
196
196
  */
197
- error?: string;
197
+ error?: string | undefined;
198
198
  /**
199
199
  * <p>A more detailed explanation of the cause of the timeout.</p>
200
200
  * @public
201
201
  */
202
- cause?: string;
202
+ cause?: string | undefined;
203
203
  }
204
204
  /**
205
205
  * <p>The maximum number of workers concurrently polling for activity tasks has been
@@ -243,12 +243,12 @@ export interface EncryptionConfiguration {
243
243
  * <p>An alias, alias ARN, key ID, or key ARN of a symmetric encryption KMS key to encrypt data. To specify a KMS key in a different Amazon Web Services account, you must use the key ARN or alias ARN.</p>
244
244
  * @public
245
245
  */
246
- kmsKeyId?: string;
246
+ kmsKeyId?: string | undefined;
247
247
  /**
248
248
  * <p>Maximum duration that Step Functions will reuse data keys. When the period expires, Step Functions will call <code>GenerateDataKey</code>. Only applies to customer managed keys.</p>
249
249
  * @public
250
250
  */
251
- kmsDataKeyReusePeriodSeconds?: number;
251
+ kmsDataKeyReusePeriodSeconds?: number | undefined;
252
252
  /**
253
253
  * <p>Encryption type</p>
254
254
  * @public
@@ -270,12 +270,12 @@ export interface Tag {
270
270
  * <p>The key of a tag.</p>
271
271
  * @public
272
272
  */
273
- key?: string;
273
+ key?: string | undefined;
274
274
  /**
275
275
  * <p>The value of a tag.</p>
276
276
  * @public
277
277
  */
278
- value?: string;
278
+ value?: string | undefined;
279
279
  }
280
280
  /**
281
281
  * @public
@@ -319,12 +319,12 @@ export interface CreateActivityInput {
319
319
  * <p>Tags may only contain Unicode letters, digits, white space, or these symbols: <code>_ . : / = + - @</code>.</p>
320
320
  * @public
321
321
  */
322
- tags?: Tag[];
322
+ tags?: Tag[] | undefined;
323
323
  /**
324
324
  * <p>Settings to configure server-side encryption.</p>
325
325
  * @public
326
326
  */
327
- encryptionConfiguration?: EncryptionConfiguration;
327
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
328
328
  }
329
329
  /**
330
330
  * @public
@@ -397,7 +397,7 @@ export declare class KmsThrottlingException extends __BaseException {
397
397
  export declare class TooManyTags extends __BaseException {
398
398
  readonly name: "TooManyTags";
399
399
  readonly $fault: "client";
400
- resourceName?: string;
400
+ resourceName?: string | undefined;
401
401
  /**
402
402
  * @internal
403
403
  */
@@ -427,7 +427,7 @@ export interface CloudWatchLogsLogGroup {
427
427
  * </p>
428
428
  * @public
429
429
  */
430
- logGroupArn?: string;
430
+ logGroupArn?: string | undefined;
431
431
  }
432
432
  /**
433
433
  * <p></p>
@@ -438,7 +438,7 @@ export interface LogDestination {
438
438
  * <p>An object describing a CloudWatch log group. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html">AWS::Logs::LogGroup</a> in the CloudFormation User Guide.</p>
439
439
  * @public
440
440
  */
441
- cloudWatchLogsLogGroup?: CloudWatchLogsLogGroup;
441
+ cloudWatchLogsLogGroup?: CloudWatchLogsLogGroup | undefined;
442
442
  }
443
443
  /**
444
444
  * @public
@@ -464,19 +464,19 @@ export interface LoggingConfiguration {
464
464
  * <p>Defines which category of execution history events are logged.</p>
465
465
  * @public
466
466
  */
467
- level?: LogLevel;
467
+ level?: LogLevel | undefined;
468
468
  /**
469
469
  * <p>Determines whether execution data is included in your log. When set to <code>false</code>,
470
470
  * data is excluded.</p>
471
471
  * @public
472
472
  */
473
- includeExecutionData?: boolean;
473
+ includeExecutionData?: boolean | undefined;
474
474
  /**
475
475
  * <p>An array of objects that describes where your execution history events will be logged.
476
476
  * Limited to size 1. Required, if your log level is not set to <code>OFF</code>.</p>
477
477
  * @public
478
478
  */
479
- destinations?: LogDestination[];
479
+ destinations?: LogDestination[] | undefined;
480
480
  }
481
481
  /**
482
482
  * <p>Selects whether or not the state machine's X-Ray tracing is enabled. Default is
@@ -489,7 +489,7 @@ export interface TracingConfiguration {
489
489
  * <p>When set to <code>true</code>, X-Ray tracing is enabled.</p>
490
490
  * @public
491
491
  */
492
- enabled?: boolean;
492
+ enabled?: boolean | undefined;
493
493
  }
494
494
  /**
495
495
  * @public
@@ -550,7 +550,7 @@ export interface CreateStateMachineInput {
550
550
  * has been created.</p>
551
551
  * @public
552
552
  */
553
- type?: StateMachineType;
553
+ type?: StateMachineType | undefined;
554
554
  /**
555
555
  * <p>Defines what execution history events are logged and where they are logged.</p>
556
556
  * <note>
@@ -560,7 +560,7 @@ export interface CreateStateMachineInput {
560
560
  * </note>
561
561
  * @public
562
562
  */
563
- loggingConfiguration?: LoggingConfiguration;
563
+ loggingConfiguration?: LoggingConfiguration | undefined;
564
564
  /**
565
565
  * <p>Tags to be added when creating a state machine.</p>
566
566
  * <p>An array of key-value pairs. For more information, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using
@@ -570,27 +570,27 @@ export interface CreateStateMachineInput {
570
570
  * <p>Tags may only contain Unicode letters, digits, white space, or these symbols: <code>_ . : / = + - @</code>.</p>
571
571
  * @public
572
572
  */
573
- tags?: Tag[];
573
+ tags?: Tag[] | undefined;
574
574
  /**
575
575
  * <p>Selects whether X-Ray tracing is enabled.</p>
576
576
  * @public
577
577
  */
578
- tracingConfiguration?: TracingConfiguration;
578
+ tracingConfiguration?: TracingConfiguration | undefined;
579
579
  /**
580
580
  * <p>Set to <code>true</code> to publish the first version of the state machine during creation. The default is <code>false</code>.</p>
581
581
  * @public
582
582
  */
583
- publish?: boolean;
583
+ publish?: boolean | undefined;
584
584
  /**
585
585
  * <p>Sets description about the state machine version. You can only set the description if the <code>publish</code> parameter is set to <code>true</code>. Otherwise, if you set <code>versionDescription</code>, but <code>publish</code> to <code>false</code>, this API action throws <code>ValidationException</code>.</p>
586
586
  * @public
587
587
  */
588
- versionDescription?: string;
588
+ versionDescription?: string | undefined;
589
589
  /**
590
590
  * <p>Settings to configure server-side encryption.</p>
591
591
  * @public
592
592
  */
593
- encryptionConfiguration?: EncryptionConfiguration;
593
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
594
594
  }
595
595
  /**
596
596
  * @public
@@ -610,7 +610,7 @@ export interface CreateStateMachineOutput {
610
610
  * <p>The Amazon Resource Name (ARN) that identifies the created state machine version. If you do not set the <code>publish</code> parameter to <code>true</code>, this field returns null value.</p>
611
611
  * @public
612
612
  */
613
- stateMachineVersionArn?: string;
613
+ stateMachineVersionArn?: string | undefined;
614
614
  }
615
615
  /**
616
616
  * <p>The provided Amazon Resource Name (ARN) is not valid.</p>
@@ -736,7 +736,7 @@ export declare class ValidationException extends __BaseException {
736
736
  * <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
737
737
  * @public
738
738
  */
739
- reason?: ValidationExceptionReason;
739
+ reason?: ValidationExceptionReason | undefined;
740
740
  /**
741
741
  * @internal
742
742
  */
@@ -770,7 +770,7 @@ export interface CreateStateMachineAliasInput {
770
770
  * <p>A description for the state machine alias.</p>
771
771
  * @public
772
772
  */
773
- description?: string;
773
+ description?: string | undefined;
774
774
  /**
775
775
  * <p>The name of the state machine alias.</p>
776
776
  * <p>To avoid conflict with version ARNs, don't use an integer in the name of the alias.</p>
@@ -809,7 +809,7 @@ export interface CreateStateMachineAliasOutput {
809
809
  export declare class ResourceNotFound extends __BaseException {
810
810
  readonly name: "ResourceNotFound";
811
811
  readonly $fault: "client";
812
- resourceName?: string;
812
+ resourceName?: string | undefined;
813
813
  /**
814
814
  * @internal
815
815
  */
@@ -943,7 +943,7 @@ export interface DescribeActivityOutput {
943
943
  * <p>Settings for configured server-side encryption.</p>
944
944
  * @public
945
945
  */
946
- encryptionConfiguration?: EncryptionConfiguration;
946
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
947
947
  }
948
948
  /**
949
949
  * @public
@@ -970,7 +970,7 @@ export interface DescribeExecutionInput {
970
970
  * <p>If your state machine definition is encrypted with a KMS key, callers must have <code>kms:Decrypt</code> permission to decrypt the definition. Alternatively, you can call DescribeStateMachine API with <code>includedData = METADATA_ONLY</code> to get a successful response without the encrypted definition.</p>
971
971
  * @public
972
972
  */
973
- includedData?: IncludedData;
973
+ includedData?: IncludedData | undefined;
974
974
  }
975
975
  /**
976
976
  * <p>Provides details about execution input or output.</p>
@@ -982,7 +982,7 @@ export interface CloudWatchEventsExecutionDataDetails {
982
982
  * for API calls. </p>
983
983
  * @public
984
984
  */
985
- included?: boolean;
985
+ included?: boolean | undefined;
986
986
  }
987
987
  /**
988
988
  * @public
@@ -1053,7 +1053,7 @@ export interface DescribeExecutionOutput {
1053
1053
  * <p>To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.</p>
1054
1054
  * @public
1055
1055
  */
1056
- name?: string;
1056
+ name?: string | undefined;
1057
1057
  /**
1058
1058
  * <p>The current status of the execution.</p>
1059
1059
  * @public
@@ -1068,17 +1068,17 @@ export interface DescribeExecutionOutput {
1068
1068
  * <p>If the execution ended, the date the execution stopped.</p>
1069
1069
  * @public
1070
1070
  */
1071
- stopDate?: Date;
1071
+ stopDate?: Date | undefined;
1072
1072
  /**
1073
1073
  * <p>The string that contains the JSON input data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
1074
1074
  * @public
1075
1075
  */
1076
- input?: string;
1076
+ input?: string | undefined;
1077
1077
  /**
1078
1078
  * <p>Provides details about execution input or output.</p>
1079
1079
  * @public
1080
1080
  */
1081
- inputDetails?: CloudWatchEventsExecutionDataDetails;
1081
+ inputDetails?: CloudWatchEventsExecutionDataDetails | undefined;
1082
1082
  /**
1083
1083
  * <p>The JSON output data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
1084
1084
  * <note>
@@ -1087,57 +1087,57 @@ export interface DescribeExecutionOutput {
1087
1087
  * </note>
1088
1088
  * @public
1089
1089
  */
1090
- output?: string;
1090
+ output?: string | undefined;
1091
1091
  /**
1092
1092
  * <p>Provides details about execution input or output.</p>
1093
1093
  * @public
1094
1094
  */
1095
- outputDetails?: CloudWatchEventsExecutionDataDetails;
1095
+ outputDetails?: CloudWatchEventsExecutionDataDetails | undefined;
1096
1096
  /**
1097
1097
  * <p>The X-Ray trace header that was passed to the execution.</p>
1098
1098
  * @public
1099
1099
  */
1100
- traceHeader?: string;
1100
+ traceHeader?: string | undefined;
1101
1101
  /**
1102
1102
  * <p>The Amazon Resource Name (ARN) that identifies a Map Run, which dispatched this execution.</p>
1103
1103
  * @public
1104
1104
  */
1105
- mapRunArn?: string;
1105
+ mapRunArn?: string | undefined;
1106
1106
  /**
1107
1107
  * <p>The error string if the state machine execution failed.</p>
1108
1108
  * @public
1109
1109
  */
1110
- error?: string;
1110
+ error?: string | undefined;
1111
1111
  /**
1112
1112
  * <p>The cause string if the state machine execution failed.</p>
1113
1113
  * @public
1114
1114
  */
1115
- cause?: string;
1115
+ cause?: string | undefined;
1116
1116
  /**
1117
1117
  * <p>The Amazon Resource Name (ARN) of the state machine version associated with the execution. The version ARN is a combination of state machine ARN and the version number separated by a colon (:). For example, <code>stateMachineARN:1</code>.</p>
1118
1118
  * <p>If you start an execution from a <code>StartExecution</code> request without specifying a
1119
1119
  * state machine version or alias ARN, Step Functions returns a null value.</p>
1120
1120
  * @public
1121
1121
  */
1122
- stateMachineVersionArn?: string;
1122
+ stateMachineVersionArn?: string | undefined;
1123
1123
  /**
1124
1124
  * <p>The Amazon Resource Name (ARN) of the state machine alias associated with the execution. The alias ARN is a combination of state machine ARN and the alias name separated by a colon (:). For example, <code>stateMachineARN:PROD</code>.</p>
1125
1125
  * <p>If you start an execution from a <code>StartExecution</code> request with a
1126
1126
  * state machine version ARN, this field will be null.</p>
1127
1127
  * @public
1128
1128
  */
1129
- stateMachineAliasArn?: string;
1129
+ stateMachineAliasArn?: string | undefined;
1130
1130
  /**
1131
1131
  * <p>The number of times you've redriven an execution. If you have not yet redriven an execution, the <code>redriveCount</code> is 0. This count is only updated if you successfully redrive an execution.</p>
1132
1132
  * @public
1133
1133
  */
1134
- redriveCount?: number;
1134
+ redriveCount?: number | undefined;
1135
1135
  /**
1136
1136
  * <p>The date the execution was last redriven. If you have not yet redriven an execution, the <code>redriveDate</code> is null.</p>
1137
1137
  * <p>The <code>redriveDate</code> is unavailable if you redrive a Map Run that starts child workflow executions of type <code>EXPRESS</code>.</p>
1138
1138
  * @public
1139
1139
  */
1140
- redriveDate?: Date;
1140
+ redriveDate?: Date | undefined;
1141
1141
  /**
1142
1142
  * <p>Indicates whether or not an execution can be redriven at a given point in time.</p>
1143
1143
  * <ul>
@@ -1154,7 +1154,7 @@ export interface DescribeExecutionOutput {
1154
1154
  * </ul>
1155
1155
  * @public
1156
1156
  */
1157
- redriveStatus?: ExecutionRedriveStatus;
1157
+ redriveStatus?: ExecutionRedriveStatus | undefined;
1158
1158
  /**
1159
1159
  * <p>When <code>redriveStatus</code> is <code>NOT_REDRIVABLE</code>, <code>redriveStatusReason</code> specifies the reason why an execution cannot be redriven.</p>
1160
1160
  * <ul>
@@ -1197,7 +1197,7 @@ export interface DescribeExecutionOutput {
1197
1197
  * </ul>
1198
1198
  * @public
1199
1199
  */
1200
- redriveStatusReason?: string;
1200
+ redriveStatusReason?: string | undefined;
1201
1201
  }
1202
1202
  /**
1203
1203
  * <p>The specified execution does not exist.</p>
@@ -1237,7 +1237,7 @@ export declare class KmsInvalidStateException extends __BaseException {
1237
1237
  * <p>Current status of the KMS; key. For example: <code>DISABLED</code>, <code>PENDING_DELETION</code>, <code>PENDING_IMPORT</code>, <code>UNAVAILABLE</code>, <code>CREATING</code>.</p>
1238
1238
  * @public
1239
1239
  */
1240
- kmsKeyState?: KmsKeyState;
1240
+ kmsKeyState?: KmsKeyState | undefined;
1241
1241
  /**
1242
1242
  * @internal
1243
1243
  */
@@ -1302,12 +1302,12 @@ export interface MapRunExecutionCounts {
1302
1302
  * <p>The number of <code>FAILED</code>, <code>ABORTED</code>, or <code>TIMED_OUT</code> child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status of <code>FAILED</code>, <code>ABORTED</code>, or <code>TIMED_OUT</code> and a <code>redriveStatus</code> of <code>NOT_REDRIVABLE</code>.</p>
1303
1303
  * @public
1304
1304
  */
1305
- failuresNotRedrivable?: number;
1305
+ failuresNotRedrivable?: number | undefined;
1306
1306
  /**
1307
1307
  * <p>The number of unsuccessful child workflow executions currently waiting to be redriven. The status of these child workflow executions could be <code>FAILED</code>, <code>ABORTED</code>, or <code>TIMED_OUT</code> in the original execution attempt or a previous redrive attempt.</p>
1308
1308
  * @public
1309
1309
  */
1310
- pendingRedrive?: number;
1310
+ pendingRedrive?: number | undefined;
1311
1311
  }
1312
1312
  /**
1313
1313
  * <p>Contains details about items that were processed in all of the child workflow executions that were started by a Map Run.</p>
@@ -1358,12 +1358,12 @@ export interface MapRunItemCounts {
1358
1358
  * <p>The number of <code>FAILED</code>, <code>ABORTED</code>, or <code>TIMED_OUT</code> items in child workflow executions that cannot be redriven because the execution status of those child workflows is terminal. For example, child workflows with an execution status of <code>FAILED</code>, <code>ABORTED</code>, or <code>TIMED_OUT</code> and a <code>redriveStatus</code> of <code>NOT_REDRIVABLE</code>.</p>
1359
1359
  * @public
1360
1360
  */
1361
- failuresNotRedrivable?: number;
1361
+ failuresNotRedrivable?: number | undefined;
1362
1362
  /**
1363
1363
  * <p>The number of unsuccessful items in child workflow executions currently waiting to be redriven.</p>
1364
1364
  * @public
1365
1365
  */
1366
- pendingRedrive?: number;
1366
+ pendingRedrive?: number | undefined;
1367
1367
  }
1368
1368
  /**
1369
1369
  * @public
@@ -1407,7 +1407,7 @@ export interface DescribeMapRunOutput {
1407
1407
  * <p>The date when the Map Run was stopped.</p>
1408
1408
  * @public
1409
1409
  */
1410
- stopDate?: Date;
1410
+ stopDate?: Date | undefined;
1411
1411
  /**
1412
1412
  * <p>The maximum number of child workflow executions configured to run in parallel for the Map Run at the same time.</p>
1413
1413
  * @public
@@ -1437,12 +1437,12 @@ export interface DescribeMapRunOutput {
1437
1437
  * <p>The number of times you've redriven a Map Run. If you have not yet redriven a Map Run, the <code>redriveCount</code> is 0. This count is only updated if you successfully redrive a Map Run.</p>
1438
1438
  * @public
1439
1439
  */
1440
- redriveCount?: number;
1440
+ redriveCount?: number | undefined;
1441
1441
  /**
1442
1442
  * <p>The date a Map Run was last redriven. If you have not yet redriven a Map Run, the <code>redriveDate</code> is null.</p>
1443
1443
  * @public
1444
1444
  */
1445
- redriveDate?: Date;
1445
+ redriveDate?: Date | undefined;
1446
1446
  }
1447
1447
  /**
1448
1448
  * @public
@@ -1463,7 +1463,7 @@ export interface DescribeStateMachineInput {
1463
1463
  * </note>
1464
1464
  * @public
1465
1465
  */
1466
- includedData?: IncludedData;
1466
+ includedData?: IncludedData | undefined;
1467
1467
  }
1468
1468
  /**
1469
1469
  * @public
@@ -1518,7 +1518,7 @@ export interface DescribeStateMachineOutput {
1518
1518
  * <p>The current status of the state machine.</p>
1519
1519
  * @public
1520
1520
  */
1521
- status?: StateMachineStatus;
1521
+ status?: StateMachineStatus | undefined;
1522
1522
  /**
1523
1523
  * <p>The Amazon States Language definition of the state machine. See <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-amazon-states-language.html">Amazon States Language</a>.</p>
1524
1524
  * <p>If called with <code>includedData = METADATA_ONLY</code>, the returned definition will be <code>\{\}</code>.</p>
@@ -1548,17 +1548,17 @@ export interface DescribeStateMachineOutput {
1548
1548
  * options.</p>
1549
1549
  * @public
1550
1550
  */
1551
- loggingConfiguration?: LoggingConfiguration;
1551
+ loggingConfiguration?: LoggingConfiguration | undefined;
1552
1552
  /**
1553
1553
  * <p>Selects whether X-Ray tracing is enabled.</p>
1554
1554
  * @public
1555
1555
  */
1556
- tracingConfiguration?: TracingConfiguration;
1556
+ tracingConfiguration?: TracingConfiguration | undefined;
1557
1557
  /**
1558
1558
  * <p>A user-defined or an auto-generated string that identifies a <code>Map</code> state. This parameter is present only if the <code>stateMachineArn</code> specified in input is a qualified state machine ARN.</p>
1559
1559
  * @public
1560
1560
  */
1561
- label?: string;
1561
+ label?: string | undefined;
1562
1562
  /**
1563
1563
  * <p>The revision identifier for the state machine.</p>
1564
1564
  * <p>Use the <code>revisionId</code> parameter to compare between versions of a state machine
@@ -1566,17 +1566,17 @@ export interface DescribeStateMachineOutput {
1566
1566
  * <code>definition</code> and <code>roleArn</code>.</p>
1567
1567
  * @public
1568
1568
  */
1569
- revisionId?: string;
1569
+ revisionId?: string | undefined;
1570
1570
  /**
1571
1571
  * <p>The description of the state machine version.</p>
1572
1572
  * @public
1573
1573
  */
1574
- description?: string;
1574
+ description?: string | undefined;
1575
1575
  /**
1576
1576
  * <p>Settings to configure server-side encryption. </p>
1577
1577
  * @public
1578
1578
  */
1579
- encryptionConfiguration?: EncryptionConfiguration;
1579
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
1580
1580
  }
1581
1581
  /**
1582
1582
  * <p>The specified state machine does not exist.</p>
@@ -1608,33 +1608,33 @@ export interface DescribeStateMachineAliasOutput {
1608
1608
  * <p>The Amazon Resource Name (ARN) of the state machine alias.</p>
1609
1609
  * @public
1610
1610
  */
1611
- stateMachineAliasArn?: string;
1611
+ stateMachineAliasArn?: string | undefined;
1612
1612
  /**
1613
1613
  * <p>The name of the state machine alias.</p>
1614
1614
  * @public
1615
1615
  */
1616
- name?: string;
1616
+ name?: string | undefined;
1617
1617
  /**
1618
1618
  * <p>A description of the alias.</p>
1619
1619
  * @public
1620
1620
  */
1621
- description?: string;
1621
+ description?: string | undefined;
1622
1622
  /**
1623
1623
  * <p>The routing configuration of the alias.</p>
1624
1624
  * @public
1625
1625
  */
1626
- routingConfiguration?: RoutingConfigurationListItem[];
1626
+ routingConfiguration?: RoutingConfigurationListItem[] | undefined;
1627
1627
  /**
1628
1628
  * <p>The date the state machine alias was created.</p>
1629
1629
  * @public
1630
1630
  */
1631
- creationDate?: Date;
1631
+ creationDate?: Date | undefined;
1632
1632
  /**
1633
1633
  * <p>The date the state machine alias was last updated.</p>
1634
1634
  * <p>For a newly created state machine, this is the same as the creation date.</p>
1635
1635
  * @public
1636
1636
  */
1637
- updateDate?: Date;
1637
+ updateDate?: Date | undefined;
1638
1638
  }
1639
1639
  /**
1640
1640
  * @public
@@ -1649,7 +1649,7 @@ export interface DescribeStateMachineForExecutionInput {
1649
1649
  * <p>If your state machine definition is encrypted with a KMS key, callers must have <code>kms:Decrypt</code> permission to decrypt the definition. Alternatively, you can call the API with <code>includedData = METADATA_ONLY</code> to get a successful response without the encrypted definition.</p>
1650
1650
  * @public
1651
1651
  */
1652
- includedData?: IncludedData;
1652
+ includedData?: IncludedData | undefined;
1653
1653
  }
1654
1654
  /**
1655
1655
  * @public
@@ -1686,33 +1686,33 @@ export interface DescribeStateMachineForExecutionOutput {
1686
1686
  * options.</p>
1687
1687
  * @public
1688
1688
  */
1689
- loggingConfiguration?: LoggingConfiguration;
1689
+ loggingConfiguration?: LoggingConfiguration | undefined;
1690
1690
  /**
1691
1691
  * <p>Selects whether X-Ray tracing is enabled.</p>
1692
1692
  * @public
1693
1693
  */
1694
- tracingConfiguration?: TracingConfiguration;
1694
+ tracingConfiguration?: TracingConfiguration | undefined;
1695
1695
  /**
1696
1696
  * <p>The Amazon Resource Name (ARN) of the Map Run that started the child workflow execution. This field is returned only if the <code>executionArn</code> is a child workflow execution that was started by a Distributed Map state.</p>
1697
1697
  * @public
1698
1698
  */
1699
- mapRunArn?: string;
1699
+ mapRunArn?: string | undefined;
1700
1700
  /**
1701
1701
  * <p>A user-defined or an auto-generated string that identifies a <code>Map</code> state. This field is returned only if the <code>executionArn</code> is a child workflow execution that was started by a Distributed Map state.</p>
1702
1702
  * @public
1703
1703
  */
1704
- label?: string;
1704
+ label?: string | undefined;
1705
1705
  /**
1706
1706
  * <p>The revision identifier for the state machine. The first revision ID when you create the state machine is null.</p>
1707
1707
  * <p>Use the state machine <code>revisionId</code> parameter to compare the revision of a state machine with the configuration of the state machine used for executions without performing a diff of the properties, such as <code>definition</code> and <code>roleArn</code>.</p>
1708
1708
  * @public
1709
1709
  */
1710
- revisionId?: string;
1710
+ revisionId?: string | undefined;
1711
1711
  /**
1712
1712
  * <p>Settings to configure server-side encryption. </p>
1713
1713
  * @public
1714
1714
  */
1715
- encryptionConfiguration?: EncryptionConfiguration;
1715
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
1716
1716
  }
1717
1717
  /**
1718
1718
  * @public
@@ -1729,7 +1729,7 @@ export interface GetActivityTaskInput {
1729
1729
  * assigned to. This name is used when it is logged in the execution history.</p>
1730
1730
  * @public
1731
1731
  */
1732
- workerName?: string;
1732
+ workerName?: string | undefined;
1733
1733
  }
1734
1734
  /**
1735
1735
  * @public
@@ -1742,12 +1742,12 @@ export interface GetActivityTaskOutput {
1742
1742
  * task.</p>
1743
1743
  * @public
1744
1744
  */
1745
- taskToken?: string;
1745
+ taskToken?: string | undefined;
1746
1746
  /**
1747
1747
  * <p>The string that contains the JSON input data for the task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
1748
1748
  * @public
1749
1749
  */
1750
- input?: string;
1750
+ input?: string | undefined;
1751
1751
  }
1752
1752
  /**
1753
1753
  * @public
@@ -1764,24 +1764,24 @@ export interface GetExecutionHistoryInput {
1764
1764
  * <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
1765
1765
  * @public
1766
1766
  */
1767
- maxResults?: number;
1767
+ maxResults?: number | undefined;
1768
1768
  /**
1769
1769
  * <p>Lists events in descending order of their <code>timeStamp</code>.</p>
1770
1770
  * @public
1771
1771
  */
1772
- reverseOrder?: boolean;
1772
+ reverseOrder?: boolean | undefined;
1773
1773
  /**
1774
1774
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page.
1775
1775
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
1776
1776
  * @public
1777
1777
  */
1778
- nextToken?: string;
1778
+ nextToken?: string | undefined;
1779
1779
  /**
1780
1780
  * <p>You can select whether execution data (input or output of a history event) is returned.
1781
1781
  * The default is <code>true</code>.</p>
1782
1782
  * @public
1783
1783
  */
1784
- includeExecutionData?: boolean;
1784
+ includeExecutionData?: boolean | undefined;
1785
1785
  }
1786
1786
  /**
1787
1787
  * <p>Contains details about an abort of an execution.</p>
@@ -1792,12 +1792,12 @@ export interface ExecutionAbortedEventDetails {
1792
1792
  * <p>The error code of the failure.</p>
1793
1793
  * @public
1794
1794
  */
1795
- error?: string;
1795
+ error?: string | undefined;
1796
1796
  /**
1797
1797
  * <p>A more detailed explanation of the cause of the failure.</p>
1798
1798
  * @public
1799
1799
  */
1800
- cause?: string;
1800
+ cause?: string | undefined;
1801
1801
  }
1802
1802
  /**
1803
1803
  * <p>Contains details about an execution failure event.</p>
@@ -1808,12 +1808,12 @@ export interface ExecutionFailedEventDetails {
1808
1808
  * <p>The error code of the failure.</p>
1809
1809
  * @public
1810
1810
  */
1811
- error?: string;
1811
+ error?: string | undefined;
1812
1812
  /**
1813
1813
  * <p>A more detailed explanation of the cause of the failure.</p>
1814
1814
  * @public
1815
1815
  */
1816
- cause?: string;
1816
+ cause?: string | undefined;
1817
1817
  }
1818
1818
  /**
1819
1819
  * <p>Contains details about a redriven execution.</p>
@@ -1824,7 +1824,7 @@ export interface ExecutionRedrivenEventDetails {
1824
1824
  * <p>The number of times you've redriven an execution. If you have not yet redriven an execution, the <code>redriveCount</code> is 0. This count is not updated for redrives that failed to start or are pending to be redriven.</p>
1825
1825
  * @public
1826
1826
  */
1827
- redriveCount?: number;
1827
+ redriveCount?: number | undefined;
1828
1828
  }
1829
1829
  /**
1830
1830
  * <p>Contains details about the start of the execution.</p>
@@ -1835,27 +1835,27 @@ export interface ExecutionStartedEventDetails {
1835
1835
  * <p>The JSON data input to the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
1836
1836
  * @public
1837
1837
  */
1838
- input?: string;
1838
+ input?: string | undefined;
1839
1839
  /**
1840
1840
  * <p>Contains details about the input for an execution history event.</p>
1841
1841
  * @public
1842
1842
  */
1843
- inputDetails?: HistoryEventExecutionDataDetails;
1843
+ inputDetails?: HistoryEventExecutionDataDetails | undefined;
1844
1844
  /**
1845
1845
  * <p>The Amazon Resource Name (ARN) of the IAM role used for executing Lambda tasks.</p>
1846
1846
  * @public
1847
1847
  */
1848
- roleArn?: string;
1848
+ roleArn?: string | undefined;
1849
1849
  /**
1850
1850
  * <p>The Amazon Resource Name (ARN) that identifies a state machine alias used for starting the state machine execution.</p>
1851
1851
  * @public
1852
1852
  */
1853
- stateMachineAliasArn?: string;
1853
+ stateMachineAliasArn?: string | undefined;
1854
1854
  /**
1855
1855
  * <p>The Amazon Resource Name (ARN) that identifies a state machine version used for starting the state machine execution.</p>
1856
1856
  * @public
1857
1857
  */
1858
- stateMachineVersionArn?: string;
1858
+ stateMachineVersionArn?: string | undefined;
1859
1859
  }
1860
1860
  /**
1861
1861
  * <p>Contains details about the successful termination of the execution.</p>
@@ -1866,12 +1866,12 @@ export interface ExecutionSucceededEventDetails {
1866
1866
  * <p>The JSON data output by the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
1867
1867
  * @public
1868
1868
  */
1869
- output?: string;
1869
+ output?: string | undefined;
1870
1870
  /**
1871
1871
  * <p>Contains details about the output of an execution history event.</p>
1872
1872
  * @public
1873
1873
  */
1874
- outputDetails?: HistoryEventExecutionDataDetails;
1874
+ outputDetails?: HistoryEventExecutionDataDetails | undefined;
1875
1875
  }
1876
1876
  /**
1877
1877
  * <p>Contains details about the execution timeout that occurred during the execution.</p>
@@ -1882,12 +1882,12 @@ export interface ExecutionTimedOutEventDetails {
1882
1882
  * <p>The error code of the failure.</p>
1883
1883
  * @public
1884
1884
  */
1885
- error?: string;
1885
+ error?: string | undefined;
1886
1886
  /**
1887
1887
  * <p>A more detailed explanation of the cause of the timeout.</p>
1888
1888
  * @public
1889
1889
  */
1890
- cause?: string;
1890
+ cause?: string | undefined;
1891
1891
  }
1892
1892
  /**
1893
1893
  * <p>Contains details about a Lambda function that failed during an execution.</p>
@@ -1898,12 +1898,12 @@ export interface LambdaFunctionFailedEventDetails {
1898
1898
  * <p>The error code of the failure.</p>
1899
1899
  * @public
1900
1900
  */
1901
- error?: string;
1901
+ error?: string | undefined;
1902
1902
  /**
1903
1903
  * <p>A more detailed explanation of the cause of the failure.</p>
1904
1904
  * @public
1905
1905
  */
1906
- cause?: string;
1906
+ cause?: string | undefined;
1907
1907
  }
1908
1908
  /**
1909
1909
  * <p>Contains details about the credentials that Step Functions uses for a task.</p>
@@ -1914,7 +1914,7 @@ export interface TaskCredentials {
1914
1914
  * <p>The ARN of an IAM role that Step Functions assumes for the task. The role can allow cross-account access to resources.</p>
1915
1915
  * @public
1916
1916
  */
1917
- roleArn?: string;
1917
+ roleArn?: string | undefined;
1918
1918
  }
1919
1919
  /**
1920
1920
  * <p>Contains details about a Lambda function scheduled during an execution.</p>
@@ -1930,22 +1930,22 @@ export interface LambdaFunctionScheduledEventDetails {
1930
1930
  * <p>The JSON data input to the Lambda function. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
1931
1931
  * @public
1932
1932
  */
1933
- input?: string;
1933
+ input?: string | undefined;
1934
1934
  /**
1935
1935
  * <p>Contains details about input for an execution history event.</p>
1936
1936
  * @public
1937
1937
  */
1938
- inputDetails?: HistoryEventExecutionDataDetails;
1938
+ inputDetails?: HistoryEventExecutionDataDetails | undefined;
1939
1939
  /**
1940
1940
  * <p>The maximum allowed duration of the Lambda function.</p>
1941
1941
  * @public
1942
1942
  */
1943
- timeoutInSeconds?: number;
1943
+ timeoutInSeconds?: number | undefined;
1944
1944
  /**
1945
1945
  * <p>The credentials that Step Functions uses for the task.</p>
1946
1946
  * @public
1947
1947
  */
1948
- taskCredentials?: TaskCredentials;
1948
+ taskCredentials?: TaskCredentials | undefined;
1949
1949
  }
1950
1950
  /**
1951
1951
  * <p>Contains details about a failed Lambda function schedule event that occurred during an
@@ -1957,12 +1957,12 @@ export interface LambdaFunctionScheduleFailedEventDetails {
1957
1957
  * <p>The error code of the failure.</p>
1958
1958
  * @public
1959
1959
  */
1960
- error?: string;
1960
+ error?: string | undefined;
1961
1961
  /**
1962
1962
  * <p>A more detailed explanation of the cause of the failure.</p>
1963
1963
  * @public
1964
1964
  */
1965
- cause?: string;
1965
+ cause?: string | undefined;
1966
1966
  }
1967
1967
  /**
1968
1968
  * <p>Contains details about a lambda function that failed to start during an execution.</p>
@@ -1973,12 +1973,12 @@ export interface LambdaFunctionStartFailedEventDetails {
1973
1973
  * <p>The error code of the failure.</p>
1974
1974
  * @public
1975
1975
  */
1976
- error?: string;
1976
+ error?: string | undefined;
1977
1977
  /**
1978
1978
  * <p>A more detailed explanation of the cause of the failure.</p>
1979
1979
  * @public
1980
1980
  */
1981
- cause?: string;
1981
+ cause?: string | undefined;
1982
1982
  }
1983
1983
  /**
1984
1984
  * <p>Contains details about a Lambda function that successfully terminated during an
@@ -1990,12 +1990,12 @@ export interface LambdaFunctionSucceededEventDetails {
1990
1990
  * <p>The JSON data output by the Lambda function. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
1991
1991
  * @public
1992
1992
  */
1993
- output?: string;
1993
+ output?: string | undefined;
1994
1994
  /**
1995
1995
  * <p>Contains details about the output of an execution history event.</p>
1996
1996
  * @public
1997
1997
  */
1998
- outputDetails?: HistoryEventExecutionDataDetails;
1998
+ outputDetails?: HistoryEventExecutionDataDetails | undefined;
1999
1999
  }
2000
2000
  /**
2001
2001
  * <p>Contains details about a Lambda function timeout that occurred during an execution.</p>
@@ -2006,12 +2006,12 @@ export interface LambdaFunctionTimedOutEventDetails {
2006
2006
  * <p>The error code of the failure.</p>
2007
2007
  * @public
2008
2008
  */
2009
- error?: string;
2009
+ error?: string | undefined;
2010
2010
  /**
2011
2011
  * <p>A more detailed explanation of the cause of the timeout.</p>
2012
2012
  * @public
2013
2013
  */
2014
- cause?: string;
2014
+ cause?: string | undefined;
2015
2015
  }
2016
2016
  /**
2017
2017
  * <p>Contains details about an iteration of a Map state.</p>
@@ -2022,12 +2022,12 @@ export interface MapIterationEventDetails {
2022
2022
  * <p>The name of the iteration’s parent Map state.</p>
2023
2023
  * @public
2024
2024
  */
2025
- name?: string;
2025
+ name?: string | undefined;
2026
2026
  /**
2027
2027
  * <p>The index of the array belonging to the Map state iteration.</p>
2028
2028
  * @public
2029
2029
  */
2030
- index?: number;
2030
+ index?: number | undefined;
2031
2031
  }
2032
2032
  /**
2033
2033
  * <p>Contains details about a Map Run failure event that occurred during a state machine execution.</p>
@@ -2038,12 +2038,12 @@ export interface MapRunFailedEventDetails {
2038
2038
  * <p>The error code of the Map Run failure.</p>
2039
2039
  * @public
2040
2040
  */
2041
- error?: string;
2041
+ error?: string | undefined;
2042
2042
  /**
2043
2043
  * <p>A more detailed explanation of the cause of the failure.</p>
2044
2044
  * @public
2045
2045
  */
2046
- cause?: string;
2046
+ cause?: string | undefined;
2047
2047
  }
2048
2048
  /**
2049
2049
  * <p>Contains details about a Map Run that was redriven.</p>
@@ -2054,12 +2054,12 @@ export interface MapRunRedrivenEventDetails {
2054
2054
  * <p>The Amazon Resource Name (ARN) of a Map Run that was redriven.</p>
2055
2055
  * @public
2056
2056
  */
2057
- mapRunArn?: string;
2057
+ mapRunArn?: string | undefined;
2058
2058
  /**
2059
2059
  * <p>The number of times the Map Run has been redriven at this point in the execution's history including this event. The redrive count for a redriven Map Run is always greater than 0.</p>
2060
2060
  * @public
2061
2061
  */
2062
- redriveCount?: number;
2062
+ redriveCount?: number | undefined;
2063
2063
  }
2064
2064
  /**
2065
2065
  * <p>Contains details about a Map Run that was started during a state machine execution.</p>
@@ -2070,7 +2070,7 @@ export interface MapRunStartedEventDetails {
2070
2070
  * <p>The Amazon Resource Name (ARN) of a Map Run that was started.</p>
2071
2071
  * @public
2072
2072
  */
2073
- mapRunArn?: string;
2073
+ mapRunArn?: string | undefined;
2074
2074
  }
2075
2075
  /**
2076
2076
  * <p>Details about a Map state that was started.</p>
@@ -2081,7 +2081,7 @@ export interface MapStateStartedEventDetails {
2081
2081
  * <p>The size of the array for Map state iterations.</p>
2082
2082
  * @public
2083
2083
  */
2084
- length?: number;
2084
+ length?: number | undefined;
2085
2085
  }
2086
2086
  /**
2087
2087
  * <p>Contains details about a state entered during an execution.</p>
@@ -2097,12 +2097,12 @@ export interface StateEnteredEventDetails {
2097
2097
  * <p>The string that contains the JSON input data for the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
2098
2098
  * @public
2099
2099
  */
2100
- input?: string;
2100
+ input?: string | undefined;
2101
2101
  /**
2102
2102
  * <p>Contains details about the input for an execution history event.</p>
2103
2103
  * @public
2104
2104
  */
2105
- inputDetails?: HistoryEventExecutionDataDetails;
2105
+ inputDetails?: HistoryEventExecutionDataDetails | undefined;
2106
2106
  }
2107
2107
  /**
2108
2108
  * <p>Contains details about an exit from a state during an execution.</p>
@@ -2140,12 +2140,12 @@ export interface StateExitedEventDetails {
2140
2140
  * <p>The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
2141
2141
  * @public
2142
2142
  */
2143
- output?: string;
2143
+ output?: string | undefined;
2144
2144
  /**
2145
2145
  * <p>Contains details about the output of an execution history event.</p>
2146
2146
  * @public
2147
2147
  */
2148
- outputDetails?: HistoryEventExecutionDataDetails;
2148
+ outputDetails?: HistoryEventExecutionDataDetails | undefined;
2149
2149
  }
2150
2150
  /**
2151
2151
  * <p>Contains details about a task failure event.</p>
@@ -2166,12 +2166,12 @@ export interface TaskFailedEventDetails {
2166
2166
  * <p>The error code of the failure.</p>
2167
2167
  * @public
2168
2168
  */
2169
- error?: string;
2169
+ error?: string | undefined;
2170
2170
  /**
2171
2171
  * <p>A more detailed explanation of the cause of the failure.</p>
2172
2172
  * @public
2173
2173
  */
2174
- cause?: string;
2174
+ cause?: string | undefined;
2175
2175
  }
2176
2176
  /**
2177
2177
  * <p>Contains details about a task scheduled during an execution.</p>
@@ -2203,17 +2203,17 @@ export interface TaskScheduledEventDetails {
2203
2203
  * <p>The maximum allowed duration of the task.</p>
2204
2204
  * @public
2205
2205
  */
2206
- timeoutInSeconds?: number;
2206
+ timeoutInSeconds?: number | undefined;
2207
2207
  /**
2208
2208
  * <p>The maximum allowed duration between two heartbeats for the task.</p>
2209
2209
  * @public
2210
2210
  */
2211
- heartbeatInSeconds?: number;
2211
+ heartbeatInSeconds?: number | undefined;
2212
2212
  /**
2213
2213
  * <p>The credentials that Step Functions uses for the task.</p>
2214
2214
  * @public
2215
2215
  */
2216
- taskCredentials?: TaskCredentials;
2216
+ taskCredentials?: TaskCredentials | undefined;
2217
2217
  }
2218
2218
  /**
2219
2219
  * <p>Contains details about the start of a task during an execution.</p>
@@ -2250,12 +2250,12 @@ export interface TaskStartFailedEventDetails {
2250
2250
  * <p>The error code of the failure.</p>
2251
2251
  * @public
2252
2252
  */
2253
- error?: string;
2253
+ error?: string | undefined;
2254
2254
  /**
2255
2255
  * <p>A more detailed explanation of the cause of the failure.</p>
2256
2256
  * @public
2257
2257
  */
2258
- cause?: string;
2258
+ cause?: string | undefined;
2259
2259
  }
2260
2260
  /**
2261
2261
  * <p>Contains details about a task that failed to submit during an execution.</p>
@@ -2276,12 +2276,12 @@ export interface TaskSubmitFailedEventDetails {
2276
2276
  * <p>The error code of the failure.</p>
2277
2277
  * @public
2278
2278
  */
2279
- error?: string;
2279
+ error?: string | undefined;
2280
2280
  /**
2281
2281
  * <p>A more detailed explanation of the cause of the failure.</p>
2282
2282
  * @public
2283
2283
  */
2284
- cause?: string;
2284
+ cause?: string | undefined;
2285
2285
  }
2286
2286
  /**
2287
2287
  * <p>Contains details about a task submitted to a resource .</p>
@@ -2302,12 +2302,12 @@ export interface TaskSubmittedEventDetails {
2302
2302
  * <p>The response from a resource when a task has started. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
2303
2303
  * @public
2304
2304
  */
2305
- output?: string;
2305
+ output?: string | undefined;
2306
2306
  /**
2307
2307
  * <p>Contains details about the output of an execution history event.</p>
2308
2308
  * @public
2309
2309
  */
2310
- outputDetails?: HistoryEventExecutionDataDetails;
2310
+ outputDetails?: HistoryEventExecutionDataDetails | undefined;
2311
2311
  }
2312
2312
  /**
2313
2313
  * <p>Contains details about the successful completion of a task state.</p>
@@ -2329,12 +2329,12 @@ export interface TaskSucceededEventDetails {
2329
2329
  * the output of the related task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
2330
2330
  * @public
2331
2331
  */
2332
- output?: string;
2332
+ output?: string | undefined;
2333
2333
  /**
2334
2334
  * <p>Contains details about the output of an execution history event.</p>
2335
2335
  * @public
2336
2336
  */
2337
- outputDetails?: HistoryEventExecutionDataDetails;
2337
+ outputDetails?: HistoryEventExecutionDataDetails | undefined;
2338
2338
  }
2339
2339
  /**
2340
2340
  * <p>Contains details about a resource timeout that occurred during an execution.</p>
@@ -2355,12 +2355,12 @@ export interface TaskTimedOutEventDetails {
2355
2355
  * <p>The error code of the failure.</p>
2356
2356
  * @public
2357
2357
  */
2358
- error?: string;
2358
+ error?: string | undefined;
2359
2359
  /**
2360
2360
  * <p>A more detailed explanation of the cause of the failure.</p>
2361
2361
  * @public
2362
2362
  */
2363
- cause?: string;
2363
+ cause?: string | undefined;
2364
2364
  }
2365
2365
  /**
2366
2366
  * @public
@@ -2457,190 +2457,190 @@ export interface HistoryEvent {
2457
2457
  * <p>The id of the previous event.</p>
2458
2458
  * @public
2459
2459
  */
2460
- previousEventId?: number;
2460
+ previousEventId?: number | undefined;
2461
2461
  /**
2462
2462
  * <p>Contains details about an activity that failed during an execution.</p>
2463
2463
  * @public
2464
2464
  */
2465
- activityFailedEventDetails?: ActivityFailedEventDetails;
2465
+ activityFailedEventDetails?: ActivityFailedEventDetails | undefined;
2466
2466
  /**
2467
2467
  * <p>Contains details about an activity schedule event that failed during an execution.</p>
2468
2468
  * @public
2469
2469
  */
2470
- activityScheduleFailedEventDetails?: ActivityScheduleFailedEventDetails;
2470
+ activityScheduleFailedEventDetails?: ActivityScheduleFailedEventDetails | undefined;
2471
2471
  /**
2472
2472
  * <p>Contains details about an activity scheduled during an execution.</p>
2473
2473
  * @public
2474
2474
  */
2475
- activityScheduledEventDetails?: ActivityScheduledEventDetails;
2475
+ activityScheduledEventDetails?: ActivityScheduledEventDetails | undefined;
2476
2476
  /**
2477
2477
  * <p>Contains details about the start of an activity during an execution.</p>
2478
2478
  * @public
2479
2479
  */
2480
- activityStartedEventDetails?: ActivityStartedEventDetails;
2480
+ activityStartedEventDetails?: ActivityStartedEventDetails | undefined;
2481
2481
  /**
2482
2482
  * <p>Contains details about an activity that successfully terminated during an
2483
2483
  * execution.</p>
2484
2484
  * @public
2485
2485
  */
2486
- activitySucceededEventDetails?: ActivitySucceededEventDetails;
2486
+ activitySucceededEventDetails?: ActivitySucceededEventDetails | undefined;
2487
2487
  /**
2488
2488
  * <p>Contains details about an activity timeout that occurred during an execution.</p>
2489
2489
  * @public
2490
2490
  */
2491
- activityTimedOutEventDetails?: ActivityTimedOutEventDetails;
2491
+ activityTimedOutEventDetails?: ActivityTimedOutEventDetails | undefined;
2492
2492
  /**
2493
2493
  * <p>Contains details about the failure of a task.</p>
2494
2494
  * @public
2495
2495
  */
2496
- taskFailedEventDetails?: TaskFailedEventDetails;
2496
+ taskFailedEventDetails?: TaskFailedEventDetails | undefined;
2497
2497
  /**
2498
2498
  * <p>Contains details about a task that was scheduled.</p>
2499
2499
  * @public
2500
2500
  */
2501
- taskScheduledEventDetails?: TaskScheduledEventDetails;
2501
+ taskScheduledEventDetails?: TaskScheduledEventDetails | undefined;
2502
2502
  /**
2503
2503
  * <p>Contains details about a task that failed to start.</p>
2504
2504
  * @public
2505
2505
  */
2506
- taskStartFailedEventDetails?: TaskStartFailedEventDetails;
2506
+ taskStartFailedEventDetails?: TaskStartFailedEventDetails | undefined;
2507
2507
  /**
2508
2508
  * <p>Contains details about a task that was started.</p>
2509
2509
  * @public
2510
2510
  */
2511
- taskStartedEventDetails?: TaskStartedEventDetails;
2511
+ taskStartedEventDetails?: TaskStartedEventDetails | undefined;
2512
2512
  /**
2513
2513
  * <p>Contains details about a task that where the submit failed.</p>
2514
2514
  * @public
2515
2515
  */
2516
- taskSubmitFailedEventDetails?: TaskSubmitFailedEventDetails;
2516
+ taskSubmitFailedEventDetails?: TaskSubmitFailedEventDetails | undefined;
2517
2517
  /**
2518
2518
  * <p>Contains details about a submitted task.</p>
2519
2519
  * @public
2520
2520
  */
2521
- taskSubmittedEventDetails?: TaskSubmittedEventDetails;
2521
+ taskSubmittedEventDetails?: TaskSubmittedEventDetails | undefined;
2522
2522
  /**
2523
2523
  * <p>Contains details about a task that succeeded.</p>
2524
2524
  * @public
2525
2525
  */
2526
- taskSucceededEventDetails?: TaskSucceededEventDetails;
2526
+ taskSucceededEventDetails?: TaskSucceededEventDetails | undefined;
2527
2527
  /**
2528
2528
  * <p>Contains details about a task that timed out.</p>
2529
2529
  * @public
2530
2530
  */
2531
- taskTimedOutEventDetails?: TaskTimedOutEventDetails;
2531
+ taskTimedOutEventDetails?: TaskTimedOutEventDetails | undefined;
2532
2532
  /**
2533
2533
  * <p>Contains details about an execution failure event.</p>
2534
2534
  * @public
2535
2535
  */
2536
- executionFailedEventDetails?: ExecutionFailedEventDetails;
2536
+ executionFailedEventDetails?: ExecutionFailedEventDetails | undefined;
2537
2537
  /**
2538
2538
  * <p>Contains details about the start of the execution.</p>
2539
2539
  * @public
2540
2540
  */
2541
- executionStartedEventDetails?: ExecutionStartedEventDetails;
2541
+ executionStartedEventDetails?: ExecutionStartedEventDetails | undefined;
2542
2542
  /**
2543
2543
  * <p>Contains details about the successful termination of the execution.</p>
2544
2544
  * @public
2545
2545
  */
2546
- executionSucceededEventDetails?: ExecutionSucceededEventDetails;
2546
+ executionSucceededEventDetails?: ExecutionSucceededEventDetails | undefined;
2547
2547
  /**
2548
2548
  * <p>Contains details about an abort of an execution.</p>
2549
2549
  * @public
2550
2550
  */
2551
- executionAbortedEventDetails?: ExecutionAbortedEventDetails;
2551
+ executionAbortedEventDetails?: ExecutionAbortedEventDetails | undefined;
2552
2552
  /**
2553
2553
  * <p>Contains details about the execution timeout that occurred during the execution.</p>
2554
2554
  * @public
2555
2555
  */
2556
- executionTimedOutEventDetails?: ExecutionTimedOutEventDetails;
2556
+ executionTimedOutEventDetails?: ExecutionTimedOutEventDetails | undefined;
2557
2557
  /**
2558
2558
  * <p>Contains details about the redrive attempt of an execution.</p>
2559
2559
  * @public
2560
2560
  */
2561
- executionRedrivenEventDetails?: ExecutionRedrivenEventDetails;
2561
+ executionRedrivenEventDetails?: ExecutionRedrivenEventDetails | undefined;
2562
2562
  /**
2563
2563
  * <p>Contains details about Map state that was started.</p>
2564
2564
  * @public
2565
2565
  */
2566
- mapStateStartedEventDetails?: MapStateStartedEventDetails;
2566
+ mapStateStartedEventDetails?: MapStateStartedEventDetails | undefined;
2567
2567
  /**
2568
2568
  * <p>Contains details about an iteration of a Map state that was started.</p>
2569
2569
  * @public
2570
2570
  */
2571
- mapIterationStartedEventDetails?: MapIterationEventDetails;
2571
+ mapIterationStartedEventDetails?: MapIterationEventDetails | undefined;
2572
2572
  /**
2573
2573
  * <p>Contains details about an iteration of a Map state that succeeded.</p>
2574
2574
  * @public
2575
2575
  */
2576
- mapIterationSucceededEventDetails?: MapIterationEventDetails;
2576
+ mapIterationSucceededEventDetails?: MapIterationEventDetails | undefined;
2577
2577
  /**
2578
2578
  * <p>Contains details about an iteration of a Map state that failed.</p>
2579
2579
  * @public
2580
2580
  */
2581
- mapIterationFailedEventDetails?: MapIterationEventDetails;
2581
+ mapIterationFailedEventDetails?: MapIterationEventDetails | undefined;
2582
2582
  /**
2583
2583
  * <p>Contains details about an iteration of a Map state that was aborted.</p>
2584
2584
  * @public
2585
2585
  */
2586
- mapIterationAbortedEventDetails?: MapIterationEventDetails;
2586
+ mapIterationAbortedEventDetails?: MapIterationEventDetails | undefined;
2587
2587
  /**
2588
2588
  * <p>Contains details about a Lambda function that failed during an execution.</p>
2589
2589
  * @public
2590
2590
  */
2591
- lambdaFunctionFailedEventDetails?: LambdaFunctionFailedEventDetails;
2591
+ lambdaFunctionFailedEventDetails?: LambdaFunctionFailedEventDetails | undefined;
2592
2592
  /**
2593
2593
  * <p>Contains details about a failed Lambda function schedule event that occurred during an
2594
2594
  * execution.</p>
2595
2595
  * @public
2596
2596
  */
2597
- lambdaFunctionScheduleFailedEventDetails?: LambdaFunctionScheduleFailedEventDetails;
2597
+ lambdaFunctionScheduleFailedEventDetails?: LambdaFunctionScheduleFailedEventDetails | undefined;
2598
2598
  /**
2599
2599
  * <p>Contains details about a Lambda function scheduled during an execution.</p>
2600
2600
  * @public
2601
2601
  */
2602
- lambdaFunctionScheduledEventDetails?: LambdaFunctionScheduledEventDetails;
2602
+ lambdaFunctionScheduledEventDetails?: LambdaFunctionScheduledEventDetails | undefined;
2603
2603
  /**
2604
2604
  * <p>Contains details about a lambda function that failed to start during an execution.</p>
2605
2605
  * @public
2606
2606
  */
2607
- lambdaFunctionStartFailedEventDetails?: LambdaFunctionStartFailedEventDetails;
2607
+ lambdaFunctionStartFailedEventDetails?: LambdaFunctionStartFailedEventDetails | undefined;
2608
2608
  /**
2609
2609
  * <p>Contains details about a Lambda function that terminated successfully during an
2610
2610
  * execution.</p>
2611
2611
  * @public
2612
2612
  */
2613
- lambdaFunctionSucceededEventDetails?: LambdaFunctionSucceededEventDetails;
2613
+ lambdaFunctionSucceededEventDetails?: LambdaFunctionSucceededEventDetails | undefined;
2614
2614
  /**
2615
2615
  * <p>Contains details about a Lambda function timeout that occurred during an execution.</p>
2616
2616
  * @public
2617
2617
  */
2618
- lambdaFunctionTimedOutEventDetails?: LambdaFunctionTimedOutEventDetails;
2618
+ lambdaFunctionTimedOutEventDetails?: LambdaFunctionTimedOutEventDetails | undefined;
2619
2619
  /**
2620
2620
  * <p>Contains details about a state entered during an execution.</p>
2621
2621
  * @public
2622
2622
  */
2623
- stateEnteredEventDetails?: StateEnteredEventDetails;
2623
+ stateEnteredEventDetails?: StateEnteredEventDetails | undefined;
2624
2624
  /**
2625
2625
  * <p>Contains details about an exit from a state during an execution.</p>
2626
2626
  * @public
2627
2627
  */
2628
- stateExitedEventDetails?: StateExitedEventDetails;
2628
+ stateExitedEventDetails?: StateExitedEventDetails | undefined;
2629
2629
  /**
2630
2630
  * <p>Contains details, such as <code>mapRunArn</code>, and the start date and time of a Map Run. <code>mapRunArn</code> is the Amazon Resource Name (ARN) of the Map Run that was started.</p>
2631
2631
  * @public
2632
2632
  */
2633
- mapRunStartedEventDetails?: MapRunStartedEventDetails;
2633
+ mapRunStartedEventDetails?: MapRunStartedEventDetails | undefined;
2634
2634
  /**
2635
2635
  * <p>Contains error and cause details about a Map Run that failed.</p>
2636
2636
  * @public
2637
2637
  */
2638
- mapRunFailedEventDetails?: MapRunFailedEventDetails;
2638
+ mapRunFailedEventDetails?: MapRunFailedEventDetails | undefined;
2639
2639
  /**
2640
2640
  * <p>Contains details about the redrive attempt of a Map Run.</p>
2641
2641
  * @public
2642
2642
  */
2643
- mapRunRedrivenEventDetails?: MapRunRedrivenEventDetails;
2643
+ mapRunRedrivenEventDetails?: MapRunRedrivenEventDetails | undefined;
2644
2644
  }
2645
2645
  /**
2646
2646
  * @public
@@ -2656,7 +2656,7 @@ export interface GetExecutionHistoryOutput {
2656
2656
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
2657
2657
  * @public
2658
2658
  */
2659
- nextToken?: string;
2659
+ nextToken?: string | undefined;
2660
2660
  }
2661
2661
  /**
2662
2662
  * <p>The provided token is not valid.</p>
@@ -2680,13 +2680,13 @@ export interface ListActivitiesInput {
2680
2680
  * <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
2681
2681
  * @public
2682
2682
  */
2683
- maxResults?: number;
2683
+ maxResults?: number | undefined;
2684
2684
  /**
2685
2685
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page.
2686
2686
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
2687
2687
  * @public
2688
2688
  */
2689
- nextToken?: string;
2689
+ nextToken?: string | undefined;
2690
2690
  }
2691
2691
  /**
2692
2692
  * @public
@@ -2702,7 +2702,7 @@ export interface ListActivitiesOutput {
2702
2702
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
2703
2703
  * @public
2704
2704
  */
2705
- nextToken?: string;
2705
+ nextToken?: string | undefined;
2706
2706
  }
2707
2707
  /**
2708
2708
  * @public
@@ -2726,32 +2726,32 @@ export interface ListExecutionsInput {
2726
2726
  * <p>You can also return a list of executions associated with a specific <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-state-machine-alias.html">alias</a> or <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-state-machine-version.html">version</a>, by specifying an alias ARN or a version ARN in the <code>stateMachineArn</code> parameter.</p>
2727
2727
  * @public
2728
2728
  */
2729
- stateMachineArn?: string;
2729
+ stateMachineArn?: string | undefined;
2730
2730
  /**
2731
2731
  * <p>If specified, only list the executions whose current execution status matches the given
2732
2732
  * filter.</p>
2733
2733
  * @public
2734
2734
  */
2735
- statusFilter?: ExecutionStatus;
2735
+ statusFilter?: ExecutionStatus | undefined;
2736
2736
  /**
2737
2737
  * <p>The maximum number of results that are returned per call. You can use <code>nextToken</code> to obtain further pages of results.
2738
2738
  * The default is 100 and the maximum allowed page size is 1000. A value of 0 uses the default.</p>
2739
2739
  * <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
2740
2740
  * @public
2741
2741
  */
2742
- maxResults?: number;
2742
+ maxResults?: number | undefined;
2743
2743
  /**
2744
2744
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page.
2745
2745
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
2746
2746
  * @public
2747
2747
  */
2748
- nextToken?: string;
2748
+ nextToken?: string | undefined;
2749
2749
  /**
2750
2750
  * <p>The Amazon Resource Name (ARN) of the Map Run that started the child workflow executions. If the <code>mapRunArn</code> field is specified, a list of all of the child workflow executions started by a Map Run is returned. For more information, see <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-examine-map-run.html">Examining Map Run</a> in the <i>Step Functions Developer Guide</i>.</p>
2751
2751
  * <p>You can specify either a <code>mapRunArn</code> or a <code>stateMachineArn</code>, but not both.</p>
2752
2752
  * @public
2753
2753
  */
2754
- mapRunArn?: string;
2754
+ mapRunArn?: string | undefined;
2755
2755
  /**
2756
2756
  * <p>Sets a filter to list executions based on whether or not they have been redriven.</p>
2757
2757
  * <p>For a Distributed Map, <code>redriveFilter</code> sets a filter to list child workflow executions based on whether or not they have been redriven.</p>
@@ -2759,7 +2759,7 @@ export interface ListExecutionsInput {
2759
2759
  * <p>If you provide a state machine ARN in <code>redriveFilter</code>, the API returns a validation exception.</p>
2760
2760
  * @public
2761
2761
  */
2762
- redriveFilter?: ExecutionRedriveFilter;
2762
+ redriveFilter?: ExecutionRedriveFilter | undefined;
2763
2763
  }
2764
2764
  /**
2765
2765
  * <p>Contains details about an execution.</p>
@@ -2817,40 +2817,40 @@ export interface ExecutionListItem {
2817
2817
  * <p>If the execution already ended, the date the execution stopped.</p>
2818
2818
  * @public
2819
2819
  */
2820
- stopDate?: Date;
2820
+ stopDate?: Date | undefined;
2821
2821
  /**
2822
2822
  * <p>The Amazon Resource Name (ARN) of a Map Run. This field is returned only if <code>mapRunArn</code> was specified in the <code>ListExecutions</code> API action. If <code>stateMachineArn</code> was specified in <code>ListExecutions</code>, the <code>mapRunArn</code> isn't returned.</p>
2823
2823
  * @public
2824
2824
  */
2825
- mapRunArn?: string;
2825
+ mapRunArn?: string | undefined;
2826
2826
  /**
2827
2827
  * <p>The total number of items processed in a child workflow execution. This field is returned only if <code>mapRunArn</code> was specified in the <code>ListExecutions</code> API action. If <code>stateMachineArn</code> was specified in <code>ListExecutions</code>, the <code>itemCount</code> field isn't returned.</p>
2828
2828
  * @public
2829
2829
  */
2830
- itemCount?: number;
2830
+ itemCount?: number | undefined;
2831
2831
  /**
2832
2832
  * <p>The Amazon Resource Name (ARN) of the state machine version associated with the execution.</p>
2833
2833
  * <p>If the state machine execution was started with an unqualified ARN, it returns null.</p>
2834
2834
  * <p>If the execution was started using a <code>stateMachineAliasArn</code>, both the <code>stateMachineAliasArn</code> and <code>stateMachineVersionArn</code> parameters contain the respective values.</p>
2835
2835
  * @public
2836
2836
  */
2837
- stateMachineVersionArn?: string;
2837
+ stateMachineVersionArn?: string | undefined;
2838
2838
  /**
2839
2839
  * <p>The Amazon Resource Name (ARN) of the state machine alias used to start an execution.</p>
2840
2840
  * <p>If the state machine execution was started with an unqualified ARN or a version ARN, it returns null.</p>
2841
2841
  * @public
2842
2842
  */
2843
- stateMachineAliasArn?: string;
2843
+ stateMachineAliasArn?: string | undefined;
2844
2844
  /**
2845
2845
  * <p>The number of times you've redriven an execution. If you have not yet redriven an execution, the <code>redriveCount</code> is 0. This count is only updated when you successfully redrive an execution.</p>
2846
2846
  * @public
2847
2847
  */
2848
- redriveCount?: number;
2848
+ redriveCount?: number | undefined;
2849
2849
  /**
2850
2850
  * <p>The date the execution was last redriven.</p>
2851
2851
  * @public
2852
2852
  */
2853
- redriveDate?: Date;
2853
+ redriveDate?: Date | undefined;
2854
2854
  }
2855
2855
  /**
2856
2856
  * @public
@@ -2866,7 +2866,7 @@ export interface ListExecutionsOutput {
2866
2866
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
2867
2867
  * @public
2868
2868
  */
2869
- nextToken?: string;
2869
+ nextToken?: string | undefined;
2870
2870
  }
2871
2871
  /**
2872
2872
  * @public
@@ -2883,13 +2883,13 @@ export interface ListMapRunsInput {
2883
2883
  * <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
2884
2884
  * @public
2885
2885
  */
2886
- maxResults?: number;
2886
+ maxResults?: number | undefined;
2887
2887
  /**
2888
2888
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page.
2889
2889
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
2890
2890
  * @public
2891
2891
  */
2892
- nextToken?: string;
2892
+ nextToken?: string | undefined;
2893
2893
  }
2894
2894
  /**
2895
2895
  * <p>Contains details about a specific Map Run.</p>
@@ -2920,7 +2920,7 @@ export interface MapRunListItem {
2920
2920
  * <p>The date on which the Map Run stopped.</p>
2921
2921
  * @public
2922
2922
  */
2923
- stopDate?: Date;
2923
+ stopDate?: Date | undefined;
2924
2924
  }
2925
2925
  /**
2926
2926
  * @public
@@ -2936,7 +2936,7 @@ export interface ListMapRunsOutput {
2936
2936
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
2937
2937
  * @public
2938
2938
  */
2939
- nextToken?: string;
2939
+ nextToken?: string | undefined;
2940
2940
  }
2941
2941
  /**
2942
2942
  * @public
@@ -2953,14 +2953,14 @@ export interface ListStateMachineAliasesInput {
2953
2953
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
2954
2954
  * @public
2955
2955
  */
2956
- nextToken?: string;
2956
+ nextToken?: string | undefined;
2957
2957
  /**
2958
2958
  * <p>The maximum number of results that are returned per call. You can use <code>nextToken</code> to obtain further pages of results.
2959
2959
  * The default is 100 and the maximum allowed page size is 1000. A value of 0 uses the default.</p>
2960
2960
  * <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
2961
2961
  * @public
2962
2962
  */
2963
- maxResults?: number;
2963
+ maxResults?: number | undefined;
2964
2964
  }
2965
2965
  /**
2966
2966
  * <p>Contains details about a specific state machine alias.</p>
@@ -2992,7 +2992,7 @@ export interface ListStateMachineAliasesOutput {
2992
2992
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
2993
2993
  * @public
2994
2994
  */
2995
- nextToken?: string;
2995
+ nextToken?: string | undefined;
2996
2996
  }
2997
2997
  /**
2998
2998
  * @public
@@ -3004,13 +3004,13 @@ export interface ListStateMachinesInput {
3004
3004
  * <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
3005
3005
  * @public
3006
3006
  */
3007
- maxResults?: number;
3007
+ maxResults?: number | undefined;
3008
3008
  /**
3009
3009
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page.
3010
3010
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
3011
3011
  * @public
3012
3012
  */
3013
- nextToken?: string;
3013
+ nextToken?: string | undefined;
3014
3014
  }
3015
3015
  /**
3016
3016
  * <p>Contains details about the state machine.</p>
@@ -3070,7 +3070,7 @@ export interface ListStateMachinesOutput {
3070
3070
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
3071
3071
  * @public
3072
3072
  */
3073
- nextToken?: string;
3073
+ nextToken?: string | undefined;
3074
3074
  }
3075
3075
  /**
3076
3076
  * @public
@@ -3086,14 +3086,14 @@ export interface ListStateMachineVersionsInput {
3086
3086
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
3087
3087
  * @public
3088
3088
  */
3089
- nextToken?: string;
3089
+ nextToken?: string | undefined;
3090
3090
  /**
3091
3091
  * <p>The maximum number of results that are returned per call. You can use <code>nextToken</code> to obtain further pages of results.
3092
3092
  * The default is 100 and the maximum allowed page size is 1000. A value of 0 uses the default.</p>
3093
3093
  * <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
3094
3094
  * @public
3095
3095
  */
3096
- maxResults?: number;
3096
+ maxResults?: number | undefined;
3097
3097
  }
3098
3098
  /**
3099
3099
  * <p>Contains details about a specific state machine version.</p>
@@ -3125,7 +3125,7 @@ export interface ListStateMachineVersionsOutput {
3125
3125
  * Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken</i> error.</p>
3126
3126
  * @public
3127
3127
  */
3128
- nextToken?: string;
3128
+ nextToken?: string | undefined;
3129
3129
  }
3130
3130
  /**
3131
3131
  * @public
@@ -3145,7 +3145,7 @@ export interface ListTagsForResourceOutput {
3145
3145
  * <p>An array of tags associated with the resource.</p>
3146
3146
  * @public
3147
3147
  */
3148
- tags?: Tag[];
3148
+ tags?: Tag[] | undefined;
3149
3149
  }
3150
3150
  /**
3151
3151
  * @public
@@ -3169,12 +3169,12 @@ export interface PublishStateMachineVersionInput {
3169
3169
  * </note>
3170
3170
  * @public
3171
3171
  */
3172
- revisionId?: string;
3172
+ revisionId?: string | undefined;
3173
3173
  /**
3174
3174
  * <p>An optional description of the state machine version.</p>
3175
3175
  * @public
3176
3176
  */
3177
- description?: string;
3177
+ description?: string | undefined;
3178
3178
  }
3179
3179
  /**
3180
3180
  * @public
@@ -3229,7 +3229,7 @@ export interface RedriveExecutionInput {
3229
3229
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency. The API will return idempotent responses for the last 10 client tokens used to successfully redrive the execution. These client tokens are valid for up to 15 minutes after they are first used.</p>
3230
3230
  * @public
3231
3231
  */
3232
- clientToken?: string;
3232
+ clientToken?: string | undefined;
3233
3233
  }
3234
3234
  /**
3235
3235
  * @public
@@ -3256,12 +3256,12 @@ export interface SendTaskFailureInput {
3256
3256
  * <p>The error code of the failure.</p>
3257
3257
  * @public
3258
3258
  */
3259
- error?: string;
3259
+ error?: string | undefined;
3260
3260
  /**
3261
3261
  * <p>A more detailed explanation of the cause of the failure.</p>
3262
3262
  * @public
3263
3263
  */
3264
- cause?: string;
3264
+ cause?: string | undefined;
3265
3265
  }
3266
3266
  /**
3267
3267
  * @public
@@ -3439,7 +3439,7 @@ export interface StartExecutionInput {
3439
3439
  * <p>To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.</p>
3440
3440
  * @public
3441
3441
  */
3442
- name?: string;
3442
+ name?: string | undefined;
3443
3443
  /**
3444
3444
  * <p>The string that contains the JSON input data for the execution, for example:</p>
3445
3445
  * <p>
@@ -3453,13 +3453,13 @@ export interface StartExecutionInput {
3453
3453
  * <p>Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
3454
3454
  * @public
3455
3455
  */
3456
- input?: string;
3456
+ input?: string | undefined;
3457
3457
  /**
3458
3458
  * <p>Passes the X-Ray trace header. The trace header can also be passed in the request
3459
3459
  * payload.</p>
3460
3460
  * @public
3461
3461
  */
3462
- traceHeader?: string;
3462
+ traceHeader?: string | undefined;
3463
3463
  }
3464
3464
  /**
3465
3465
  * @public
@@ -3489,7 +3489,7 @@ export interface StartSyncExecutionInput {
3489
3489
  * <p>The name of the execution.</p>
3490
3490
  * @public
3491
3491
  */
3492
- name?: string;
3492
+ name?: string | undefined;
3493
3493
  /**
3494
3494
  * <p>The string that contains the JSON input data for the execution, for example:</p>
3495
3495
  * <p>
@@ -3503,18 +3503,18 @@ export interface StartSyncExecutionInput {
3503
3503
  * <p>Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
3504
3504
  * @public
3505
3505
  */
3506
- input?: string;
3506
+ input?: string | undefined;
3507
3507
  /**
3508
3508
  * <p>Passes the X-Ray trace header. The trace header can also be passed in the request
3509
3509
  * payload.</p>
3510
3510
  * @public
3511
3511
  */
3512
- traceHeader?: string;
3512
+ traceHeader?: string | undefined;
3513
3513
  /**
3514
3514
  * <p>If your state machine definition is encrypted with a KMS key, callers must have <code>kms:Decrypt</code> permission to decrypt the definition. Alternatively, you can call the API with <code>includedData = METADATA_ONLY</code> to get a successful response without the encrypted definition.</p>
3515
3515
  * @public
3516
3516
  */
3517
- includedData?: IncludedData;
3517
+ includedData?: IncludedData | undefined;
3518
3518
  }
3519
3519
  /**
3520
3520
  * <p>An object that describes workflow billing details.</p>
@@ -3525,12 +3525,12 @@ export interface BillingDetails {
3525
3525
  * <p>Billed memory consumption of your workflow, in MB.</p>
3526
3526
  * @public
3527
3527
  */
3528
- billedMemoryUsedInMB?: number;
3528
+ billedMemoryUsedInMB?: number | undefined;
3529
3529
  /**
3530
3530
  * <p>Billed duration of your workflow, in milliseconds.</p>
3531
3531
  * @public
3532
3532
  */
3533
- billedDurationInMilliseconds?: number;
3533
+ billedDurationInMilliseconds?: number | undefined;
3534
3534
  }
3535
3535
  /**
3536
3536
  * @public
@@ -3558,12 +3558,12 @@ export interface StartSyncExecutionOutput {
3558
3558
  * <p>The Amazon Resource Name (ARN) that identifies the state machine.</p>
3559
3559
  * @public
3560
3560
  */
3561
- stateMachineArn?: string;
3561
+ stateMachineArn?: string | undefined;
3562
3562
  /**
3563
3563
  * <p>The name of the execution.</p>
3564
3564
  * @public
3565
3565
  */
3566
- name?: string;
3566
+ name?: string | undefined;
3567
3567
  /**
3568
3568
  * <p>The date the execution is started.</p>
3569
3569
  * @public
@@ -3583,22 +3583,22 @@ export interface StartSyncExecutionOutput {
3583
3583
  * <p>The error code of the failure.</p>
3584
3584
  * @public
3585
3585
  */
3586
- error?: string;
3586
+ error?: string | undefined;
3587
3587
  /**
3588
3588
  * <p>A more detailed explanation of the cause of the failure.</p>
3589
3589
  * @public
3590
3590
  */
3591
- cause?: string;
3591
+ cause?: string | undefined;
3592
3592
  /**
3593
3593
  * <p>The string that contains the JSON input data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
3594
3594
  * @public
3595
3595
  */
3596
- input?: string;
3596
+ input?: string | undefined;
3597
3597
  /**
3598
3598
  * <p>Provides details about execution input or output.</p>
3599
3599
  * @public
3600
3600
  */
3601
- inputDetails?: CloudWatchEventsExecutionDataDetails;
3601
+ inputDetails?: CloudWatchEventsExecutionDataDetails | undefined;
3602
3602
  /**
3603
3603
  * <p>The JSON output data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
3604
3604
  * <note>
@@ -3607,23 +3607,23 @@ export interface StartSyncExecutionOutput {
3607
3607
  * </note>
3608
3608
  * @public
3609
3609
  */
3610
- output?: string;
3610
+ output?: string | undefined;
3611
3611
  /**
3612
3612
  * <p>Provides details about execution input or output.</p>
3613
3613
  * @public
3614
3614
  */
3615
- outputDetails?: CloudWatchEventsExecutionDataDetails;
3615
+ outputDetails?: CloudWatchEventsExecutionDataDetails | undefined;
3616
3616
  /**
3617
3617
  * <p>The X-Ray trace header that was passed to the execution.</p>
3618
3618
  * @public
3619
3619
  */
3620
- traceHeader?: string;
3620
+ traceHeader?: string | undefined;
3621
3621
  /**
3622
3622
  * <p>An object that describes workflow billing details, including billed duration and memory
3623
3623
  * use.</p>
3624
3624
  * @public
3625
3625
  */
3626
- billingDetails?: BillingDetails;
3626
+ billingDetails?: BillingDetails | undefined;
3627
3627
  }
3628
3628
  /**
3629
3629
  * @public
@@ -3638,12 +3638,12 @@ export interface StopExecutionInput {
3638
3638
  * <p>The error code of the failure.</p>
3639
3639
  * @public
3640
3640
  */
3641
- error?: string;
3641
+ error?: string | undefined;
3642
3642
  /**
3643
3643
  * <p>A more detailed explanation of the cause of the failure.</p>
3644
3644
  * @public
3645
3645
  */
3646
- cause?: string;
3646
+ cause?: string | undefined;
3647
3647
  }
3648
3648
  /**
3649
3649
  * @public
@@ -3707,7 +3707,7 @@ export interface TestStateInput {
3707
3707
  * <p>A string that contains the JSON input data for the state.</p>
3708
3708
  * @public
3709
3709
  */
3710
- input?: string;
3710
+ input?: string | undefined;
3711
3711
  /**
3712
3712
  * <p>Determines the values to return when a state is tested. You can specify one of the following types:</p>
3713
3713
  * <ul>
@@ -3727,14 +3727,14 @@ export interface TestStateInput {
3727
3727
  * <p>Each of these levels also provide information about the status of the state execution and the next state to transition to.</p>
3728
3728
  * @public
3729
3729
  */
3730
- inspectionLevel?: InspectionLevel;
3730
+ inspectionLevel?: InspectionLevel | undefined;
3731
3731
  /**
3732
3732
  * <p>Specifies whether or not to include secret information in the test result. For HTTP Tasks, a secret includes the data that an EventBridge connection adds to modify the HTTP request headers, query parameters, and body. Step Functions doesn't omit any information included in the state definition or the HTTP response.</p>
3733
3733
  * <p>If you set <code>revealSecrets</code> to <code>true</code>, you must make sure that the IAM user that calls the <code>TestState</code> API has permission for the <code>states:RevealSecrets</code> action. For an example of IAM policy that sets the <code>states:RevealSecrets</code> permission, see <a href="https://docs.aws.amazon.com/step-functions/latest/dg/test-state-isolation.html#test-state-permissions">IAM permissions to test a state</a>. Without this permission, Step Functions throws an access denied error.</p>
3734
3734
  * <p>By default, <code>revealSecrets</code> is set to <code>false</code>.</p>
3735
3735
  * @public
3736
3736
  */
3737
- revealSecrets?: boolean;
3737
+ revealSecrets?: boolean | undefined;
3738
3738
  }
3739
3739
  /**
3740
3740
  * <p>Contains additional details about the state's execution, including its input and output data processing flow, and HTTP request information.</p>
@@ -3745,27 +3745,27 @@ export interface InspectionDataRequest {
3745
3745
  * <p>The protocol used to make the HTTP request.</p>
3746
3746
  * @public
3747
3747
  */
3748
- protocol?: string;
3748
+ protocol?: string | undefined;
3749
3749
  /**
3750
3750
  * <p>The HTTP method used for the HTTP request.</p>
3751
3751
  * @public
3752
3752
  */
3753
- method?: string;
3753
+ method?: string | undefined;
3754
3754
  /**
3755
3755
  * <p>The API endpoint used for the HTTP request.</p>
3756
3756
  * @public
3757
3757
  */
3758
- url?: string;
3758
+ url?: string | undefined;
3759
3759
  /**
3760
3760
  * <p>The request headers associated with the HTTP request.</p>
3761
3761
  * @public
3762
3762
  */
3763
- headers?: string;
3763
+ headers?: string | undefined;
3764
3764
  /**
3765
3765
  * <p>The request body for the HTTP request.</p>
3766
3766
  * @public
3767
3767
  */
3768
- body?: string;
3768
+ body?: string | undefined;
3769
3769
  }
3770
3770
  /**
3771
3771
  * <p>Contains additional details about the state's execution, including its input and output data processing flow, and HTTP response information. The <code>inspectionLevel</code> request parameter specifies which details are returned.</p>
@@ -3776,27 +3776,27 @@ export interface InspectionDataResponse {
3776
3776
  * <p>The protocol used to return the HTTP response.</p>
3777
3777
  * @public
3778
3778
  */
3779
- protocol?: string;
3779
+ protocol?: string | undefined;
3780
3780
  /**
3781
3781
  * <p>The HTTP response status code for the HTTP response.</p>
3782
3782
  * @public
3783
3783
  */
3784
- statusCode?: string;
3784
+ statusCode?: string | undefined;
3785
3785
  /**
3786
3786
  * <p>The message associated with the HTTP status code.</p>
3787
3787
  * @public
3788
3788
  */
3789
- statusMessage?: string;
3789
+ statusMessage?: string | undefined;
3790
3790
  /**
3791
3791
  * <p>The response headers associated with the HTTP response.</p>
3792
3792
  * @public
3793
3793
  */
3794
- headers?: string;
3794
+ headers?: string | undefined;
3795
3795
  /**
3796
3796
  * <p>The HTTP response returned.</p>
3797
3797
  * @public
3798
3798
  */
3799
- body?: string;
3799
+ body?: string | undefined;
3800
3800
  }
3801
3801
  /**
3802
3802
  * <p>Contains additional details about the state's execution, including its input and output data processing flow, and HTTP request and response information.</p>
@@ -3807,42 +3807,42 @@ export interface InspectionData {
3807
3807
  * <p>The raw state input.</p>
3808
3808
  * @public
3809
3809
  */
3810
- input?: string;
3810
+ input?: string | undefined;
3811
3811
  /**
3812
3812
  * <p>The input after Step Functions applies the <a href="https://docs.aws.amazon.com/step-functions/latest/dg/input-output-inputpath-params.html#input-output-inputpath">InputPath</a> filter.</p>
3813
3813
  * @public
3814
3814
  */
3815
- afterInputPath?: string;
3815
+ afterInputPath?: string | undefined;
3816
3816
  /**
3817
3817
  * <p>The effective input after Step Functions applies the <a href="https://docs.aws.amazon.com/step-functions/latest/dg/input-output-inputpath-params.html#input-output-parameters">Parameters</a> filter.</p>
3818
3818
  * @public
3819
3819
  */
3820
- afterParameters?: string;
3820
+ afterParameters?: string | undefined;
3821
3821
  /**
3822
3822
  * <p>The state's raw result.</p>
3823
3823
  * @public
3824
3824
  */
3825
- result?: string;
3825
+ result?: string | undefined;
3826
3826
  /**
3827
3827
  * <p>The effective result after Step Functions applies the <a href="https://docs.aws.amazon.com/step-functions/latest/dg/input-output-inputpath-params.html#input-output-resultselector">ResultSelector</a> filter.</p>
3828
3828
  * @public
3829
3829
  */
3830
- afterResultSelector?: string;
3830
+ afterResultSelector?: string | undefined;
3831
3831
  /**
3832
3832
  * <p>The effective result combined with the raw state input after Step Functions applies the <a href="https://docs.aws.amazon.com/step-functions/latest/dg/input-output-resultpath.html">ResultPath</a> filter.</p>
3833
3833
  * @public
3834
3834
  */
3835
- afterResultPath?: string;
3835
+ afterResultPath?: string | undefined;
3836
3836
  /**
3837
3837
  * <p>The raw HTTP request that is sent when you test an HTTP Task.</p>
3838
3838
  * @public
3839
3839
  */
3840
- request?: InspectionDataRequest;
3840
+ request?: InspectionDataRequest | undefined;
3841
3841
  /**
3842
3842
  * <p>The raw HTTP response that is returned when you test an HTTP Task.</p>
3843
3843
  * @public
3844
3844
  */
3845
- response?: InspectionDataResponse;
3845
+ response?: InspectionDataResponse | undefined;
3846
3846
  }
3847
3847
  /**
3848
3848
  * @public
@@ -3866,32 +3866,32 @@ export interface TestStateOutput {
3866
3866
  * <p>The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
3867
3867
  * @public
3868
3868
  */
3869
- output?: string;
3869
+ output?: string | undefined;
3870
3870
  /**
3871
3871
  * <p>The error returned when the execution of a state fails.</p>
3872
3872
  * @public
3873
3873
  */
3874
- error?: string;
3874
+ error?: string | undefined;
3875
3875
  /**
3876
3876
  * <p>A detailed explanation of the cause for the error when the execution of a state fails.</p>
3877
3877
  * @public
3878
3878
  */
3879
- cause?: string;
3879
+ cause?: string | undefined;
3880
3880
  /**
3881
3881
  * <p>Returns additional details about the state's execution, including its input and output data processing flow, and HTTP request and response information. The <code>inspectionLevel</code> request parameter specifies which details are returned.</p>
3882
3882
  * @public
3883
3883
  */
3884
- inspectionData?: InspectionData;
3884
+ inspectionData?: InspectionData | undefined;
3885
3885
  /**
3886
3886
  * <p>The name of the next state to transition to. If you haven't defined a next state in your definition or if the execution of the state fails, this field doesn't contain a value.</p>
3887
3887
  * @public
3888
3888
  */
3889
- nextState?: string;
3889
+ nextState?: string | undefined;
3890
3890
  /**
3891
3891
  * <p>The execution status of the state.</p>
3892
3892
  * @public
3893
3893
  */
3894
- status?: TestExecutionStatus;
3894
+ status?: TestExecutionStatus | undefined;
3895
3895
  }
3896
3896
  /**
3897
3897
  * @public
@@ -3926,17 +3926,17 @@ export interface UpdateMapRunInput {
3926
3926
  * <p>The maximum number of child workflow executions that can be specified to run in parallel for the Map Run at the same time.</p>
3927
3927
  * @public
3928
3928
  */
3929
- maxConcurrency?: number;
3929
+ maxConcurrency?: number | undefined;
3930
3930
  /**
3931
3931
  * <p>The maximum percentage of failed items before the Map Run fails.</p>
3932
3932
  * @public
3933
3933
  */
3934
- toleratedFailurePercentage?: number;
3934
+ toleratedFailurePercentage?: number | undefined;
3935
3935
  /**
3936
3936
  * <p>The maximum number of failed items before the Map Run fails.</p>
3937
3937
  * @public
3938
3938
  */
3939
- toleratedFailureCount?: number;
3939
+ toleratedFailureCount?: number | undefined;
3940
3940
  }
3941
3941
  /**
3942
3942
  * @public
@@ -3969,41 +3969,41 @@ export interface UpdateStateMachineInput {
3969
3969
  * <p>The Amazon States Language definition of the state machine. See <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-amazon-states-language.html">Amazon States Language</a>.</p>
3970
3970
  * @public
3971
3971
  */
3972
- definition?: string;
3972
+ definition?: string | undefined;
3973
3973
  /**
3974
3974
  * <p>The Amazon Resource Name (ARN) of the IAM role of the state machine.</p>
3975
3975
  * @public
3976
3976
  */
3977
- roleArn?: string;
3977
+ roleArn?: string | undefined;
3978
3978
  /**
3979
3979
  * <p>Use the <code>LoggingConfiguration</code> data type to set CloudWatch Logs
3980
3980
  * options.</p>
3981
3981
  * @public
3982
3982
  */
3983
- loggingConfiguration?: LoggingConfiguration;
3983
+ loggingConfiguration?: LoggingConfiguration | undefined;
3984
3984
  /**
3985
3985
  * <p>Selects whether X-Ray tracing is enabled.</p>
3986
3986
  * @public
3987
3987
  */
3988
- tracingConfiguration?: TracingConfiguration;
3988
+ tracingConfiguration?: TracingConfiguration | undefined;
3989
3989
  /**
3990
3990
  * <p>Specifies whether the state machine version is published. The default is
3991
3991
  * <code>false</code>. To publish a version after updating the state machine, set
3992
3992
  * <code>publish</code> to <code>true</code>.</p>
3993
3993
  * @public
3994
3994
  */
3995
- publish?: boolean;
3995
+ publish?: boolean | undefined;
3996
3996
  /**
3997
3997
  * <p>An optional description of the state machine version to publish.</p>
3998
3998
  * <p>You can only specify the <code>versionDescription</code> parameter if you've set <code>publish</code> to <code>true</code>.</p>
3999
3999
  * @public
4000
4000
  */
4001
- versionDescription?: string;
4001
+ versionDescription?: string | undefined;
4002
4002
  /**
4003
4003
  * <p>Settings to configure server-side encryption. </p>
4004
4004
  * @public
4005
4005
  */
4006
- encryptionConfiguration?: EncryptionConfiguration;
4006
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
4007
4007
  }
4008
4008
  /**
4009
4009
  * @public
@@ -4018,13 +4018,13 @@ export interface UpdateStateMachineOutput {
4018
4018
  * <p>The revision identifier for the updated state machine.</p>
4019
4019
  * @public
4020
4020
  */
4021
- revisionId?: string;
4021
+ revisionId?: string | undefined;
4022
4022
  /**
4023
4023
  * <p>The Amazon Resource Name (ARN) of the published state machine version.</p>
4024
4024
  * <p>If the <code>publish</code> parameter isn't set to <code>true</code>, this field returns null.</p>
4025
4025
  * @public
4026
4026
  */
4027
- stateMachineVersionArn?: string;
4027
+ stateMachineVersionArn?: string | undefined;
4028
4028
  }
4029
4029
  /**
4030
4030
  * @public
@@ -4039,13 +4039,13 @@ export interface UpdateStateMachineAliasInput {
4039
4039
  * <p>A description of the state machine alias.</p>
4040
4040
  * @public
4041
4041
  */
4042
- description?: string;
4042
+ description?: string | undefined;
4043
4043
  /**
4044
4044
  * <p>The routing configuration of the state machine alias.</p>
4045
4045
  * <p>An array of <code>RoutingConfig</code> objects that specifies up to two state machine versions that the alias starts executions for.</p>
4046
4046
  * @public
4047
4047
  */
4048
- routingConfiguration?: RoutingConfigurationListItem[];
4048
+ routingConfiguration?: RoutingConfigurationListItem[] | undefined;
4049
4049
  }
4050
4050
  /**
4051
4051
  * @public
@@ -4083,18 +4083,18 @@ export interface ValidateStateMachineDefinitionInput {
4083
4083
  * <p>The target type of state machine for this definition. The default is <code>STANDARD</code>.</p>
4084
4084
  * @public
4085
4085
  */
4086
- type?: StateMachineType;
4086
+ type?: StateMachineType | undefined;
4087
4087
  /**
4088
4088
  * <p>Minimum level of diagnostics to return. <code>ERROR</code> returns only <code>ERROR</code> diagnostics, whereas <code>WARNING</code> returns both <code>WARNING</code> and <code>ERROR</code> diagnostics. The default is <code>ERROR</code>. </p>
4089
4089
  * @public
4090
4090
  */
4091
- severity?: ValidateStateMachineDefinitionSeverity;
4091
+ severity?: ValidateStateMachineDefinitionSeverity | undefined;
4092
4092
  /**
4093
4093
  * <p>The maximum number of diagnostics that are returned per call. The default and maximum value is 100. Setting the value to 0 will also use the default of 100.</p>
4094
4094
  * <p>If the number of diagnostics returned in the response exceeds <code>maxResults</code>, the value of the <code>truncated</code> field in the response will be set to <code>true</code>.</p>
4095
4095
  * @public
4096
4096
  */
4097
- maxResults?: number;
4097
+ maxResults?: number | undefined;
4098
4098
  }
4099
4099
  /**
4100
4100
  * <p>Describes an error found during validation. Validation errors found in the definition
@@ -4123,7 +4123,7 @@ export interface ValidateStateMachineDefinitionDiagnostic {
4123
4123
  * <p>For errors specific to a field, the location could be in the format: <code>/States/<StateName>/<FieldName></code>, for example: <code>/States/FailState/ErrorPath</code>.</p>
4124
4124
  * @public
4125
4125
  */
4126
- location?: string;
4126
+ location?: string | undefined;
4127
4127
  }
4128
4128
  /**
4129
4129
  * @public
@@ -4158,7 +4158,7 @@ export interface ValidateStateMachineDefinitionOutput {
4158
4158
  * <p>The result value will be <code>true</code> if the number of diagnostics found in the workflow definition exceeds <code>maxResults</code>. When all diagnostics results are returned, the value will be <code>false</code>.</p>
4159
4159
  * @public
4160
4160
  */
4161
- truncated?: boolean;
4161
+ truncated?: boolean | undefined;
4162
4162
  }
4163
4163
  /**
4164
4164
  * @internal