@aws-sdk/client-m2 3.131.0 → 3.137.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.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/commands/CancelBatchJobExecutionCommand.js +2 -2
- package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
- package/dist-cjs/commands/CreateDataSetImportTaskCommand.js +2 -2
- package/dist-cjs/commands/CreateDeploymentCommand.js +2 -2
- package/dist-cjs/commands/CreateEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -2
- package/dist-cjs/commands/DeleteApplicationFromEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/GetApplicationCommand.js +2 -2
- package/dist-cjs/commands/GetApplicationVersionCommand.js +2 -2
- package/dist-cjs/commands/GetBatchJobExecutionCommand.js +2 -2
- package/dist-cjs/commands/GetDataSetDetailsCommand.js +2 -2
- package/dist-cjs/commands/GetDataSetImportTaskCommand.js +2 -2
- package/dist-cjs/commands/GetDeploymentCommand.js +2 -2
- package/dist-cjs/commands/GetEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/ListApplicationVersionsCommand.js +2 -2
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -2
- package/dist-cjs/commands/ListBatchJobDefinitionsCommand.js +2 -2
- package/dist-cjs/commands/ListBatchJobExecutionsCommand.js +2 -2
- package/dist-cjs/commands/ListDataSetImportHistoryCommand.js +2 -2
- package/dist-cjs/commands/ListDataSetsCommand.js +2 -2
- package/dist-cjs/commands/ListDeploymentsCommand.js +2 -2
- package/dist-cjs/commands/ListEngineVersionsCommand.js +2 -2
- package/dist-cjs/commands/ListEnvironmentsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/StartApplicationCommand.js +2 -2
- package/dist-cjs/commands/StartBatchJobCommand.js +2 -2
- package/dist-cjs/commands/StopApplicationCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
- package/dist-cjs/commands/UpdateEnvironmentCommand.js +2 -2
- package/dist-cjs/models/models_0.js +466 -648
- package/dist-es/commands/CancelBatchJobExecutionCommand.js +3 -3
- package/dist-es/commands/CreateApplicationCommand.js +3 -3
- package/dist-es/commands/CreateDataSetImportTaskCommand.js +3 -3
- package/dist-es/commands/CreateDeploymentCommand.js +3 -3
- package/dist-es/commands/CreateEnvironmentCommand.js +3 -3
- package/dist-es/commands/DeleteApplicationCommand.js +3 -3
- package/dist-es/commands/DeleteApplicationFromEnvironmentCommand.js +3 -3
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -3
- package/dist-es/commands/GetApplicationCommand.js +3 -3
- package/dist-es/commands/GetApplicationVersionCommand.js +3 -3
- package/dist-es/commands/GetBatchJobExecutionCommand.js +3 -3
- package/dist-es/commands/GetDataSetDetailsCommand.js +3 -3
- package/dist-es/commands/GetDataSetImportTaskCommand.js +3 -3
- package/dist-es/commands/GetDeploymentCommand.js +3 -3
- package/dist-es/commands/GetEnvironmentCommand.js +3 -3
- package/dist-es/commands/ListApplicationVersionsCommand.js +3 -3
- package/dist-es/commands/ListApplicationsCommand.js +3 -3
- package/dist-es/commands/ListBatchJobDefinitionsCommand.js +3 -3
- package/dist-es/commands/ListBatchJobExecutionsCommand.js +3 -3
- package/dist-es/commands/ListDataSetImportHistoryCommand.js +3 -3
- package/dist-es/commands/ListDataSetsCommand.js +3 -3
- package/dist-es/commands/ListDeploymentsCommand.js +3 -3
- package/dist-es/commands/ListEngineVersionsCommand.js +3 -3
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/StartApplicationCommand.js +3 -3
- package/dist-es/commands/StartBatchJobCommand.js +3 -3
- package/dist-es/commands/StopApplicationCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateApplicationCommand.js +3 -3
- package/dist-es/commands/UpdateEnvironmentCommand.js +3 -3
- package/dist-es/models/models_0.js +170 -454
- package/dist-types/models/models_0.d.ts +408 -596
- package/dist-types/ts3.4/models/models_0.d.ts +204 -392
- package/package.json +6 -6
|
@@ -36,12 +36,6 @@ export interface AlternateKey {
|
|
|
36
36
|
*/
|
|
37
37
|
allowDuplicates?: boolean;
|
|
38
38
|
}
|
|
39
|
-
export declare namespace AlternateKey {
|
|
40
|
-
/**
|
|
41
|
-
* @internal
|
|
42
|
-
*/
|
|
43
|
-
const filterSensitiveLog: (obj: AlternateKey) => any;
|
|
44
|
-
}
|
|
45
39
|
export interface CancelBatchJobExecutionRequest {
|
|
46
40
|
/**
|
|
47
41
|
* <p>The unique identifier of the application.</p>
|
|
@@ -52,20 +46,8 @@ export interface CancelBatchJobExecutionRequest {
|
|
|
52
46
|
*/
|
|
53
47
|
executionId: string | undefined;
|
|
54
48
|
}
|
|
55
|
-
export declare namespace CancelBatchJobExecutionRequest {
|
|
56
|
-
/**
|
|
57
|
-
* @internal
|
|
58
|
-
*/
|
|
59
|
-
const filterSensitiveLog: (obj: CancelBatchJobExecutionRequest) => any;
|
|
60
|
-
}
|
|
61
49
|
export interface CancelBatchJobExecutionResponse {
|
|
62
50
|
}
|
|
63
|
-
export declare namespace CancelBatchJobExecutionResponse {
|
|
64
|
-
/**
|
|
65
|
-
* @internal
|
|
66
|
-
*/
|
|
67
|
-
const filterSensitiveLog: (obj: CancelBatchJobExecutionResponse) => any;
|
|
68
|
-
}
|
|
69
51
|
/**
|
|
70
52
|
* <p>The parameters provided in the request conflict with existing resources.</p>
|
|
71
53
|
*/
|
|
@@ -159,12 +141,6 @@ export interface ValidationExceptionField {
|
|
|
159
141
|
*/
|
|
160
142
|
message: string | undefined;
|
|
161
143
|
}
|
|
162
|
-
export declare namespace ValidationExceptionField {
|
|
163
|
-
/**
|
|
164
|
-
* @internal
|
|
165
|
-
*/
|
|
166
|
-
const filterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
167
|
-
}
|
|
168
144
|
export declare enum ValidationExceptionReason {
|
|
169
145
|
CANNOT_PARSE = "cannotParse",
|
|
170
146
|
FIELD_VALIDATION_FAILED = "fieldValidationFailed",
|
|
@@ -223,10 +199,6 @@ export declare namespace Definition {
|
|
|
223
199
|
_: (name: string, value: any) => T;
|
|
224
200
|
}
|
|
225
201
|
const visit: <T>(value: Definition, visitor: Visitor<T>) => T;
|
|
226
|
-
/**
|
|
227
|
-
* @internal
|
|
228
|
-
*/
|
|
229
|
-
const filterSensitiveLog: (obj: Definition) => any;
|
|
230
202
|
}
|
|
231
203
|
export declare enum EngineType {
|
|
232
204
|
BLUAGE = "bluage",
|
|
@@ -263,12 +235,6 @@ export interface CreateApplicationRequest {
|
|
|
263
235
|
*/
|
|
264
236
|
clientToken?: string;
|
|
265
237
|
}
|
|
266
|
-
export declare namespace CreateApplicationRequest {
|
|
267
|
-
/**
|
|
268
|
-
* @internal
|
|
269
|
-
*/
|
|
270
|
-
const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
271
|
-
}
|
|
272
238
|
export interface CreateApplicationResponse {
|
|
273
239
|
/**
|
|
274
240
|
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
@@ -283,12 +249,6 @@ export interface CreateApplicationResponse {
|
|
|
283
249
|
*/
|
|
284
250
|
applicationVersion: number | undefined;
|
|
285
251
|
}
|
|
286
|
-
export declare namespace CreateApplicationResponse {
|
|
287
|
-
/**
|
|
288
|
-
* @internal
|
|
289
|
-
*/
|
|
290
|
-
const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
291
|
-
}
|
|
292
252
|
/**
|
|
293
253
|
* <p>One or more quotas for Amazon Web Services Mainframe Modernization exceeds the limit.</p>
|
|
294
254
|
*/
|
|
@@ -333,12 +293,6 @@ export interface GdgAttributes {
|
|
|
333
293
|
*/
|
|
334
294
|
rollDisposition?: string;
|
|
335
295
|
}
|
|
336
|
-
export declare namespace GdgAttributes {
|
|
337
|
-
/**
|
|
338
|
-
* @internal
|
|
339
|
-
*/
|
|
340
|
-
const filterSensitiveLog: (obj: GdgAttributes) => any;
|
|
341
|
-
}
|
|
342
296
|
/**
|
|
343
297
|
* <p>The primary key for a KSDS data set.</p>
|
|
344
298
|
*/
|
|
@@ -357,12 +311,6 @@ export interface PrimaryKey {
|
|
|
357
311
|
*/
|
|
358
312
|
length: number | undefined;
|
|
359
313
|
}
|
|
360
|
-
export declare namespace PrimaryKey {
|
|
361
|
-
/**
|
|
362
|
-
* @internal
|
|
363
|
-
*/
|
|
364
|
-
const filterSensitiveLog: (obj: PrimaryKey) => any;
|
|
365
|
-
}
|
|
366
314
|
/**
|
|
367
315
|
* <p>The attributes of a VSAM type data set.</p>
|
|
368
316
|
*/
|
|
@@ -391,12 +339,6 @@ export interface VsamAttributes {
|
|
|
391
339
|
*/
|
|
392
340
|
alternateKeys?: AlternateKey[];
|
|
393
341
|
}
|
|
394
|
-
export declare namespace VsamAttributes {
|
|
395
|
-
/**
|
|
396
|
-
* @internal
|
|
397
|
-
*/
|
|
398
|
-
const filterSensitiveLog: (obj: VsamAttributes) => any;
|
|
399
|
-
}
|
|
400
342
|
/**
|
|
401
343
|
* <p>Additional details about the data set. Different attributes correspond to different data
|
|
402
344
|
* set organizations. The values are populated based on datasetOrg, storageType and backend
|
|
@@ -431,10 +373,6 @@ export declare namespace DatasetOrgAttributes {
|
|
|
431
373
|
_: (name: string, value: any) => T;
|
|
432
374
|
}
|
|
433
375
|
const visit: <T>(value: DatasetOrgAttributes, visitor: Visitor<T>) => T;
|
|
434
|
-
/**
|
|
435
|
-
* @internal
|
|
436
|
-
*/
|
|
437
|
-
const filterSensitiveLog: (obj: DatasetOrgAttributes) => any;
|
|
438
376
|
}
|
|
439
377
|
/**
|
|
440
378
|
* <p>The length of the records in the data set.</p>
|
|
@@ -450,12 +388,6 @@ export interface RecordLength {
|
|
|
450
388
|
*/
|
|
451
389
|
max: number | undefined;
|
|
452
390
|
}
|
|
453
|
-
export declare namespace RecordLength {
|
|
454
|
-
/**
|
|
455
|
-
* @internal
|
|
456
|
-
*/
|
|
457
|
-
const filterSensitiveLog: (obj: RecordLength) => any;
|
|
458
|
-
}
|
|
459
391
|
/**
|
|
460
392
|
* <p>Defines a data set.</p>
|
|
461
393
|
*/
|
|
@@ -484,12 +416,6 @@ export interface DataSet {
|
|
|
484
416
|
*/
|
|
485
417
|
recordLength: RecordLength | undefined;
|
|
486
418
|
}
|
|
487
|
-
export declare namespace DataSet {
|
|
488
|
-
/**
|
|
489
|
-
* @internal
|
|
490
|
-
*/
|
|
491
|
-
const filterSensitiveLog: (obj: DataSet) => any;
|
|
492
|
-
}
|
|
493
419
|
/**
|
|
494
420
|
* <p>Defines an external storage location.</p>
|
|
495
421
|
*/
|
|
@@ -511,10 +437,6 @@ export declare namespace ExternalLocation {
|
|
|
511
437
|
_: (name: string, value: any) => T;
|
|
512
438
|
}
|
|
513
439
|
const visit: <T>(value: ExternalLocation, visitor: Visitor<T>) => T;
|
|
514
|
-
/**
|
|
515
|
-
* @internal
|
|
516
|
-
*/
|
|
517
|
-
const filterSensitiveLog: (obj: ExternalLocation) => any;
|
|
518
440
|
}
|
|
519
441
|
/**
|
|
520
442
|
* <p>Identifies a specific data set to import from an external location.</p>
|
|
@@ -529,12 +451,6 @@ export interface DataSetImportItem {
|
|
|
529
451
|
*/
|
|
530
452
|
externalLocation: ExternalLocation | undefined;
|
|
531
453
|
}
|
|
532
|
-
export declare namespace DataSetImportItem {
|
|
533
|
-
/**
|
|
534
|
-
* @internal
|
|
535
|
-
*/
|
|
536
|
-
const filterSensitiveLog: (obj: DataSetImportItem) => any;
|
|
537
|
-
}
|
|
538
454
|
/**
|
|
539
455
|
* <p>Identifies one or more data sets you want to import with the <a>CreateDataSetImportTask</a> operation.</p>
|
|
540
456
|
*/
|
|
@@ -567,10 +483,6 @@ export declare namespace DataSetImportConfig {
|
|
|
567
483
|
_: (name: string, value: any) => T;
|
|
568
484
|
}
|
|
569
485
|
const visit: <T>(value: DataSetImportConfig, visitor: Visitor<T>) => T;
|
|
570
|
-
/**
|
|
571
|
-
* @internal
|
|
572
|
-
*/
|
|
573
|
-
const filterSensitiveLog: (obj: DataSetImportConfig) => any;
|
|
574
486
|
}
|
|
575
487
|
export interface CreateDataSetImportTaskRequest {
|
|
576
488
|
/**
|
|
@@ -590,24 +502,12 @@ export interface CreateDataSetImportTaskRequest {
|
|
|
590
502
|
*/
|
|
591
503
|
clientToken?: string;
|
|
592
504
|
}
|
|
593
|
-
export declare namespace CreateDataSetImportTaskRequest {
|
|
594
|
-
/**
|
|
595
|
-
* @internal
|
|
596
|
-
*/
|
|
597
|
-
const filterSensitiveLog: (obj: CreateDataSetImportTaskRequest) => any;
|
|
598
|
-
}
|
|
599
505
|
export interface CreateDataSetImportTaskResponse {
|
|
600
506
|
/**
|
|
601
507
|
* <p>The task identifier. This operation is asynchronous. Use this identifier with the <a>GetDataSetImportTask</a> operation to obtain the status of this task.</p>
|
|
602
508
|
*/
|
|
603
509
|
taskId: string | undefined;
|
|
604
510
|
}
|
|
605
|
-
export declare namespace CreateDataSetImportTaskResponse {
|
|
606
|
-
/**
|
|
607
|
-
* @internal
|
|
608
|
-
*/
|
|
609
|
-
const filterSensitiveLog: (obj: CreateDataSetImportTaskResponse) => any;
|
|
610
|
-
}
|
|
611
511
|
export interface CreateDeploymentRequest {
|
|
612
512
|
/**
|
|
613
513
|
* <p>The identifier of the environment where this application will be deployed.</p>
|
|
@@ -630,44 +530,20 @@ export interface CreateDeploymentRequest {
|
|
|
630
530
|
*/
|
|
631
531
|
clientToken?: string;
|
|
632
532
|
}
|
|
633
|
-
export declare namespace CreateDeploymentRequest {
|
|
634
|
-
/**
|
|
635
|
-
* @internal
|
|
636
|
-
*/
|
|
637
|
-
const filterSensitiveLog: (obj: CreateDeploymentRequest) => any;
|
|
638
|
-
}
|
|
639
533
|
export interface CreateDeploymentResponse {
|
|
640
534
|
/**
|
|
641
535
|
* <p>The unique identifier of the deployment.</p>
|
|
642
536
|
*/
|
|
643
537
|
deploymentId: string | undefined;
|
|
644
538
|
}
|
|
645
|
-
export declare namespace CreateDeploymentResponse {
|
|
646
|
-
/**
|
|
647
|
-
* @internal
|
|
648
|
-
*/
|
|
649
|
-
const filterSensitiveLog: (obj: CreateDeploymentResponse) => any;
|
|
650
|
-
}
|
|
651
539
|
export interface DeleteApplicationRequest {
|
|
652
540
|
/**
|
|
653
541
|
* <p>The unique identifier of the application you want to delete.</p>
|
|
654
542
|
*/
|
|
655
543
|
applicationId: string | undefined;
|
|
656
544
|
}
|
|
657
|
-
export declare namespace DeleteApplicationRequest {
|
|
658
|
-
/**
|
|
659
|
-
* @internal
|
|
660
|
-
*/
|
|
661
|
-
const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
|
|
662
|
-
}
|
|
663
545
|
export interface DeleteApplicationResponse {
|
|
664
546
|
}
|
|
665
|
-
export declare namespace DeleteApplicationResponse {
|
|
666
|
-
/**
|
|
667
|
-
* @internal
|
|
668
|
-
*/
|
|
669
|
-
const filterSensitiveLog: (obj: DeleteApplicationResponse) => any;
|
|
670
|
-
}
|
|
671
547
|
export interface DeleteApplicationFromEnvironmentRequest {
|
|
672
548
|
/**
|
|
673
549
|
* <p>The unique identifier of the application you want to delete.</p>
|
|
@@ -679,32 +555,14 @@ export interface DeleteApplicationFromEnvironmentRequest {
|
|
|
679
555
|
*/
|
|
680
556
|
environmentId: string | undefined;
|
|
681
557
|
}
|
|
682
|
-
export declare namespace DeleteApplicationFromEnvironmentRequest {
|
|
683
|
-
/**
|
|
684
|
-
* @internal
|
|
685
|
-
*/
|
|
686
|
-
const filterSensitiveLog: (obj: DeleteApplicationFromEnvironmentRequest) => any;
|
|
687
|
-
}
|
|
688
558
|
export interface DeleteApplicationFromEnvironmentResponse {
|
|
689
559
|
}
|
|
690
|
-
export declare namespace DeleteApplicationFromEnvironmentResponse {
|
|
691
|
-
/**
|
|
692
|
-
* @internal
|
|
693
|
-
*/
|
|
694
|
-
const filterSensitiveLog: (obj: DeleteApplicationFromEnvironmentResponse) => any;
|
|
695
|
-
}
|
|
696
560
|
export interface GetApplicationRequest {
|
|
697
561
|
/**
|
|
698
562
|
* <p>The identifier of the application.</p>
|
|
699
563
|
*/
|
|
700
564
|
applicationId: string | undefined;
|
|
701
565
|
}
|
|
702
|
-
export declare namespace GetApplicationRequest {
|
|
703
|
-
/**
|
|
704
|
-
* @internal
|
|
705
|
-
*/
|
|
706
|
-
const filterSensitiveLog: (obj: GetApplicationRequest) => any;
|
|
707
|
-
}
|
|
708
566
|
export declare enum DeploymentLifecycle {
|
|
709
567
|
DEPLOYING = "Deploying",
|
|
710
568
|
FAILED = "Failed",
|
|
@@ -727,12 +585,6 @@ export interface DeployedVersionSummary {
|
|
|
727
585
|
*/
|
|
728
586
|
statusReason?: string;
|
|
729
587
|
}
|
|
730
|
-
export declare namespace DeployedVersionSummary {
|
|
731
|
-
/**
|
|
732
|
-
* @internal
|
|
733
|
-
*/
|
|
734
|
-
const filterSensitiveLog: (obj: DeployedVersionSummary) => any;
|
|
735
|
-
}
|
|
736
588
|
export declare enum ApplicationVersionLifecycle {
|
|
737
589
|
AVAILABLE = "Available",
|
|
738
590
|
CREATING = "Creating",
|
|
@@ -759,12 +611,6 @@ export interface ApplicationVersionSummary {
|
|
|
759
611
|
*/
|
|
760
612
|
creationTime: Date | undefined;
|
|
761
613
|
}
|
|
762
|
-
export declare namespace ApplicationVersionSummary {
|
|
763
|
-
/**
|
|
764
|
-
* @internal
|
|
765
|
-
*/
|
|
766
|
-
const filterSensitiveLog: (obj: ApplicationVersionSummary) => any;
|
|
767
|
-
}
|
|
768
614
|
/**
|
|
769
615
|
* <p>A subset of the attributes about a log group. In CloudWatch a log group is a group of log
|
|
770
616
|
* streams that share the same retention, monitoring, and access control settings.</p>
|
|
@@ -779,12 +625,6 @@ export interface LogGroupSummary {
|
|
|
779
625
|
*/
|
|
780
626
|
logGroupName: string | undefined;
|
|
781
627
|
}
|
|
782
|
-
export declare namespace LogGroupSummary {
|
|
783
|
-
/**
|
|
784
|
-
* @internal
|
|
785
|
-
*/
|
|
786
|
-
const filterSensitiveLog: (obj: LogGroupSummary) => any;
|
|
787
|
-
}
|
|
788
628
|
export declare enum ApplicationLifecycle {
|
|
789
629
|
AVAILABLE = "Available",
|
|
790
630
|
CREATED = "Created",
|
|
@@ -878,12 +718,6 @@ export interface GetApplicationResponse {
|
|
|
878
718
|
*/
|
|
879
719
|
statusReason?: string;
|
|
880
720
|
}
|
|
881
|
-
export declare namespace GetApplicationResponse {
|
|
882
|
-
/**
|
|
883
|
-
* @internal
|
|
884
|
-
*/
|
|
885
|
-
const filterSensitiveLog: (obj: GetApplicationResponse) => any;
|
|
886
|
-
}
|
|
887
721
|
export interface GetApplicationVersionRequest {
|
|
888
722
|
/**
|
|
889
723
|
* <p>The unique identifier of the application.</p>
|
|
@@ -894,12 +728,6 @@ export interface GetApplicationVersionRequest {
|
|
|
894
728
|
*/
|
|
895
729
|
applicationVersion: number | undefined;
|
|
896
730
|
}
|
|
897
|
-
export declare namespace GetApplicationVersionRequest {
|
|
898
|
-
/**
|
|
899
|
-
* @internal
|
|
900
|
-
*/
|
|
901
|
-
const filterSensitiveLog: (obj: GetApplicationVersionRequest) => any;
|
|
902
|
-
}
|
|
903
731
|
export interface GetApplicationVersionResponse {
|
|
904
732
|
/**
|
|
905
733
|
* <p>The name of the application version.</p>
|
|
@@ -931,12 +759,6 @@ export interface GetApplicationVersionResponse {
|
|
|
931
759
|
*/
|
|
932
760
|
statusReason?: string;
|
|
933
761
|
}
|
|
934
|
-
export declare namespace GetApplicationVersionResponse {
|
|
935
|
-
/**
|
|
936
|
-
* @internal
|
|
937
|
-
*/
|
|
938
|
-
const filterSensitiveLog: (obj: GetApplicationVersionResponse) => any;
|
|
939
|
-
}
|
|
940
762
|
export interface GetBatchJobExecutionRequest {
|
|
941
763
|
/**
|
|
942
764
|
* <p>The identifier of the application.</p>
|
|
@@ -947,12 +769,6 @@ export interface GetBatchJobExecutionRequest {
|
|
|
947
769
|
*/
|
|
948
770
|
executionId: string | undefined;
|
|
949
771
|
}
|
|
950
|
-
export declare namespace GetBatchJobExecutionRequest {
|
|
951
|
-
/**
|
|
952
|
-
* @internal
|
|
953
|
-
*/
|
|
954
|
-
const filterSensitiveLog: (obj: GetBatchJobExecutionRequest) => any;
|
|
955
|
-
}
|
|
956
772
|
export declare enum BatchJobType {
|
|
957
773
|
JES2 = "JES2",
|
|
958
774
|
JES3 = "JES3",
|
|
@@ -1011,12 +827,6 @@ export interface GetBatchJobExecutionResponse {
|
|
|
1011
827
|
*/
|
|
1012
828
|
statusReason?: string;
|
|
1013
829
|
}
|
|
1014
|
-
export declare namespace GetBatchJobExecutionResponse {
|
|
1015
|
-
/**
|
|
1016
|
-
* @internal
|
|
1017
|
-
*/
|
|
1018
|
-
const filterSensitiveLog: (obj: GetBatchJobExecutionResponse) => any;
|
|
1019
|
-
}
|
|
1020
830
|
export interface GetDataSetDetailsRequest {
|
|
1021
831
|
/**
|
|
1022
832
|
* <p>The unique identifier of the application that this data set is associated with.</p>
|
|
@@ -1027,12 +837,6 @@ export interface GetDataSetDetailsRequest {
|
|
|
1027
837
|
*/
|
|
1028
838
|
dataSetName: string | undefined;
|
|
1029
839
|
}
|
|
1030
|
-
export declare namespace GetDataSetDetailsRequest {
|
|
1031
|
-
/**
|
|
1032
|
-
* @internal
|
|
1033
|
-
*/
|
|
1034
|
-
const filterSensitiveLog: (obj: GetDataSetDetailsRequest) => any;
|
|
1035
|
-
}
|
|
1036
840
|
/**
|
|
1037
841
|
* <p>The required attributes for a generation data group data set. A generation data set is
|
|
1038
842
|
* one of a collection of successive, historically related, catalogued data sets that together
|
|
@@ -1050,12 +854,6 @@ export interface GdgDetailAttributes {
|
|
|
1050
854
|
*/
|
|
1051
855
|
rollDisposition?: string;
|
|
1052
856
|
}
|
|
1053
|
-
export declare namespace GdgDetailAttributes {
|
|
1054
|
-
/**
|
|
1055
|
-
* @internal
|
|
1056
|
-
*/
|
|
1057
|
-
const filterSensitiveLog: (obj: GdgDetailAttributes) => any;
|
|
1058
|
-
}
|
|
1059
857
|
/**
|
|
1060
858
|
* <p>The attributes of a VSAM type data set.</p>
|
|
1061
859
|
*/
|
|
@@ -1089,12 +887,6 @@ export interface VsamDetailAttributes {
|
|
|
1089
887
|
*/
|
|
1090
888
|
alternateKeys?: AlternateKey[];
|
|
1091
889
|
}
|
|
1092
|
-
export declare namespace VsamDetailAttributes {
|
|
1093
|
-
/**
|
|
1094
|
-
* @internal
|
|
1095
|
-
*/
|
|
1096
|
-
const filterSensitiveLog: (obj: VsamDetailAttributes) => any;
|
|
1097
|
-
}
|
|
1098
890
|
/**
|
|
1099
891
|
* <p>Additional details about the data set. Different attributes correspond to different data
|
|
1100
892
|
* set organizations. The values are populated based on datasetOrg, storageType and backend
|
|
@@ -1129,10 +921,6 @@ export declare namespace DatasetDetailOrgAttributes {
|
|
|
1129
921
|
_: (name: string, value: any) => T;
|
|
1130
922
|
}
|
|
1131
923
|
const visit: <T>(value: DatasetDetailOrgAttributes, visitor: Visitor<T>) => T;
|
|
1132
|
-
/**
|
|
1133
|
-
* @internal
|
|
1134
|
-
*/
|
|
1135
|
-
const filterSensitiveLog: (obj: DatasetDetailOrgAttributes) => any;
|
|
1136
924
|
}
|
|
1137
925
|
export interface GetDataSetDetailsResponse {
|
|
1138
926
|
/**
|
|
@@ -1169,12 +957,6 @@ export interface GetDataSetDetailsResponse {
|
|
|
1169
957
|
*/
|
|
1170
958
|
lastReferencedTime?: Date;
|
|
1171
959
|
}
|
|
1172
|
-
export declare namespace GetDataSetDetailsResponse {
|
|
1173
|
-
/**
|
|
1174
|
-
* @internal
|
|
1175
|
-
*/
|
|
1176
|
-
const filterSensitiveLog: (obj: GetDataSetDetailsResponse) => any;
|
|
1177
|
-
}
|
|
1178
960
|
export interface GetDataSetImportTaskRequest {
|
|
1179
961
|
/**
|
|
1180
962
|
* <p>The application identifier.</p>
|
|
@@ -1186,12 +968,6 @@ export interface GetDataSetImportTaskRequest {
|
|
|
1186
968
|
*/
|
|
1187
969
|
taskId: string | undefined;
|
|
1188
970
|
}
|
|
1189
|
-
export declare namespace GetDataSetImportTaskRequest {
|
|
1190
|
-
/**
|
|
1191
|
-
* @internal
|
|
1192
|
-
*/
|
|
1193
|
-
const filterSensitiveLog: (obj: GetDataSetImportTaskRequest) => any;
|
|
1194
|
-
}
|
|
1195
971
|
export declare enum DataSetTaskLifecycle {
|
|
1196
972
|
COMPLETED = "Completed",
|
|
1197
973
|
CREATING = "Creating",
|
|
@@ -1222,12 +998,6 @@ export interface DataSetImportSummary {
|
|
|
1222
998
|
*/
|
|
1223
999
|
inProgress: number | undefined;
|
|
1224
1000
|
}
|
|
1225
|
-
export declare namespace DataSetImportSummary {
|
|
1226
|
-
/**
|
|
1227
|
-
* @internal
|
|
1228
|
-
*/
|
|
1229
|
-
const filterSensitiveLog: (obj: DataSetImportSummary) => any;
|
|
1230
|
-
}
|
|
1231
1001
|
export interface GetDataSetImportTaskResponse {
|
|
1232
1002
|
/**
|
|
1233
1003
|
* <p>The task identifier.</p>
|
|
@@ -1242,12 +1012,6 @@ export interface GetDataSetImportTaskResponse {
|
|
|
1242
1012
|
*/
|
|
1243
1013
|
summary?: DataSetImportSummary;
|
|
1244
1014
|
}
|
|
1245
|
-
export declare namespace GetDataSetImportTaskResponse {
|
|
1246
|
-
/**
|
|
1247
|
-
* @internal
|
|
1248
|
-
*/
|
|
1249
|
-
const filterSensitiveLog: (obj: GetDataSetImportTaskResponse) => any;
|
|
1250
|
-
}
|
|
1251
1015
|
export interface GetDeploymentRequest {
|
|
1252
1016
|
/**
|
|
1253
1017
|
* <p>The unique identifier for the deployment.</p>
|
|
@@ -1258,12 +1022,6 @@ export interface GetDeploymentRequest {
|
|
|
1258
1022
|
*/
|
|
1259
1023
|
applicationId: string | undefined;
|
|
1260
1024
|
}
|
|
1261
|
-
export declare namespace GetDeploymentRequest {
|
|
1262
|
-
/**
|
|
1263
|
-
* @internal
|
|
1264
|
-
*/
|
|
1265
|
-
const filterSensitiveLog: (obj: GetDeploymentRequest) => any;
|
|
1266
|
-
}
|
|
1267
1025
|
export interface GetDeploymentResponse {
|
|
1268
1026
|
/**
|
|
1269
1027
|
* <p>The unique identifier of the deployment.</p>
|
|
@@ -1294,12 +1052,6 @@ export interface GetDeploymentResponse {
|
|
|
1294
1052
|
*/
|
|
1295
1053
|
statusReason?: string;
|
|
1296
1054
|
}
|
|
1297
|
-
export declare namespace GetDeploymentResponse {
|
|
1298
|
-
/**
|
|
1299
|
-
* @internal
|
|
1300
|
-
*/
|
|
1301
|
-
const filterSensitiveLog: (obj: GetDeploymentResponse) => any;
|
|
1302
|
-
}
|
|
1303
1055
|
export interface ListApplicationsRequest {
|
|
1304
1056
|
/**
|
|
1305
1057
|
* <p>A pagination token to control the number of applications displayed in the list.</p>
|
|
@@ -1319,12 +1071,6 @@ export interface ListApplicationsRequest {
|
|
|
1319
1071
|
*/
|
|
1320
1072
|
environmentId?: string;
|
|
1321
1073
|
}
|
|
1322
|
-
export declare namespace ListApplicationsRequest {
|
|
1323
|
-
/**
|
|
1324
|
-
* @internal
|
|
1325
|
-
*/
|
|
1326
|
-
const filterSensitiveLog: (obj: ListApplicationsRequest) => any;
|
|
1327
|
-
}
|
|
1328
1074
|
export declare enum ApplicationDeploymentLifecycle {
|
|
1329
1075
|
DEPLOYED = "Deployed",
|
|
1330
1076
|
DEPLOYING = "Deploying"
|
|
@@ -1384,12 +1130,6 @@ export interface ApplicationSummary {
|
|
|
1384
1130
|
*/
|
|
1385
1131
|
deploymentStatus?: ApplicationDeploymentLifecycle | string;
|
|
1386
1132
|
}
|
|
1387
|
-
export declare namespace ApplicationSummary {
|
|
1388
|
-
/**
|
|
1389
|
-
* @internal
|
|
1390
|
-
*/
|
|
1391
|
-
const filterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
1392
|
-
}
|
|
1393
1133
|
export interface ListApplicationsResponse {
|
|
1394
1134
|
/**
|
|
1395
1135
|
* <p>Returns a list of summary details for all the applications in an environment.</p>
|
|
@@ -1401,12 +1141,6 @@ export interface ListApplicationsResponse {
|
|
|
1401
1141
|
*/
|
|
1402
1142
|
nextToken?: string;
|
|
1403
1143
|
}
|
|
1404
|
-
export declare namespace ListApplicationsResponse {
|
|
1405
|
-
/**
|
|
1406
|
-
* @internal
|
|
1407
|
-
*/
|
|
1408
|
-
const filterSensitiveLog: (obj: ListApplicationsResponse) => any;
|
|
1409
|
-
}
|
|
1410
1144
|
export interface ListApplicationVersionsRequest {
|
|
1411
1145
|
/**
|
|
1412
1146
|
* <p>A pagination token returned from a previous call to
|
|
@@ -1423,12 +1157,6 @@ export interface ListApplicationVersionsRequest {
|
|
|
1423
1157
|
*/
|
|
1424
1158
|
applicationId: string | undefined;
|
|
1425
1159
|
}
|
|
1426
|
-
export declare namespace ListApplicationVersionsRequest {
|
|
1427
|
-
/**
|
|
1428
|
-
* @internal
|
|
1429
|
-
*/
|
|
1430
|
-
const filterSensitiveLog: (obj: ListApplicationVersionsRequest) => any;
|
|
1431
|
-
}
|
|
1432
1160
|
export interface ListApplicationVersionsResponse {
|
|
1433
1161
|
/**
|
|
1434
1162
|
* <p>The list of application versions.</p>
|
|
@@ -1440,12 +1168,6 @@ export interface ListApplicationVersionsResponse {
|
|
|
1440
1168
|
*/
|
|
1441
1169
|
nextToken?: string;
|
|
1442
1170
|
}
|
|
1443
|
-
export declare namespace ListApplicationVersionsResponse {
|
|
1444
|
-
/**
|
|
1445
|
-
* @internal
|
|
1446
|
-
*/
|
|
1447
|
-
const filterSensitiveLog: (obj: ListApplicationVersionsResponse) => any;
|
|
1448
|
-
}
|
|
1449
1171
|
export interface ListBatchJobDefinitionsRequest {
|
|
1450
1172
|
/**
|
|
1451
1173
|
* <p>A pagination token returned from a previous call to
|
|
@@ -1467,12 +1189,6 @@ export interface ListBatchJobDefinitionsRequest {
|
|
|
1467
1189
|
*/
|
|
1468
1190
|
prefix?: string;
|
|
1469
1191
|
}
|
|
1470
|
-
export declare namespace ListBatchJobDefinitionsRequest {
|
|
1471
|
-
/**
|
|
1472
|
-
* @internal
|
|
1473
|
-
*/
|
|
1474
|
-
const filterSensitiveLog: (obj: ListBatchJobDefinitionsRequest) => any;
|
|
1475
|
-
}
|
|
1476
1192
|
/**
|
|
1477
1193
|
* <p>A file containing a batch job definition.</p>
|
|
1478
1194
|
*/
|
|
@@ -1486,12 +1202,6 @@ export interface FileBatchJobDefinition {
|
|
|
1486
1202
|
*/
|
|
1487
1203
|
folderPath?: string;
|
|
1488
1204
|
}
|
|
1489
|
-
export declare namespace FileBatchJobDefinition {
|
|
1490
|
-
/**
|
|
1491
|
-
* @internal
|
|
1492
|
-
*/
|
|
1493
|
-
const filterSensitiveLog: (obj: FileBatchJobDefinition) => any;
|
|
1494
|
-
}
|
|
1495
1205
|
/**
|
|
1496
1206
|
* <p>A batch job definition contained in a script.</p>
|
|
1497
1207
|
*/
|
|
@@ -1501,12 +1211,6 @@ export interface ScriptBatchJobDefinition {
|
|
|
1501
1211
|
*/
|
|
1502
1212
|
scriptName: string | undefined;
|
|
1503
1213
|
}
|
|
1504
|
-
export declare namespace ScriptBatchJobDefinition {
|
|
1505
|
-
/**
|
|
1506
|
-
* @internal
|
|
1507
|
-
*/
|
|
1508
|
-
const filterSensitiveLog: (obj: ScriptBatchJobDefinition) => any;
|
|
1509
|
-
}
|
|
1510
1214
|
/**
|
|
1511
1215
|
* <p>Defines the details of a batch job.</p>
|
|
1512
1216
|
*/
|
|
@@ -1539,10 +1243,6 @@ export declare namespace BatchJobDefinition {
|
|
|
1539
1243
|
_: (name: string, value: any) => T;
|
|
1540
1244
|
}
|
|
1541
1245
|
const visit: <T>(value: BatchJobDefinition, visitor: Visitor<T>) => T;
|
|
1542
|
-
/**
|
|
1543
|
-
* @internal
|
|
1544
|
-
*/
|
|
1545
|
-
const filterSensitiveLog: (obj: BatchJobDefinition) => any;
|
|
1546
1246
|
}
|
|
1547
1247
|
export interface ListBatchJobDefinitionsResponse {
|
|
1548
1248
|
/**
|
|
@@ -1555,12 +1255,6 @@ export interface ListBatchJobDefinitionsResponse {
|
|
|
1555
1255
|
*/
|
|
1556
1256
|
nextToken?: string;
|
|
1557
1257
|
}
|
|
1558
|
-
export declare namespace ListBatchJobDefinitionsResponse {
|
|
1559
|
-
/**
|
|
1560
|
-
* @internal
|
|
1561
|
-
*/
|
|
1562
|
-
const filterSensitiveLog: (obj: ListBatchJobDefinitionsResponse) => any;
|
|
1563
|
-
}
|
|
1564
1258
|
export interface ListBatchJobExecutionsRequest {
|
|
1565
1259
|
/**
|
|
1566
1260
|
* <p>A pagination token to control the number of batch job executions displayed in the
|
|
@@ -1596,12 +1290,6 @@ export interface ListBatchJobExecutionsRequest {
|
|
|
1596
1290
|
*/
|
|
1597
1291
|
startedBefore?: Date;
|
|
1598
1292
|
}
|
|
1599
|
-
export declare namespace ListBatchJobExecutionsRequest {
|
|
1600
|
-
/**
|
|
1601
|
-
* @internal
|
|
1602
|
-
*/
|
|
1603
|
-
const filterSensitiveLog: (obj: ListBatchJobExecutionsRequest) => any;
|
|
1604
|
-
}
|
|
1605
1293
|
/**
|
|
1606
1294
|
* <p>A subset of the possible batch job attributes. Used in the batch job list.</p>
|
|
1607
1295
|
*/
|
|
@@ -1639,12 +1327,6 @@ export interface BatchJobExecutionSummary {
|
|
|
1639
1327
|
*/
|
|
1640
1328
|
endTime?: Date;
|
|
1641
1329
|
}
|
|
1642
|
-
export declare namespace BatchJobExecutionSummary {
|
|
1643
|
-
/**
|
|
1644
|
-
* @internal
|
|
1645
|
-
*/
|
|
1646
|
-
const filterSensitiveLog: (obj: BatchJobExecutionSummary) => any;
|
|
1647
|
-
}
|
|
1648
1330
|
export interface ListBatchJobExecutionsResponse {
|
|
1649
1331
|
/**
|
|
1650
1332
|
* <p>Returns a list of batch job executions for an application.</p>
|
|
@@ -1656,12 +1338,6 @@ export interface ListBatchJobExecutionsResponse {
|
|
|
1656
1338
|
*/
|
|
1657
1339
|
nextToken?: string;
|
|
1658
1340
|
}
|
|
1659
|
-
export declare namespace ListBatchJobExecutionsResponse {
|
|
1660
|
-
/**
|
|
1661
|
-
* @internal
|
|
1662
|
-
*/
|
|
1663
|
-
const filterSensitiveLog: (obj: ListBatchJobExecutionsResponse) => any;
|
|
1664
|
-
}
|
|
1665
1341
|
export interface ListDataSetImportHistoryRequest {
|
|
1666
1342
|
/**
|
|
1667
1343
|
* <p>A pagination token returned from a previous call to
|
|
@@ -1678,12 +1354,6 @@ export interface ListDataSetImportHistoryRequest {
|
|
|
1678
1354
|
*/
|
|
1679
1355
|
applicationId: string | undefined;
|
|
1680
1356
|
}
|
|
1681
|
-
export declare namespace ListDataSetImportHistoryRequest {
|
|
1682
|
-
/**
|
|
1683
|
-
* @internal
|
|
1684
|
-
*/
|
|
1685
|
-
const filterSensitiveLog: (obj: ListDataSetImportHistoryRequest) => any;
|
|
1686
|
-
}
|
|
1687
1357
|
/**
|
|
1688
1358
|
* <p>Contains information about a data set import task.</p>
|
|
1689
1359
|
*/
|
|
@@ -1701,12 +1371,6 @@ export interface DataSetImportTask {
|
|
|
1701
1371
|
*/
|
|
1702
1372
|
summary: DataSetImportSummary | undefined;
|
|
1703
1373
|
}
|
|
1704
|
-
export declare namespace DataSetImportTask {
|
|
1705
|
-
/**
|
|
1706
|
-
* @internal
|
|
1707
|
-
*/
|
|
1708
|
-
const filterSensitiveLog: (obj: DataSetImportTask) => any;
|
|
1709
|
-
}
|
|
1710
1374
|
export interface ListDataSetImportHistoryResponse {
|
|
1711
1375
|
/**
|
|
1712
1376
|
* <p>The data set import tasks.</p>
|
|
@@ -1718,12 +1382,6 @@ export interface ListDataSetImportHistoryResponse {
|
|
|
1718
1382
|
*/
|
|
1719
1383
|
nextToken?: string;
|
|
1720
1384
|
}
|
|
1721
|
-
export declare namespace ListDataSetImportHistoryResponse {
|
|
1722
|
-
/**
|
|
1723
|
-
* @internal
|
|
1724
|
-
*/
|
|
1725
|
-
const filterSensitiveLog: (obj: ListDataSetImportHistoryResponse) => any;
|
|
1726
|
-
}
|
|
1727
1385
|
export interface ListDataSetsRequest {
|
|
1728
1386
|
/**
|
|
1729
1387
|
* <p>The unique identifier of the application for which you want to list the associated data
|
|
@@ -1746,12 +1404,6 @@ export interface ListDataSetsRequest {
|
|
|
1746
1404
|
*/
|
|
1747
1405
|
prefix?: string;
|
|
1748
1406
|
}
|
|
1749
|
-
export declare namespace ListDataSetsRequest {
|
|
1750
|
-
/**
|
|
1751
|
-
* @internal
|
|
1752
|
-
*/
|
|
1753
|
-
const filterSensitiveLog: (obj: ListDataSetsRequest) => any;
|
|
1754
|
-
}
|
|
1755
1407
|
/**
|
|
1756
1408
|
* <p>A subset of the possible data set attributes.</p>
|
|
1757
1409
|
*/
|
|
@@ -1782,12 +1434,6 @@ export interface DataSetSummary {
|
|
|
1782
1434
|
*/
|
|
1783
1435
|
lastReferencedTime?: Date;
|
|
1784
1436
|
}
|
|
1785
|
-
export declare namespace DataSetSummary {
|
|
1786
|
-
/**
|
|
1787
|
-
* @internal
|
|
1788
|
-
*/
|
|
1789
|
-
const filterSensitiveLog: (obj: DataSetSummary) => any;
|
|
1790
|
-
}
|
|
1791
1437
|
export interface ListDataSetsResponse {
|
|
1792
1438
|
/**
|
|
1793
1439
|
* <p>The list of data sets, containing ionformation including the creating time, the data set
|
|
@@ -1801,12 +1447,6 @@ export interface ListDataSetsResponse {
|
|
|
1801
1447
|
*/
|
|
1802
1448
|
nextToken?: string;
|
|
1803
1449
|
}
|
|
1804
|
-
export declare namespace ListDataSetsResponse {
|
|
1805
|
-
/**
|
|
1806
|
-
* @internal
|
|
1807
|
-
*/
|
|
1808
|
-
const filterSensitiveLog: (obj: ListDataSetsResponse) => any;
|
|
1809
|
-
}
|
|
1810
1450
|
export interface ListDeploymentsRequest {
|
|
1811
1451
|
/**
|
|
1812
1452
|
* <p>A pagination token returned from a previous call to
|
|
@@ -1823,12 +1463,6 @@ export interface ListDeploymentsRequest {
|
|
|
1823
1463
|
*/
|
|
1824
1464
|
applicationId: string | undefined;
|
|
1825
1465
|
}
|
|
1826
|
-
export declare namespace ListDeploymentsRequest {
|
|
1827
|
-
/**
|
|
1828
|
-
* @internal
|
|
1829
|
-
*/
|
|
1830
|
-
const filterSensitiveLog: (obj: ListDeploymentsRequest) => any;
|
|
1831
|
-
}
|
|
1832
1466
|
/**
|
|
1833
1467
|
* <p>A subset of information about a specific deployment.</p>
|
|
1834
1468
|
*/
|
|
@@ -1862,12 +1496,6 @@ export interface DeploymentSummary {
|
|
|
1862
1496
|
*/
|
|
1863
1497
|
statusReason?: string;
|
|
1864
1498
|
}
|
|
1865
|
-
export declare namespace DeploymentSummary {
|
|
1866
|
-
/**
|
|
1867
|
-
* @internal
|
|
1868
|
-
*/
|
|
1869
|
-
const filterSensitiveLog: (obj: DeploymentSummary) => any;
|
|
1870
|
-
}
|
|
1871
1499
|
export interface ListDeploymentsResponse {
|
|
1872
1500
|
/**
|
|
1873
1501
|
* <p>The list of deployments that is returned.</p>
|
|
@@ -1879,32 +1507,14 @@ export interface ListDeploymentsResponse {
|
|
|
1879
1507
|
*/
|
|
1880
1508
|
nextToken?: string;
|
|
1881
1509
|
}
|
|
1882
|
-
export declare namespace ListDeploymentsResponse {
|
|
1883
|
-
/**
|
|
1884
|
-
* @internal
|
|
1885
|
-
*/
|
|
1886
|
-
const filterSensitiveLog: (obj: ListDeploymentsResponse) => any;
|
|
1887
|
-
}
|
|
1888
1510
|
export interface StartApplicationRequest {
|
|
1889
1511
|
/**
|
|
1890
1512
|
* <p>The unique identifier of the application you want to start.</p>
|
|
1891
1513
|
*/
|
|
1892
1514
|
applicationId: string | undefined;
|
|
1893
1515
|
}
|
|
1894
|
-
export declare namespace StartApplicationRequest {
|
|
1895
|
-
/**
|
|
1896
|
-
* @internal
|
|
1897
|
-
*/
|
|
1898
|
-
const filterSensitiveLog: (obj: StartApplicationRequest) => any;
|
|
1899
|
-
}
|
|
1900
1516
|
export interface StartApplicationResponse {
|
|
1901
1517
|
}
|
|
1902
|
-
export declare namespace StartApplicationResponse {
|
|
1903
|
-
/**
|
|
1904
|
-
* @internal
|
|
1905
|
-
*/
|
|
1906
|
-
const filterSensitiveLog: (obj: StartApplicationResponse) => any;
|
|
1907
|
-
}
|
|
1908
1518
|
/**
|
|
1909
1519
|
* <p>A batch job identifier in which the batch job to run is identified by the file name and
|
|
1910
1520
|
* the relative path to the file name.</p>
|
|
@@ -1919,12 +1529,6 @@ export interface FileBatchJobIdentifier {
|
|
|
1919
1529
|
*/
|
|
1920
1530
|
folderPath?: string;
|
|
1921
1531
|
}
|
|
1922
|
-
export declare namespace FileBatchJobIdentifier {
|
|
1923
|
-
/**
|
|
1924
|
-
* @internal
|
|
1925
|
-
*/
|
|
1926
|
-
const filterSensitiveLog: (obj: FileBatchJobIdentifier) => any;
|
|
1927
|
-
}
|
|
1928
1532
|
/**
|
|
1929
1533
|
* <p>A batch job identifier in which the batch job to run is identified by the script
|
|
1930
1534
|
* name.</p>
|
|
@@ -1935,12 +1539,6 @@ export interface ScriptBatchJobIdentifier {
|
|
|
1935
1539
|
*/
|
|
1936
1540
|
scriptName: string | undefined;
|
|
1937
1541
|
}
|
|
1938
|
-
export declare namespace ScriptBatchJobIdentifier {
|
|
1939
|
-
/**
|
|
1940
|
-
* @internal
|
|
1941
|
-
*/
|
|
1942
|
-
const filterSensitiveLog: (obj: ScriptBatchJobIdentifier) => any;
|
|
1943
|
-
}
|
|
1944
1542
|
/**
|
|
1945
1543
|
* <p>Identifies a specific batch job.</p>
|
|
1946
1544
|
*/
|
|
@@ -1973,10 +1571,6 @@ export declare namespace BatchJobIdentifier {
|
|
|
1973
1571
|
_: (name: string, value: any) => T;
|
|
1974
1572
|
}
|
|
1975
1573
|
const visit: <T>(value: BatchJobIdentifier, visitor: Visitor<T>) => T;
|
|
1976
|
-
/**
|
|
1977
|
-
* @internal
|
|
1978
|
-
*/
|
|
1979
|
-
const filterSensitiveLog: (obj: BatchJobIdentifier) => any;
|
|
1980
1574
|
}
|
|
1981
1575
|
export interface StartBatchJobRequest {
|
|
1982
1576
|
/**
|
|
@@ -1993,24 +1587,12 @@ export interface StartBatchJobRequest {
|
|
|
1993
1587
|
*/
|
|
1994
1588
|
jobParams?: Record<string, string>;
|
|
1995
1589
|
}
|
|
1996
|
-
export declare namespace StartBatchJobRequest {
|
|
1997
|
-
/**
|
|
1998
|
-
* @internal
|
|
1999
|
-
*/
|
|
2000
|
-
const filterSensitiveLog: (obj: StartBatchJobRequest) => any;
|
|
2001
|
-
}
|
|
2002
1590
|
export interface StartBatchJobResponse {
|
|
2003
1591
|
/**
|
|
2004
1592
|
* <p>The unique identifier of this execution of the batch job.</p>
|
|
2005
1593
|
*/
|
|
2006
1594
|
executionId: string | undefined;
|
|
2007
1595
|
}
|
|
2008
|
-
export declare namespace StartBatchJobResponse {
|
|
2009
|
-
/**
|
|
2010
|
-
* @internal
|
|
2011
|
-
*/
|
|
2012
|
-
const filterSensitiveLog: (obj: StartBatchJobResponse) => any;
|
|
2013
|
-
}
|
|
2014
1596
|
export interface StopApplicationRequest {
|
|
2015
1597
|
/**
|
|
2016
1598
|
* <p>The unique identifier of the application you want to stop.</p>
|
|
@@ -2023,20 +1605,8 @@ export interface StopApplicationRequest {
|
|
|
2023
1605
|
*/
|
|
2024
1606
|
forceStop?: boolean;
|
|
2025
1607
|
}
|
|
2026
|
-
export declare namespace StopApplicationRequest {
|
|
2027
|
-
/**
|
|
2028
|
-
* @internal
|
|
2029
|
-
*/
|
|
2030
|
-
const filterSensitiveLog: (obj: StopApplicationRequest) => any;
|
|
2031
|
-
}
|
|
2032
1608
|
export interface StopApplicationResponse {
|
|
2033
1609
|
}
|
|
2034
|
-
export declare namespace StopApplicationResponse {
|
|
2035
|
-
/**
|
|
2036
|
-
* @internal
|
|
2037
|
-
*/
|
|
2038
|
-
const filterSensitiveLog: (obj: StopApplicationResponse) => any;
|
|
2039
|
-
}
|
|
2040
1610
|
export interface UpdateApplicationRequest {
|
|
2041
1611
|
/**
|
|
2042
1612
|
* <p>The unique identifier of the application you want to update.</p>
|
|
@@ -2056,24 +1626,12 @@ export interface UpdateApplicationRequest {
|
|
|
2056
1626
|
*/
|
|
2057
1627
|
definition?: Definition;
|
|
2058
1628
|
}
|
|
2059
|
-
export declare namespace UpdateApplicationRequest {
|
|
2060
|
-
/**
|
|
2061
|
-
* @internal
|
|
2062
|
-
*/
|
|
2063
|
-
const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
|
|
2064
|
-
}
|
|
2065
1629
|
export interface UpdateApplicationResponse {
|
|
2066
1630
|
/**
|
|
2067
1631
|
* <p>The new version of the application.</p>
|
|
2068
1632
|
*/
|
|
2069
1633
|
applicationVersion: number | undefined;
|
|
2070
1634
|
}
|
|
2071
|
-
export declare namespace UpdateApplicationResponse {
|
|
2072
|
-
/**
|
|
2073
|
-
* @internal
|
|
2074
|
-
*/
|
|
2075
|
-
const filterSensitiveLog: (obj: UpdateApplicationResponse) => any;
|
|
2076
|
-
}
|
|
2077
1635
|
/**
|
|
2078
1636
|
* <p>Defines the details of a high availability configuration.</p>
|
|
2079
1637
|
*/
|
|
@@ -2083,12 +1641,6 @@ export interface HighAvailabilityConfig {
|
|
|
2083
1641
|
*/
|
|
2084
1642
|
desiredCapacity: number | undefined;
|
|
2085
1643
|
}
|
|
2086
|
-
export declare namespace HighAvailabilityConfig {
|
|
2087
|
-
/**
|
|
2088
|
-
* @internal
|
|
2089
|
-
*/
|
|
2090
|
-
const filterSensitiveLog: (obj: HighAvailabilityConfig) => any;
|
|
2091
|
-
}
|
|
2092
1644
|
/**
|
|
2093
1645
|
* <p>Defines the storage configuration for an Amazon EFS file system.</p>
|
|
2094
1646
|
*/
|
|
@@ -2102,12 +1654,6 @@ export interface EfsStorageConfiguration {
|
|
|
2102
1654
|
*/
|
|
2103
1655
|
mountPoint: string | undefined;
|
|
2104
1656
|
}
|
|
2105
|
-
export declare namespace EfsStorageConfiguration {
|
|
2106
|
-
/**
|
|
2107
|
-
* @internal
|
|
2108
|
-
*/
|
|
2109
|
-
const filterSensitiveLog: (obj: EfsStorageConfiguration) => any;
|
|
2110
|
-
}
|
|
2111
1657
|
/**
|
|
2112
1658
|
* <p>Defines the storage configuration for an Amazon FSx file system.</p>
|
|
2113
1659
|
*/
|
|
@@ -2121,12 +1667,6 @@ export interface FsxStorageConfiguration {
|
|
|
2121
1667
|
*/
|
|
2122
1668
|
mountPoint: string | undefined;
|
|
2123
1669
|
}
|
|
2124
|
-
export declare namespace FsxStorageConfiguration {
|
|
2125
|
-
/**
|
|
2126
|
-
* @internal
|
|
2127
|
-
*/
|
|
2128
|
-
const filterSensitiveLog: (obj: FsxStorageConfiguration) => any;
|
|
2129
|
-
}
|
|
2130
1670
|
/**
|
|
2131
1671
|
* <p>Defines the storage configuration for an environment.</p>
|
|
2132
1672
|
*/
|
|
@@ -2159,10 +1699,6 @@ export declare namespace StorageConfiguration {
|
|
|
2159
1699
|
_: (name: string, value: any) => T;
|
|
2160
1700
|
}
|
|
2161
1701
|
const visit: <T>(value: StorageConfiguration, visitor: Visitor<T>) => T;
|
|
2162
|
-
/**
|
|
2163
|
-
* @internal
|
|
2164
|
-
*/
|
|
2165
|
-
const filterSensitiveLog: (obj: StorageConfiguration) => any;
|
|
2166
1702
|
}
|
|
2167
1703
|
export interface CreateEnvironmentRequest {
|
|
2168
1704
|
/**
|
|
@@ -2223,56 +1759,26 @@ export interface CreateEnvironmentRequest {
|
|
|
2223
1759
|
*/
|
|
2224
1760
|
clientToken?: string;
|
|
2225
1761
|
}
|
|
2226
|
-
export declare namespace CreateEnvironmentRequest {
|
|
2227
|
-
/**
|
|
2228
|
-
* @internal
|
|
2229
|
-
*/
|
|
2230
|
-
const filterSensitiveLog: (obj: CreateEnvironmentRequest) => any;
|
|
2231
|
-
}
|
|
2232
1762
|
export interface CreateEnvironmentResponse {
|
|
2233
1763
|
/**
|
|
2234
1764
|
* <p>The identifier of this environment.</p>
|
|
2235
1765
|
*/
|
|
2236
1766
|
environmentId: string | undefined;
|
|
2237
1767
|
}
|
|
2238
|
-
export declare namespace CreateEnvironmentResponse {
|
|
2239
|
-
/**
|
|
2240
|
-
* @internal
|
|
2241
|
-
*/
|
|
2242
|
-
const filterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
|
|
2243
|
-
}
|
|
2244
1768
|
export interface DeleteEnvironmentRequest {
|
|
2245
1769
|
/**
|
|
2246
1770
|
* <p>The unique identifier of the runtime environment you want to delete.</p>
|
|
2247
1771
|
*/
|
|
2248
1772
|
environmentId: string | undefined;
|
|
2249
1773
|
}
|
|
2250
|
-
export declare namespace DeleteEnvironmentRequest {
|
|
2251
|
-
/**
|
|
2252
|
-
* @internal
|
|
2253
|
-
*/
|
|
2254
|
-
const filterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
|
|
2255
|
-
}
|
|
2256
1774
|
export interface DeleteEnvironmentResponse {
|
|
2257
1775
|
}
|
|
2258
|
-
export declare namespace DeleteEnvironmentResponse {
|
|
2259
|
-
/**
|
|
2260
|
-
* @internal
|
|
2261
|
-
*/
|
|
2262
|
-
const filterSensitiveLog: (obj: DeleteEnvironmentResponse) => any;
|
|
2263
|
-
}
|
|
2264
1776
|
export interface GetEnvironmentRequest {
|
|
2265
1777
|
/**
|
|
2266
1778
|
* <p>The unique identifier of the runtime environment.</p>
|
|
2267
1779
|
*/
|
|
2268
1780
|
environmentId: string | undefined;
|
|
2269
1781
|
}
|
|
2270
|
-
export declare namespace GetEnvironmentRequest {
|
|
2271
|
-
/**
|
|
2272
|
-
* @internal
|
|
2273
|
-
*/
|
|
2274
|
-
const filterSensitiveLog: (obj: GetEnvironmentRequest) => any;
|
|
2275
|
-
}
|
|
2276
1782
|
/**
|
|
2277
1783
|
* <p>The information about the maintenance schedule.</p>
|
|
2278
1784
|
*/
|
|
@@ -2286,12 +1792,6 @@ export interface MaintenanceSchedule {
|
|
|
2286
1792
|
*/
|
|
2287
1793
|
endTime?: Date;
|
|
2288
1794
|
}
|
|
2289
|
-
export declare namespace MaintenanceSchedule {
|
|
2290
|
-
/**
|
|
2291
|
-
* @internal
|
|
2292
|
-
*/
|
|
2293
|
-
const filterSensitiveLog: (obj: MaintenanceSchedule) => any;
|
|
2294
|
-
}
|
|
2295
1795
|
/**
|
|
2296
1796
|
* <p>The scheduled maintenance for a runtime engine.</p>
|
|
2297
1797
|
*/
|
|
@@ -2305,12 +1805,6 @@ export interface PendingMaintenance {
|
|
|
2305
1805
|
*/
|
|
2306
1806
|
engineVersion?: string;
|
|
2307
1807
|
}
|
|
2308
|
-
export declare namespace PendingMaintenance {
|
|
2309
|
-
/**
|
|
2310
|
-
* @internal
|
|
2311
|
-
*/
|
|
2312
|
-
const filterSensitiveLog: (obj: PendingMaintenance) => any;
|
|
2313
|
-
}
|
|
2314
1808
|
export declare enum EnvironmentLifecycle {
|
|
2315
1809
|
AVAILABLE = "Available",
|
|
2316
1810
|
CREATING = "Creating",
|
|
@@ -2410,12 +1904,6 @@ export interface GetEnvironmentResponse {
|
|
|
2410
1904
|
*/
|
|
2411
1905
|
pendingMaintenance?: PendingMaintenance;
|
|
2412
1906
|
}
|
|
2413
|
-
export declare namespace GetEnvironmentResponse {
|
|
2414
|
-
/**
|
|
2415
|
-
* @internal
|
|
2416
|
-
*/
|
|
2417
|
-
const filterSensitiveLog: (obj: GetEnvironmentResponse) => any;
|
|
2418
|
-
}
|
|
2419
1907
|
export interface ListEnvironmentsRequest {
|
|
2420
1908
|
/**
|
|
2421
1909
|
* <p>A pagination token to control the number of environments displayed in the list.</p>
|
|
@@ -2434,12 +1922,6 @@ export interface ListEnvironmentsRequest {
|
|
|
2434
1922
|
*/
|
|
2435
1923
|
engineType?: EngineType | string;
|
|
2436
1924
|
}
|
|
2437
|
-
export declare namespace ListEnvironmentsRequest {
|
|
2438
|
-
/**
|
|
2439
|
-
* @internal
|
|
2440
|
-
*/
|
|
2441
|
-
const filterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
|
|
2442
|
-
}
|
|
2443
1925
|
/**
|
|
2444
1926
|
* <p>Contains a subset of the possible environment attributes. Used in the environment
|
|
2445
1927
|
* list.</p>
|
|
@@ -2478,12 +1960,6 @@ export interface EnvironmentSummary {
|
|
|
2478
1960
|
*/
|
|
2479
1961
|
creationTime: Date | undefined;
|
|
2480
1962
|
}
|
|
2481
|
-
export declare namespace EnvironmentSummary {
|
|
2482
|
-
/**
|
|
2483
|
-
* @internal
|
|
2484
|
-
*/
|
|
2485
|
-
const filterSensitiveLog: (obj: EnvironmentSummary) => any;
|
|
2486
|
-
}
|
|
2487
1963
|
export interface ListEnvironmentsResponse {
|
|
2488
1964
|
/**
|
|
2489
1965
|
* <p>Returns a list of summary details for all the environments in your account. </p>
|
|
@@ -2495,12 +1971,6 @@ export interface ListEnvironmentsResponse {
|
|
|
2495
1971
|
*/
|
|
2496
1972
|
nextToken?: string;
|
|
2497
1973
|
}
|
|
2498
|
-
export declare namespace ListEnvironmentsResponse {
|
|
2499
|
-
/**
|
|
2500
|
-
* @internal
|
|
2501
|
-
*/
|
|
2502
|
-
const filterSensitiveLog: (obj: ListEnvironmentsResponse) => any;
|
|
2503
|
-
}
|
|
2504
1974
|
export interface UpdateEnvironmentRequest {
|
|
2505
1975
|
/**
|
|
2506
1976
|
* <p>The unique identifier of the runtime environment that you want to update.</p>
|
|
@@ -2532,24 +2002,12 @@ export interface UpdateEnvironmentRequest {
|
|
|
2532
2002
|
*/
|
|
2533
2003
|
applyDuringMaintenanceWindow?: boolean;
|
|
2534
2004
|
}
|
|
2535
|
-
export declare namespace UpdateEnvironmentRequest {
|
|
2536
|
-
/**
|
|
2537
|
-
* @internal
|
|
2538
|
-
*/
|
|
2539
|
-
const filterSensitiveLog: (obj: UpdateEnvironmentRequest) => any;
|
|
2540
|
-
}
|
|
2541
2005
|
export interface UpdateEnvironmentResponse {
|
|
2542
2006
|
/**
|
|
2543
2007
|
* <p>The unique identifier of the runtime environment that was updated.</p>
|
|
2544
2008
|
*/
|
|
2545
2009
|
environmentId: string | undefined;
|
|
2546
2010
|
}
|
|
2547
|
-
export declare namespace UpdateEnvironmentResponse {
|
|
2548
|
-
/**
|
|
2549
|
-
* @internal
|
|
2550
|
-
*/
|
|
2551
|
-
const filterSensitiveLog: (obj: UpdateEnvironmentResponse) => any;
|
|
2552
|
-
}
|
|
2553
2011
|
export interface ListEngineVersionsRequest {
|
|
2554
2012
|
/**
|
|
2555
2013
|
* <p>The type of target platform.</p>
|
|
@@ -2566,12 +2024,6 @@ export interface ListEngineVersionsRequest {
|
|
|
2566
2024
|
*/
|
|
2567
2025
|
maxResults?: number;
|
|
2568
2026
|
}
|
|
2569
|
-
export declare namespace ListEngineVersionsRequest {
|
|
2570
|
-
/**
|
|
2571
|
-
* @internal
|
|
2572
|
-
*/
|
|
2573
|
-
const filterSensitiveLog: (obj: ListEngineVersionsRequest) => any;
|
|
2574
|
-
}
|
|
2575
2027
|
/**
|
|
2576
2028
|
* <p>A subset of information about the engine version for a specific application.</p>
|
|
2577
2029
|
*/
|
|
@@ -2585,12 +2037,6 @@ export interface EngineVersionsSummary {
|
|
|
2585
2037
|
*/
|
|
2586
2038
|
engineVersion: string | undefined;
|
|
2587
2039
|
}
|
|
2588
|
-
export declare namespace EngineVersionsSummary {
|
|
2589
|
-
/**
|
|
2590
|
-
* @internal
|
|
2591
|
-
*/
|
|
2592
|
-
const filterSensitiveLog: (obj: EngineVersionsSummary) => any;
|
|
2593
|
-
}
|
|
2594
2040
|
export interface ListEngineVersionsResponse {
|
|
2595
2041
|
/**
|
|
2596
2042
|
* <p>Returns the engine versions.</p>
|
|
@@ -2602,36 +2048,18 @@ export interface ListEngineVersionsResponse {
|
|
|
2602
2048
|
*/
|
|
2603
2049
|
nextToken?: string;
|
|
2604
2050
|
}
|
|
2605
|
-
export declare namespace ListEngineVersionsResponse {
|
|
2606
|
-
/**
|
|
2607
|
-
* @internal
|
|
2608
|
-
*/
|
|
2609
|
-
const filterSensitiveLog: (obj: ListEngineVersionsResponse) => any;
|
|
2610
|
-
}
|
|
2611
2051
|
export interface ListTagsForResourceRequest {
|
|
2612
2052
|
/**
|
|
2613
2053
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
2614
2054
|
*/
|
|
2615
2055
|
resourceArn: string | undefined;
|
|
2616
2056
|
}
|
|
2617
|
-
export declare namespace ListTagsForResourceRequest {
|
|
2618
|
-
/**
|
|
2619
|
-
* @internal
|
|
2620
|
-
*/
|
|
2621
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
2622
|
-
}
|
|
2623
2057
|
export interface ListTagsForResourceResponse {
|
|
2624
2058
|
/**
|
|
2625
2059
|
* <p>The tags for the resource.</p>
|
|
2626
2060
|
*/
|
|
2627
2061
|
tags: Record<string, string> | undefined;
|
|
2628
2062
|
}
|
|
2629
|
-
export declare namespace ListTagsForResourceResponse {
|
|
2630
|
-
/**
|
|
2631
|
-
* @internal
|
|
2632
|
-
*/
|
|
2633
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2634
|
-
}
|
|
2635
2063
|
export interface TagResourceRequest {
|
|
2636
2064
|
/**
|
|
2637
2065
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
@@ -2642,20 +2070,8 @@ export interface TagResourceRequest {
|
|
|
2642
2070
|
*/
|
|
2643
2071
|
tags: Record<string, string> | undefined;
|
|
2644
2072
|
}
|
|
2645
|
-
export declare namespace TagResourceRequest {
|
|
2646
|
-
/**
|
|
2647
|
-
* @internal
|
|
2648
|
-
*/
|
|
2649
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2650
|
-
}
|
|
2651
2073
|
export interface TagResourceResponse {
|
|
2652
2074
|
}
|
|
2653
|
-
export declare namespace TagResourceResponse {
|
|
2654
|
-
/**
|
|
2655
|
-
* @internal
|
|
2656
|
-
*/
|
|
2657
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2658
|
-
}
|
|
2659
2075
|
export interface UntagResourceRequest {
|
|
2660
2076
|
/**
|
|
2661
2077
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
@@ -2666,17 +2082,413 @@ export interface UntagResourceRequest {
|
|
|
2666
2082
|
*/
|
|
2667
2083
|
tagKeys: string[] | undefined;
|
|
2668
2084
|
}
|
|
2669
|
-
export declare namespace UntagResourceRequest {
|
|
2670
|
-
/**
|
|
2671
|
-
* @internal
|
|
2672
|
-
*/
|
|
2673
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2674
|
-
}
|
|
2675
2085
|
export interface UntagResourceResponse {
|
|
2676
2086
|
}
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2087
|
+
/**
|
|
2088
|
+
* @internal
|
|
2089
|
+
*/
|
|
2090
|
+
export declare const AlternateKeyFilterSensitiveLog: (obj: AlternateKey) => any;
|
|
2091
|
+
/**
|
|
2092
|
+
* @internal
|
|
2093
|
+
*/
|
|
2094
|
+
export declare const CancelBatchJobExecutionRequestFilterSensitiveLog: (obj: CancelBatchJobExecutionRequest) => any;
|
|
2095
|
+
/**
|
|
2096
|
+
* @internal
|
|
2097
|
+
*/
|
|
2098
|
+
export declare const CancelBatchJobExecutionResponseFilterSensitiveLog: (obj: CancelBatchJobExecutionResponse) => any;
|
|
2099
|
+
/**
|
|
2100
|
+
* @internal
|
|
2101
|
+
*/
|
|
2102
|
+
export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
2103
|
+
/**
|
|
2104
|
+
* @internal
|
|
2105
|
+
*/
|
|
2106
|
+
export declare const DefinitionFilterSensitiveLog: (obj: Definition) => any;
|
|
2107
|
+
/**
|
|
2108
|
+
* @internal
|
|
2109
|
+
*/
|
|
2110
|
+
export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
2111
|
+
/**
|
|
2112
|
+
* @internal
|
|
2113
|
+
*/
|
|
2114
|
+
export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
2115
|
+
/**
|
|
2116
|
+
* @internal
|
|
2117
|
+
*/
|
|
2118
|
+
export declare const GdgAttributesFilterSensitiveLog: (obj: GdgAttributes) => any;
|
|
2119
|
+
/**
|
|
2120
|
+
* @internal
|
|
2121
|
+
*/
|
|
2122
|
+
export declare const PrimaryKeyFilterSensitiveLog: (obj: PrimaryKey) => any;
|
|
2123
|
+
/**
|
|
2124
|
+
* @internal
|
|
2125
|
+
*/
|
|
2126
|
+
export declare const VsamAttributesFilterSensitiveLog: (obj: VsamAttributes) => any;
|
|
2127
|
+
/**
|
|
2128
|
+
* @internal
|
|
2129
|
+
*/
|
|
2130
|
+
export declare const DatasetOrgAttributesFilterSensitiveLog: (obj: DatasetOrgAttributes) => any;
|
|
2131
|
+
/**
|
|
2132
|
+
* @internal
|
|
2133
|
+
*/
|
|
2134
|
+
export declare const RecordLengthFilterSensitiveLog: (obj: RecordLength) => any;
|
|
2135
|
+
/**
|
|
2136
|
+
* @internal
|
|
2137
|
+
*/
|
|
2138
|
+
export declare const DataSetFilterSensitiveLog: (obj: DataSet) => any;
|
|
2139
|
+
/**
|
|
2140
|
+
* @internal
|
|
2141
|
+
*/
|
|
2142
|
+
export declare const ExternalLocationFilterSensitiveLog: (obj: ExternalLocation) => any;
|
|
2143
|
+
/**
|
|
2144
|
+
* @internal
|
|
2145
|
+
*/
|
|
2146
|
+
export declare const DataSetImportItemFilterSensitiveLog: (obj: DataSetImportItem) => any;
|
|
2147
|
+
/**
|
|
2148
|
+
* @internal
|
|
2149
|
+
*/
|
|
2150
|
+
export declare const DataSetImportConfigFilterSensitiveLog: (obj: DataSetImportConfig) => any;
|
|
2151
|
+
/**
|
|
2152
|
+
* @internal
|
|
2153
|
+
*/
|
|
2154
|
+
export declare const CreateDataSetImportTaskRequestFilterSensitiveLog: (obj: CreateDataSetImportTaskRequest) => any;
|
|
2155
|
+
/**
|
|
2156
|
+
* @internal
|
|
2157
|
+
*/
|
|
2158
|
+
export declare const CreateDataSetImportTaskResponseFilterSensitiveLog: (obj: CreateDataSetImportTaskResponse) => any;
|
|
2159
|
+
/**
|
|
2160
|
+
* @internal
|
|
2161
|
+
*/
|
|
2162
|
+
export declare const CreateDeploymentRequestFilterSensitiveLog: (obj: CreateDeploymentRequest) => any;
|
|
2163
|
+
/**
|
|
2164
|
+
* @internal
|
|
2165
|
+
*/
|
|
2166
|
+
export declare const CreateDeploymentResponseFilterSensitiveLog: (obj: CreateDeploymentResponse) => any;
|
|
2167
|
+
/**
|
|
2168
|
+
* @internal
|
|
2169
|
+
*/
|
|
2170
|
+
export declare const DeleteApplicationRequestFilterSensitiveLog: (obj: DeleteApplicationRequest) => any;
|
|
2171
|
+
/**
|
|
2172
|
+
* @internal
|
|
2173
|
+
*/
|
|
2174
|
+
export declare const DeleteApplicationResponseFilterSensitiveLog: (obj: DeleteApplicationResponse) => any;
|
|
2175
|
+
/**
|
|
2176
|
+
* @internal
|
|
2177
|
+
*/
|
|
2178
|
+
export declare const DeleteApplicationFromEnvironmentRequestFilterSensitiveLog: (obj: DeleteApplicationFromEnvironmentRequest) => any;
|
|
2179
|
+
/**
|
|
2180
|
+
* @internal
|
|
2181
|
+
*/
|
|
2182
|
+
export declare const DeleteApplicationFromEnvironmentResponseFilterSensitiveLog: (obj: DeleteApplicationFromEnvironmentResponse) => any;
|
|
2183
|
+
/**
|
|
2184
|
+
* @internal
|
|
2185
|
+
*/
|
|
2186
|
+
export declare const GetApplicationRequestFilterSensitiveLog: (obj: GetApplicationRequest) => any;
|
|
2187
|
+
/**
|
|
2188
|
+
* @internal
|
|
2189
|
+
*/
|
|
2190
|
+
export declare const DeployedVersionSummaryFilterSensitiveLog: (obj: DeployedVersionSummary) => any;
|
|
2191
|
+
/**
|
|
2192
|
+
* @internal
|
|
2193
|
+
*/
|
|
2194
|
+
export declare const ApplicationVersionSummaryFilterSensitiveLog: (obj: ApplicationVersionSummary) => any;
|
|
2195
|
+
/**
|
|
2196
|
+
* @internal
|
|
2197
|
+
*/
|
|
2198
|
+
export declare const LogGroupSummaryFilterSensitiveLog: (obj: LogGroupSummary) => any;
|
|
2199
|
+
/**
|
|
2200
|
+
* @internal
|
|
2201
|
+
*/
|
|
2202
|
+
export declare const GetApplicationResponseFilterSensitiveLog: (obj: GetApplicationResponse) => any;
|
|
2203
|
+
/**
|
|
2204
|
+
* @internal
|
|
2205
|
+
*/
|
|
2206
|
+
export declare const GetApplicationVersionRequestFilterSensitiveLog: (obj: GetApplicationVersionRequest) => any;
|
|
2207
|
+
/**
|
|
2208
|
+
* @internal
|
|
2209
|
+
*/
|
|
2210
|
+
export declare const GetApplicationVersionResponseFilterSensitiveLog: (obj: GetApplicationVersionResponse) => any;
|
|
2211
|
+
/**
|
|
2212
|
+
* @internal
|
|
2213
|
+
*/
|
|
2214
|
+
export declare const GetBatchJobExecutionRequestFilterSensitiveLog: (obj: GetBatchJobExecutionRequest) => any;
|
|
2215
|
+
/**
|
|
2216
|
+
* @internal
|
|
2217
|
+
*/
|
|
2218
|
+
export declare const GetBatchJobExecutionResponseFilterSensitiveLog: (obj: GetBatchJobExecutionResponse) => any;
|
|
2219
|
+
/**
|
|
2220
|
+
* @internal
|
|
2221
|
+
*/
|
|
2222
|
+
export declare const GetDataSetDetailsRequestFilterSensitiveLog: (obj: GetDataSetDetailsRequest) => any;
|
|
2223
|
+
/**
|
|
2224
|
+
* @internal
|
|
2225
|
+
*/
|
|
2226
|
+
export declare const GdgDetailAttributesFilterSensitiveLog: (obj: GdgDetailAttributes) => any;
|
|
2227
|
+
/**
|
|
2228
|
+
* @internal
|
|
2229
|
+
*/
|
|
2230
|
+
export declare const VsamDetailAttributesFilterSensitiveLog: (obj: VsamDetailAttributes) => any;
|
|
2231
|
+
/**
|
|
2232
|
+
* @internal
|
|
2233
|
+
*/
|
|
2234
|
+
export declare const DatasetDetailOrgAttributesFilterSensitiveLog: (obj: DatasetDetailOrgAttributes) => any;
|
|
2235
|
+
/**
|
|
2236
|
+
* @internal
|
|
2237
|
+
*/
|
|
2238
|
+
export declare const GetDataSetDetailsResponseFilterSensitiveLog: (obj: GetDataSetDetailsResponse) => any;
|
|
2239
|
+
/**
|
|
2240
|
+
* @internal
|
|
2241
|
+
*/
|
|
2242
|
+
export declare const GetDataSetImportTaskRequestFilterSensitiveLog: (obj: GetDataSetImportTaskRequest) => any;
|
|
2243
|
+
/**
|
|
2244
|
+
* @internal
|
|
2245
|
+
*/
|
|
2246
|
+
export declare const DataSetImportSummaryFilterSensitiveLog: (obj: DataSetImportSummary) => any;
|
|
2247
|
+
/**
|
|
2248
|
+
* @internal
|
|
2249
|
+
*/
|
|
2250
|
+
export declare const GetDataSetImportTaskResponseFilterSensitiveLog: (obj: GetDataSetImportTaskResponse) => any;
|
|
2251
|
+
/**
|
|
2252
|
+
* @internal
|
|
2253
|
+
*/
|
|
2254
|
+
export declare const GetDeploymentRequestFilterSensitiveLog: (obj: GetDeploymentRequest) => any;
|
|
2255
|
+
/**
|
|
2256
|
+
* @internal
|
|
2257
|
+
*/
|
|
2258
|
+
export declare const GetDeploymentResponseFilterSensitiveLog: (obj: GetDeploymentResponse) => any;
|
|
2259
|
+
/**
|
|
2260
|
+
* @internal
|
|
2261
|
+
*/
|
|
2262
|
+
export declare const ListApplicationsRequestFilterSensitiveLog: (obj: ListApplicationsRequest) => any;
|
|
2263
|
+
/**
|
|
2264
|
+
* @internal
|
|
2265
|
+
*/
|
|
2266
|
+
export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
2267
|
+
/**
|
|
2268
|
+
* @internal
|
|
2269
|
+
*/
|
|
2270
|
+
export declare const ListApplicationsResponseFilterSensitiveLog: (obj: ListApplicationsResponse) => any;
|
|
2271
|
+
/**
|
|
2272
|
+
* @internal
|
|
2273
|
+
*/
|
|
2274
|
+
export declare const ListApplicationVersionsRequestFilterSensitiveLog: (obj: ListApplicationVersionsRequest) => any;
|
|
2275
|
+
/**
|
|
2276
|
+
* @internal
|
|
2277
|
+
*/
|
|
2278
|
+
export declare const ListApplicationVersionsResponseFilterSensitiveLog: (obj: ListApplicationVersionsResponse) => any;
|
|
2279
|
+
/**
|
|
2280
|
+
* @internal
|
|
2281
|
+
*/
|
|
2282
|
+
export declare const ListBatchJobDefinitionsRequestFilterSensitiveLog: (obj: ListBatchJobDefinitionsRequest) => any;
|
|
2283
|
+
/**
|
|
2284
|
+
* @internal
|
|
2285
|
+
*/
|
|
2286
|
+
export declare const FileBatchJobDefinitionFilterSensitiveLog: (obj: FileBatchJobDefinition) => any;
|
|
2287
|
+
/**
|
|
2288
|
+
* @internal
|
|
2289
|
+
*/
|
|
2290
|
+
export declare const ScriptBatchJobDefinitionFilterSensitiveLog: (obj: ScriptBatchJobDefinition) => any;
|
|
2291
|
+
/**
|
|
2292
|
+
* @internal
|
|
2293
|
+
*/
|
|
2294
|
+
export declare const BatchJobDefinitionFilterSensitiveLog: (obj: BatchJobDefinition) => any;
|
|
2295
|
+
/**
|
|
2296
|
+
* @internal
|
|
2297
|
+
*/
|
|
2298
|
+
export declare const ListBatchJobDefinitionsResponseFilterSensitiveLog: (obj: ListBatchJobDefinitionsResponse) => any;
|
|
2299
|
+
/**
|
|
2300
|
+
* @internal
|
|
2301
|
+
*/
|
|
2302
|
+
export declare const ListBatchJobExecutionsRequestFilterSensitiveLog: (obj: ListBatchJobExecutionsRequest) => any;
|
|
2303
|
+
/**
|
|
2304
|
+
* @internal
|
|
2305
|
+
*/
|
|
2306
|
+
export declare const BatchJobExecutionSummaryFilterSensitiveLog: (obj: BatchJobExecutionSummary) => any;
|
|
2307
|
+
/**
|
|
2308
|
+
* @internal
|
|
2309
|
+
*/
|
|
2310
|
+
export declare const ListBatchJobExecutionsResponseFilterSensitiveLog: (obj: ListBatchJobExecutionsResponse) => any;
|
|
2311
|
+
/**
|
|
2312
|
+
* @internal
|
|
2313
|
+
*/
|
|
2314
|
+
export declare const ListDataSetImportHistoryRequestFilterSensitiveLog: (obj: ListDataSetImportHistoryRequest) => any;
|
|
2315
|
+
/**
|
|
2316
|
+
* @internal
|
|
2317
|
+
*/
|
|
2318
|
+
export declare const DataSetImportTaskFilterSensitiveLog: (obj: DataSetImportTask) => any;
|
|
2319
|
+
/**
|
|
2320
|
+
* @internal
|
|
2321
|
+
*/
|
|
2322
|
+
export declare const ListDataSetImportHistoryResponseFilterSensitiveLog: (obj: ListDataSetImportHistoryResponse) => any;
|
|
2323
|
+
/**
|
|
2324
|
+
* @internal
|
|
2325
|
+
*/
|
|
2326
|
+
export declare const ListDataSetsRequestFilterSensitiveLog: (obj: ListDataSetsRequest) => any;
|
|
2327
|
+
/**
|
|
2328
|
+
* @internal
|
|
2329
|
+
*/
|
|
2330
|
+
export declare const DataSetSummaryFilterSensitiveLog: (obj: DataSetSummary) => any;
|
|
2331
|
+
/**
|
|
2332
|
+
* @internal
|
|
2333
|
+
*/
|
|
2334
|
+
export declare const ListDataSetsResponseFilterSensitiveLog: (obj: ListDataSetsResponse) => any;
|
|
2335
|
+
/**
|
|
2336
|
+
* @internal
|
|
2337
|
+
*/
|
|
2338
|
+
export declare const ListDeploymentsRequestFilterSensitiveLog: (obj: ListDeploymentsRequest) => any;
|
|
2339
|
+
/**
|
|
2340
|
+
* @internal
|
|
2341
|
+
*/
|
|
2342
|
+
export declare const DeploymentSummaryFilterSensitiveLog: (obj: DeploymentSummary) => any;
|
|
2343
|
+
/**
|
|
2344
|
+
* @internal
|
|
2345
|
+
*/
|
|
2346
|
+
export declare const ListDeploymentsResponseFilterSensitiveLog: (obj: ListDeploymentsResponse) => any;
|
|
2347
|
+
/**
|
|
2348
|
+
* @internal
|
|
2349
|
+
*/
|
|
2350
|
+
export declare const StartApplicationRequestFilterSensitiveLog: (obj: StartApplicationRequest) => any;
|
|
2351
|
+
/**
|
|
2352
|
+
* @internal
|
|
2353
|
+
*/
|
|
2354
|
+
export declare const StartApplicationResponseFilterSensitiveLog: (obj: StartApplicationResponse) => any;
|
|
2355
|
+
/**
|
|
2356
|
+
* @internal
|
|
2357
|
+
*/
|
|
2358
|
+
export declare const FileBatchJobIdentifierFilterSensitiveLog: (obj: FileBatchJobIdentifier) => any;
|
|
2359
|
+
/**
|
|
2360
|
+
* @internal
|
|
2361
|
+
*/
|
|
2362
|
+
export declare const ScriptBatchJobIdentifierFilterSensitiveLog: (obj: ScriptBatchJobIdentifier) => any;
|
|
2363
|
+
/**
|
|
2364
|
+
* @internal
|
|
2365
|
+
*/
|
|
2366
|
+
export declare const BatchJobIdentifierFilterSensitiveLog: (obj: BatchJobIdentifier) => any;
|
|
2367
|
+
/**
|
|
2368
|
+
* @internal
|
|
2369
|
+
*/
|
|
2370
|
+
export declare const StartBatchJobRequestFilterSensitiveLog: (obj: StartBatchJobRequest) => any;
|
|
2371
|
+
/**
|
|
2372
|
+
* @internal
|
|
2373
|
+
*/
|
|
2374
|
+
export declare const StartBatchJobResponseFilterSensitiveLog: (obj: StartBatchJobResponse) => any;
|
|
2375
|
+
/**
|
|
2376
|
+
* @internal
|
|
2377
|
+
*/
|
|
2378
|
+
export declare const StopApplicationRequestFilterSensitiveLog: (obj: StopApplicationRequest) => any;
|
|
2379
|
+
/**
|
|
2380
|
+
* @internal
|
|
2381
|
+
*/
|
|
2382
|
+
export declare const StopApplicationResponseFilterSensitiveLog: (obj: StopApplicationResponse) => any;
|
|
2383
|
+
/**
|
|
2384
|
+
* @internal
|
|
2385
|
+
*/
|
|
2386
|
+
export declare const UpdateApplicationRequestFilterSensitiveLog: (obj: UpdateApplicationRequest) => any;
|
|
2387
|
+
/**
|
|
2388
|
+
* @internal
|
|
2389
|
+
*/
|
|
2390
|
+
export declare const UpdateApplicationResponseFilterSensitiveLog: (obj: UpdateApplicationResponse) => any;
|
|
2391
|
+
/**
|
|
2392
|
+
* @internal
|
|
2393
|
+
*/
|
|
2394
|
+
export declare const HighAvailabilityConfigFilterSensitiveLog: (obj: HighAvailabilityConfig) => any;
|
|
2395
|
+
/**
|
|
2396
|
+
* @internal
|
|
2397
|
+
*/
|
|
2398
|
+
export declare const EfsStorageConfigurationFilterSensitiveLog: (obj: EfsStorageConfiguration) => any;
|
|
2399
|
+
/**
|
|
2400
|
+
* @internal
|
|
2401
|
+
*/
|
|
2402
|
+
export declare const FsxStorageConfigurationFilterSensitiveLog: (obj: FsxStorageConfiguration) => any;
|
|
2403
|
+
/**
|
|
2404
|
+
* @internal
|
|
2405
|
+
*/
|
|
2406
|
+
export declare const StorageConfigurationFilterSensitiveLog: (obj: StorageConfiguration) => any;
|
|
2407
|
+
/**
|
|
2408
|
+
* @internal
|
|
2409
|
+
*/
|
|
2410
|
+
export declare const CreateEnvironmentRequestFilterSensitiveLog: (obj: CreateEnvironmentRequest) => any;
|
|
2411
|
+
/**
|
|
2412
|
+
* @internal
|
|
2413
|
+
*/
|
|
2414
|
+
export declare const CreateEnvironmentResponseFilterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
|
|
2415
|
+
/**
|
|
2416
|
+
* @internal
|
|
2417
|
+
*/
|
|
2418
|
+
export declare const DeleteEnvironmentRequestFilterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
|
|
2419
|
+
/**
|
|
2420
|
+
* @internal
|
|
2421
|
+
*/
|
|
2422
|
+
export declare const DeleteEnvironmentResponseFilterSensitiveLog: (obj: DeleteEnvironmentResponse) => any;
|
|
2423
|
+
/**
|
|
2424
|
+
* @internal
|
|
2425
|
+
*/
|
|
2426
|
+
export declare const GetEnvironmentRequestFilterSensitiveLog: (obj: GetEnvironmentRequest) => any;
|
|
2427
|
+
/**
|
|
2428
|
+
* @internal
|
|
2429
|
+
*/
|
|
2430
|
+
export declare const MaintenanceScheduleFilterSensitiveLog: (obj: MaintenanceSchedule) => any;
|
|
2431
|
+
/**
|
|
2432
|
+
* @internal
|
|
2433
|
+
*/
|
|
2434
|
+
export declare const PendingMaintenanceFilterSensitiveLog: (obj: PendingMaintenance) => any;
|
|
2435
|
+
/**
|
|
2436
|
+
* @internal
|
|
2437
|
+
*/
|
|
2438
|
+
export declare const GetEnvironmentResponseFilterSensitiveLog: (obj: GetEnvironmentResponse) => any;
|
|
2439
|
+
/**
|
|
2440
|
+
* @internal
|
|
2441
|
+
*/
|
|
2442
|
+
export declare const ListEnvironmentsRequestFilterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
|
|
2443
|
+
/**
|
|
2444
|
+
* @internal
|
|
2445
|
+
*/
|
|
2446
|
+
export declare const EnvironmentSummaryFilterSensitiveLog: (obj: EnvironmentSummary) => any;
|
|
2447
|
+
/**
|
|
2448
|
+
* @internal
|
|
2449
|
+
*/
|
|
2450
|
+
export declare const ListEnvironmentsResponseFilterSensitiveLog: (obj: ListEnvironmentsResponse) => any;
|
|
2451
|
+
/**
|
|
2452
|
+
* @internal
|
|
2453
|
+
*/
|
|
2454
|
+
export declare const UpdateEnvironmentRequestFilterSensitiveLog: (obj: UpdateEnvironmentRequest) => any;
|
|
2455
|
+
/**
|
|
2456
|
+
* @internal
|
|
2457
|
+
*/
|
|
2458
|
+
export declare const UpdateEnvironmentResponseFilterSensitiveLog: (obj: UpdateEnvironmentResponse) => any;
|
|
2459
|
+
/**
|
|
2460
|
+
* @internal
|
|
2461
|
+
*/
|
|
2462
|
+
export declare const ListEngineVersionsRequestFilterSensitiveLog: (obj: ListEngineVersionsRequest) => any;
|
|
2463
|
+
/**
|
|
2464
|
+
* @internal
|
|
2465
|
+
*/
|
|
2466
|
+
export declare const EngineVersionsSummaryFilterSensitiveLog: (obj: EngineVersionsSummary) => any;
|
|
2467
|
+
/**
|
|
2468
|
+
* @internal
|
|
2469
|
+
*/
|
|
2470
|
+
export declare const ListEngineVersionsResponseFilterSensitiveLog: (obj: ListEngineVersionsResponse) => any;
|
|
2471
|
+
/**
|
|
2472
|
+
* @internal
|
|
2473
|
+
*/
|
|
2474
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
2475
|
+
/**
|
|
2476
|
+
* @internal
|
|
2477
|
+
*/
|
|
2478
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2479
|
+
/**
|
|
2480
|
+
* @internal
|
|
2481
|
+
*/
|
|
2482
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2483
|
+
/**
|
|
2484
|
+
* @internal
|
|
2485
|
+
*/
|
|
2486
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2487
|
+
/**
|
|
2488
|
+
* @internal
|
|
2489
|
+
*/
|
|
2490
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2491
|
+
/**
|
|
2492
|
+
* @internal
|
|
2493
|
+
*/
|
|
2494
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|