@@ -72,6 +72,12 @@ export interface CancelBatchJobExecutionRequest {
72
72
* @public
73
73
*/
74
74
executionId : string | undefined ;
75
+
76
+ /**
77
+ * <p>The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for Cancel Batch Job Execution operation.</p>
78
+ * @public
79
+ */
80
+ authSecretsManagerArn ?: string ;
75
81
}
76
82
77
83
/**
@@ -392,11 +398,8 @@ export interface CreateApplicationRequest {
392
398
tags ?: Record < string , string > ;
393
399
394
400
/**
395
- * <p>Unique, case-sensitive identifier the service generates to ensure the idempotency of the
396
- * request to create an application. The service generates the clientToken when the API call
397
- * is triggered. The token expires after one hour, so if you retry the API within this
398
- * timeframe with the same clientToken, you will get the same response. The service also
399
- * handles deleting the clientToken after it expires. </p>
401
+ * <p>A client token is a unique, case-sensitive string of up to 128 ASCII characters with ASCII values of 33-126 inclusive.
402
+ * It's generated by the client to ensure idempotent operations, allowing for safe retries without unintended side effects.</p>
400
403
* @public
401
404
*/
402
405
clientToken ?: string ;
@@ -1372,24 +1375,24 @@ export interface FileBatchJobIdentifier {
1372
1375
}
1373
1376
1374
1377
/**
1375
- * <p>Provides restart step information for the most recent restart operation.</p>
1378
+ * <p>Provides step/procedure step information for a restart batch job operation.</p>
1376
1379
* @public
1377
1380
*/
1378
1381
export interface JobStepRestartMarker {
1379
1382
/**
1380
- * <p>The step name that a batch job restart was from.</p>
1383
+ * <p>The step name that a batch job was restarted from.</p>
1381
1384
* @public
1382
1385
*/
1383
1386
fromStep : string | undefined ;
1384
1387
1385
1388
/**
1386
- * <p>The procedure step name that a job was restarted from.</p>
1389
+ * <p>The procedure step name that a batch job was restarted from.</p>
1387
1390
* @public
1388
1391
*/
1389
1392
fromProcStep ?: string ;
1390
1393
1391
1394
/**
1392
- * <p>The step name that a job was restarted to.</p>
1395
+ * <p>The step name that a batch job was restarted to.</p>
1393
1396
* @public
1394
1397
*/
1395
1398
toStep ?: string ;
@@ -1402,18 +1405,18 @@ export interface JobStepRestartMarker {
1402
1405
}
1403
1406
1404
1407
/**
1405
- * <p>An identifier for the StartBatchJob API to show that it is a restart operation.</p>
1408
+ * <p>An identifier for the <code> StartBatchJob</code> API to show that it is a restart operation.</p>
1406
1409
* @public
1407
1410
*/
1408
1411
export interface RestartBatchJobIdentifier {
1409
1412
/**
1410
- * <p>The executionId from the StartBatchJob response when the job ran for the first time.</p>
1413
+ * <p>The <code> executionId</code> from the <code> StartBatchJob</code> response when the job ran for the first time.</p>
1411
1414
* @public
1412
1415
*/
1413
1416
executionId : string | undefined ;
1414
1417
1415
1418
/**
1416
- * <p>The restart step information for the most recent restart operation.</p>
1419
+ * <p>The step/procedure step information for a restart batch job operation.</p>
1417
1420
* @public
1418
1421
*/
1419
1422
jobStepRestartMarker : JobStepRestartMarker | undefined ;
@@ -1564,7 +1567,7 @@ export namespace BatchJobIdentifier {
1564
1567
}
1565
1568
1566
1569
/**
1567
- * <p>Specifies the required information for restart, including execution ID and jobsteprestartmarker .</p>
1570
+ * <p>Specifies the required information for restart, including <code>executionId</code> and <code>JobStepRestartMarker</code> .</p>
1568
1571
* @public
1569
1572
*/
1570
1573
export interface RestartBatchJobIdentifierMember {
@@ -1722,7 +1725,7 @@ export interface GetBatchJobExecutionResponse {
1722
1725
batchJobIdentifier ?: BatchJobIdentifier ;
1723
1726
1724
1727
/**
1725
- * <p>The restart steps information for the most recent restart operation.</p>
1728
+ * <p>The step/procedure step information for the restart batch job operation.</p>
1726
1729
* @public
1727
1730
*/
1728
1731
jobStepRestartMarker ?: JobStepRestartMarker ;
@@ -2681,10 +2684,16 @@ export interface ListBatchJobRestartPointsRequest {
2681
2684
applicationId : string | undefined ;
2682
2685
2683
2686
/**
2684
- * <p>The unique identifier of each batch job execution.</p>
2687
+ * <p>The unique identifier of the batch job execution.</p>
2685
2688
* @public
2686
2689
*/
2687
2690
executionId : string | undefined ;
2691
+
2692
+ /**
2693
+ * <p>The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for List Batch Job Restart Points operation.</p>
2694
+ * @public
2695
+ */
2696
+ authSecretsManagerArn ?: string ;
2688
2697
}
2689
2698
2690
2699
/**
@@ -3043,6 +3052,12 @@ export interface StartBatchJobRequest {
3043
3052
* @public
3044
3053
*/
3045
3054
jobParams ?: Record < string , string > ;
3055
+
3056
+ /**
3057
+ * <p>The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for Start Batch Job execution operation.</p>
3058
+ * @public
3059
+ */
3060
+ authSecretsManagerArn ?: string ;
3046
3061
}
3047
3062
3048
3063
/**
@@ -3401,6 +3416,7 @@ export const EnvironmentLifecycle = {
3401
3416
CREATING : "Creating" ,
3402
3417
DELETING : "Deleting" ,
3403
3418
FAILED : "Failed" ,
3419
+ UNHEALTHY : "UnHealthy" ,
3404
3420
UPDATING : "Updating" ,
3405
3421
} as const ;
3406
3422
@@ -3444,7 +3460,8 @@ export interface GetEnvironmentResponse {
3444
3460
instanceType : string | undefined ;
3445
3461
3446
3462
/**
3447
- * <p>The status of the runtime environment.</p>
3463
+ * <p>The status of the runtime environment. If the Amazon Web Services Mainframe Modernization environment is missing a connection to
3464
+ * the customer owned dependent resource, the status will be <code>Unhealthy</code>.</p>
3448
3465
* @public
3449
3466
*/
3450
3467
status : EnvironmentLifecycle | undefined ;
0 commit comments