@aws-sdk/client-m2 3.687.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.
@@ -8,29 +8,29 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  );
9
9
  }
10
10
  export interface AlternateKey {
11
- name?: string;
11
+ name?: string | undefined;
12
12
  offset: number | undefined;
13
13
  length: number | undefined;
14
- allowDuplicates?: boolean;
14
+ allowDuplicates?: boolean | undefined;
15
15
  }
16
16
  export interface CancelBatchJobExecutionRequest {
17
17
  applicationId: string | undefined;
18
18
  executionId: string | undefined;
19
- authSecretsManagerArn?: string;
19
+ authSecretsManagerArn?: string | undefined;
20
20
  }
21
21
  export interface CancelBatchJobExecutionResponse {}
22
22
  export declare class ConflictException extends __BaseException {
23
23
  readonly name: "ConflictException";
24
24
  readonly $fault: "client";
25
- resourceId?: string;
26
- resourceType?: string;
25
+ resourceId?: string | undefined;
26
+ resourceType?: string | undefined;
27
27
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
28
28
  }
29
29
  export declare class InternalServerException extends __BaseException {
30
30
  readonly name: "InternalServerException";
31
31
  readonly $fault: "server";
32
32
  $retryable: {};
33
- retryAfterSeconds?: number;
33
+ retryAfterSeconds?: number | undefined;
34
34
  constructor(
35
35
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
36
36
  );
@@ -38,8 +38,8 @@ export declare class InternalServerException extends __BaseException {
38
38
  export declare class ResourceNotFoundException extends __BaseException {
39
39
  readonly name: "ResourceNotFoundException";
40
40
  readonly $fault: "client";
41
- resourceId?: string;
42
- resourceType?: string;
41
+ resourceId?: string | undefined;
42
+ resourceType?: string | undefined;
43
43
  constructor(
44
44
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
45
45
  );
@@ -50,9 +50,9 @@ export declare class ThrottlingException extends __BaseException {
50
50
  $retryable: {
51
51
  throttling: boolean;
52
52
  };
53
- serviceCode?: string;
54
- quotaCode?: string;
55
- retryAfterSeconds?: number;
53
+ serviceCode?: string | undefined;
54
+ quotaCode?: string | undefined;
55
+ retryAfterSeconds?: number | undefined;
56
56
  constructor(
57
57
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
58
58
  );
@@ -74,8 +74,8 @@ export type ValidationExceptionReason =
74
74
  export declare class ValidationException extends __BaseException {
75
75
  readonly name: "ValidationException";
76
76
  readonly $fault: "client";
77
- reason?: ValidationExceptionReason;
78
- fieldList?: ValidationExceptionField[];
77
+ reason?: ValidationExceptionReason | undefined;
78
+ fieldList?: ValidationExceptionField[] | undefined;
79
79
  constructor(
80
80
  opts: __ExceptionOptionType<ValidationException, __BaseException>
81
81
  );
@@ -114,13 +114,13 @@ export declare const EngineType: {
114
114
  export type EngineType = (typeof EngineType)[keyof typeof EngineType];
115
115
  export interface CreateApplicationRequest {
116
116
  name: string | undefined;
117
- description?: string;
117
+ description?: string | undefined;
118
118
  engineType: EngineType | undefined;
119
119
  definition: Definition | undefined;
120
- tags?: Record<string, string>;
121
- clientToken?: string;
122
- kmsKeyId?: string;
123
- roleArn?: string;
120
+ tags?: Record<string, string> | undefined;
121
+ clientToken?: string | undefined;
122
+ kmsKeyId?: string | undefined;
123
+ roleArn?: string | undefined;
124
124
  }
125
125
  export interface CreateApplicationResponse {
126
126
  applicationArn: string | undefined;
@@ -130,38 +130,38 @@ export interface CreateApplicationResponse {
130
130
  export declare class ServiceQuotaExceededException extends __BaseException {
131
131
  readonly name: "ServiceQuotaExceededException";
132
132
  readonly $fault: "client";
133
- resourceId?: string;
134
- resourceType?: string;
135
- serviceCode?: string;
136
- quotaCode?: string;
133
+ resourceId?: string | undefined;
134
+ resourceType?: string | undefined;
135
+ serviceCode?: string | undefined;
136
+ quotaCode?: string | undefined;
137
137
  constructor(
138
138
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
139
139
  );
140
140
  }
141
141
  export interface GdgAttributes {
142
- limit?: number;
143
- rollDisposition?: string;
142
+ limit?: number | undefined;
143
+ rollDisposition?: string | undefined;
144
144
  }
145
145
  export interface PoAttributes {
146
146
  format: string | undefined;
147
- encoding?: string;
147
+ encoding?: string | undefined;
148
148
  memberFileExtensions: string[] | undefined;
149
149
  }
150
150
  export interface PsAttributes {
151
151
  format: string | undefined;
152
- encoding?: string;
152
+ encoding?: string | undefined;
153
153
  }
154
154
  export interface PrimaryKey {
155
- name?: string;
155
+ name?: string | undefined;
156
156
  offset: number | undefined;
157
157
  length: number | undefined;
158
158
  }
159
159
  export interface VsamAttributes {
160
160
  format: string | undefined;
161
- encoding?: string;
162
- compressed?: boolean;
163
- primaryKey?: PrimaryKey;
164
- alternateKeys?: AlternateKey[];
161
+ encoding?: string | undefined;
162
+ compressed?: boolean | undefined;
163
+ primaryKey?: PrimaryKey | undefined;
164
+ alternateKeys?: AlternateKey[] | undefined;
165
165
  }
166
166
  export type DatasetOrgAttributes =
167
167
  | DatasetOrgAttributes.GdgMember
@@ -219,10 +219,10 @@ export interface RecordLength {
219
219
  max: number | undefined;
220
220
  }
221
221
  export interface DataSet {
222
- storageType?: string;
222
+ storageType?: string | undefined;
223
223
  datasetName: string | undefined;
224
224
  datasetOrg: DatasetOrgAttributes | undefined;
225
- relativePath?: string;
225
+ relativePath?: string | undefined;
226
226
  recordLength: RecordLength | undefined;
227
227
  }
228
228
  export type ExternalLocation =
@@ -277,7 +277,7 @@ export declare namespace DataSetImportConfig {
277
277
  export interface CreateDataSetImportTaskRequest {
278
278
  applicationId: string | undefined;
279
279
  importConfig: DataSetImportConfig | undefined;
280
- clientToken?: string;
280
+ clientToken?: string | undefined;
281
281
  }
282
282
  export interface CreateDataSetImportTaskResponse {
283
283
  taskId: string | undefined;
@@ -286,7 +286,7 @@ export interface CreateDeploymentRequest {
286
286
  environmentId: string | undefined;
287
287
  applicationId: string | undefined;
288
288
  applicationVersion: number | undefined;
289
- clientToken?: string;
289
+ clientToken?: string | undefined;
290
290
  }
291
291
  export interface CreateDeploymentResponse {
292
292
  deploymentId: string | undefined;
@@ -314,7 +314,7 @@ export type DeploymentLifecycle =
314
314
  export interface DeployedVersionSummary {
315
315
  applicationVersion: number | undefined;
316
316
  status: DeploymentLifecycle | undefined;
317
- statusReason?: string;
317
+ statusReason?: string | undefined;
318
318
  }
319
319
  export declare const ApplicationVersionLifecycle: {
320
320
  readonly AVAILABLE: "Available";
@@ -326,7 +326,7 @@ export type ApplicationVersionLifecycle =
326
326
  export interface ApplicationVersionSummary {
327
327
  applicationVersion: number | undefined;
328
328
  status: ApplicationVersionLifecycle | undefined;
329
- statusReason?: string;
329
+ statusReason?: string | undefined;
330
330
  creationTime: Date | undefined;
331
331
  }
332
332
  export interface LogGroupSummary {
@@ -350,25 +350,25 @@ export type ApplicationLifecycle =
350
350
  (typeof ApplicationLifecycle)[keyof typeof ApplicationLifecycle];
351
351
  export interface GetApplicationResponse {
352
352
  name: string | undefined;
353
- description?: string;
353
+ description?: string | undefined;
354
354
  applicationId: string | undefined;
355
355
  applicationArn: string | undefined;
356
356
  status: ApplicationLifecycle | undefined;
357
357
  latestVersion: ApplicationVersionSummary | undefined;
358
- deployedVersion?: DeployedVersionSummary;
358
+ deployedVersion?: DeployedVersionSummary | undefined;
359
359
  engineType: EngineType | undefined;
360
- logGroups?: LogGroupSummary[];
360
+ logGroups?: LogGroupSummary[] | undefined;
361
361
  creationTime: Date | undefined;
362
- lastStartTime?: Date;
363
- tags?: Record<string, string>;
364
- environmentId?: string;
365
- targetGroupArns?: string[];
366
- listenerArns?: string[];
367
- listenerPorts?: number[];
368
- loadBalancerDnsName?: string;
369
- statusReason?: string;
370
- kmsKeyId?: string;
371
- roleArn?: string;
362
+ lastStartTime?: Date | undefined;
363
+ tags?: Record<string, string> | undefined;
364
+ environmentId?: string | undefined;
365
+ targetGroupArns?: string[] | undefined;
366
+ listenerArns?: string[] | undefined;
367
+ listenerPorts?: number[] | undefined;
368
+ loadBalancerDnsName?: string | undefined;
369
+ statusReason?: string | undefined;
370
+ kmsKeyId?: string | undefined;
371
+ roleArn?: string | undefined;
372
372
  }
373
373
  export interface GetApplicationVersionRequest {
374
374
  applicationId: string | undefined;
@@ -377,11 +377,11 @@ export interface GetApplicationVersionRequest {
377
377
  export interface GetApplicationVersionResponse {
378
378
  name: string | undefined;
379
379
  applicationVersion: number | undefined;
380
- description?: string;
380
+ description?: string | undefined;
381
381
  definitionContent: string | undefined;
382
382
  status: ApplicationVersionLifecycle | undefined;
383
383
  creationTime: Date | undefined;
384
- statusReason?: string;
384
+ statusReason?: string | undefined;
385
385
  }
386
386
  export interface GetBatchJobExecutionRequest {
387
387
  applicationId: string | undefined;
@@ -389,13 +389,13 @@ export interface GetBatchJobExecutionRequest {
389
389
  }
390
390
  export interface FileBatchJobIdentifier {
391
391
  fileName: string | undefined;
392
- folderPath?: string;
392
+ folderPath?: string | undefined;
393
393
  }
394
394
  export interface JobStepRestartMarker {
395
395
  fromStep: string | undefined;
396
- fromProcStep?: string;
397
- toStep?: string;
398
- toProcStep?: string;
396
+ fromProcStep?: string | undefined;
397
+ toStep?: string | undefined;
398
+ toProcStep?: string | undefined;
399
399
  }
400
400
  export interface RestartBatchJobIdentifier {
401
401
  executionId: string | undefined;
@@ -430,7 +430,7 @@ export declare namespace JobIdentifier {
430
430
  }
431
431
  export interface S3BatchJobIdentifier {
432
432
  bucket: string | undefined;
433
- keyPrefix?: string;
433
+ keyPrefix?: string | undefined;
434
434
  identifier: JobIdentifier | undefined;
435
435
  }
436
436
  export interface ScriptBatchJobIdentifier {
@@ -510,17 +510,17 @@ export type BatchJobExecutionStatus =
510
510
  export interface GetBatchJobExecutionResponse {
511
511
  executionId: string | undefined;
512
512
  applicationId: string | undefined;
513
- jobId?: string;
514
- jobName?: string;
515
- jobUser?: string;
516
- jobType?: BatchJobType;
513
+ jobId?: string | undefined;
514
+ jobName?: string | undefined;
515
+ jobUser?: string | undefined;
516
+ jobType?: BatchJobType | undefined;
517
517
  status: BatchJobExecutionStatus | undefined;
518
518
  startTime: Date | undefined;
519
- endTime?: Date;
520
- statusReason?: string;
521
- returnCode?: string;
522
- batchJobIdentifier?: BatchJobIdentifier;
523
- jobStepRestartMarker?: JobStepRestartMarker;
519
+ endTime?: Date | undefined;
520
+ statusReason?: string | undefined;
521
+ returnCode?: string | undefined;
522
+ batchJobIdentifier?: BatchJobIdentifier | undefined;
523
+ jobStepRestartMarker?: JobStepRestartMarker | undefined;
524
524
  }
525
525
  export declare class ExecutionTimeoutException extends __BaseException {
526
526
  readonly name: "ExecutionTimeoutException";
@@ -535,8 +535,8 @@ export interface GetDataSetDetailsRequest {
535
535
  dataSetName: string | undefined;
536
536
  }
537
537
  export interface GdgDetailAttributes {
538
- limit?: number;
539
- rollDisposition?: string;
538
+ limit?: number | undefined;
539
+ rollDisposition?: string | undefined;
540
540
  }
541
541
  export interface PoDetailAttributes {
542
542
  format: string | undefined;
@@ -547,12 +547,12 @@ export interface PsDetailAttributes {
547
547
  encoding: string | undefined;
548
548
  }
549
549
  export interface VsamDetailAttributes {
550
- encoding?: string;
551
- recordFormat?: string;
552
- compressed?: boolean;
553
- cacheAtStartup?: boolean;
554
- primaryKey?: PrimaryKey;
555
- alternateKeys?: AlternateKey[];
550
+ encoding?: string | undefined;
551
+ recordFormat?: string | undefined;
552
+ compressed?: boolean | undefined;
553
+ cacheAtStartup?: boolean | undefined;
554
+ primaryKey?: PrimaryKey | undefined;
555
+ alternateKeys?: AlternateKey[] | undefined;
556
556
  }
557
557
  export type DatasetDetailOrgAttributes =
558
558
  | DatasetDetailOrgAttributes.GdgMember
@@ -607,14 +607,14 @@ export declare namespace DatasetDetailOrgAttributes {
607
607
  }
608
608
  export interface GetDataSetDetailsResponse {
609
609
  dataSetName: string | undefined;
610
- dataSetOrg?: DatasetDetailOrgAttributes;
611
- recordLength?: number;
612
- location?: string;
613
- blocksize?: number;
614
- creationTime?: Date;
615
- lastUpdatedTime?: Date;
616
- lastReferencedTime?: Date;
617
- fileSize?: number;
610
+ dataSetOrg?: DatasetDetailOrgAttributes | undefined;
611
+ recordLength?: number | undefined;
612
+ location?: string | undefined;
613
+ blocksize?: number | undefined;
614
+ creationTime?: Date | undefined;
615
+ lastUpdatedTime?: Date | undefined;
616
+ lastReferencedTime?: Date | undefined;
617
+ fileSize?: number | undefined;
618
618
  }
619
619
  export declare class ServiceUnavailableException extends __BaseException {
620
620
  readonly name: "ServiceUnavailableException";
@@ -646,7 +646,7 @@ export interface DataSetImportSummary {
646
646
  export interface GetDataSetImportTaskResponse {
647
647
  taskId: string | undefined;
648
648
  status: DataSetTaskLifecycle | undefined;
649
- summary?: DataSetImportSummary;
649
+ summary?: DataSetImportSummary | undefined;
650
650
  }
651
651
  export interface GetDeploymentRequest {
652
652
  deploymentId: string | undefined;
@@ -659,13 +659,13 @@ export interface GetDeploymentResponse {
659
659
  applicationVersion: number | undefined;
660
660
  status: DeploymentLifecycle | undefined;
661
661
  creationTime: Date | undefined;
662
- statusReason?: string;
662
+ statusReason?: string | undefined;
663
663
  }
664
664
  export interface ListApplicationsRequest {
665
- nextToken?: string;
666
- maxResults?: number;
667
- names?: string[];
668
- environmentId?: string;
665
+ nextToken?: string | undefined;
666
+ maxResults?: number | undefined;
667
+ names?: string[] | undefined;
668
+ environmentId?: string | undefined;
669
669
  }
670
670
  export declare const ApplicationDeploymentLifecycle: {
671
671
  readonly DEPLOYED: "Deployed";
@@ -675,41 +675,41 @@ export type ApplicationDeploymentLifecycle =
675
675
  (typeof ApplicationDeploymentLifecycle)[keyof typeof ApplicationDeploymentLifecycle];
676
676
  export interface ApplicationSummary {
677
677
  name: string | undefined;
678
- description?: string;
678
+ description?: string | undefined;
679
679
  applicationId: string | undefined;
680
680
  applicationArn: string | undefined;
681
681
  applicationVersion: number | undefined;
682
682
  status: ApplicationLifecycle | undefined;
683
683
  engineType: EngineType | undefined;
684
684
  creationTime: Date | undefined;
685
- environmentId?: string;
686
- lastStartTime?: Date;
687
- versionStatus?: ApplicationVersionLifecycle;
688
- deploymentStatus?: ApplicationDeploymentLifecycle;
689
- roleArn?: string;
685
+ environmentId?: string | undefined;
686
+ lastStartTime?: Date | undefined;
687
+ versionStatus?: ApplicationVersionLifecycle | undefined;
688
+ deploymentStatus?: ApplicationDeploymentLifecycle | undefined;
689
+ roleArn?: string | undefined;
690
690
  }
691
691
  export interface ListApplicationsResponse {
692
692
  applications: ApplicationSummary[] | undefined;
693
- nextToken?: string;
693
+ nextToken?: string | undefined;
694
694
  }
695
695
  export interface ListApplicationVersionsRequest {
696
- nextToken?: string;
697
- maxResults?: number;
696
+ nextToken?: string | undefined;
697
+ maxResults?: number | undefined;
698
698
  applicationId: string | undefined;
699
699
  }
700
700
  export interface ListApplicationVersionsResponse {
701
701
  applicationVersions: ApplicationVersionSummary[] | undefined;
702
- nextToken?: string;
702
+ nextToken?: string | undefined;
703
703
  }
704
704
  export interface ListBatchJobDefinitionsRequest {
705
- nextToken?: string;
706
- maxResults?: number;
705
+ nextToken?: string | undefined;
706
+ maxResults?: number | undefined;
707
707
  applicationId: string | undefined;
708
- prefix?: string;
708
+ prefix?: string | undefined;
709
709
  }
710
710
  export interface FileBatchJobDefinition {
711
711
  fileName: string | undefined;
712
- folderPath?: string;
712
+ folderPath?: string | undefined;
713
713
  }
714
714
  export interface ScriptBatchJobDefinition {
715
715
  scriptName: string | undefined;
@@ -743,87 +743,87 @@ export declare namespace BatchJobDefinition {
743
743
  }
744
744
  export interface ListBatchJobDefinitionsResponse {
745
745
  batchJobDefinitions: BatchJobDefinition[] | undefined;
746
- nextToken?: string;
746
+ nextToken?: string | undefined;
747
747
  }
748
748
  export interface ListBatchJobExecutionsRequest {
749
- nextToken?: string;
750
- maxResults?: number;
749
+ nextToken?: string | undefined;
750
+ maxResults?: number | undefined;
751
751
  applicationId: string | undefined;
752
- executionIds?: string[];
753
- jobName?: string;
754
- status?: BatchJobExecutionStatus;
755
- startedAfter?: Date;
756
- startedBefore?: Date;
752
+ executionIds?: string[] | undefined;
753
+ jobName?: string | undefined;
754
+ status?: BatchJobExecutionStatus | undefined;
755
+ startedAfter?: Date | undefined;
756
+ startedBefore?: Date | undefined;
757
757
  }
758
758
  export interface BatchJobExecutionSummary {
759
759
  executionId: string | undefined;
760
760
  applicationId: string | undefined;
761
- jobId?: string;
762
- jobName?: string;
763
- jobType?: BatchJobType;
761
+ jobId?: string | undefined;
762
+ jobName?: string | undefined;
763
+ jobType?: BatchJobType | undefined;
764
764
  status: BatchJobExecutionStatus | undefined;
765
765
  startTime: Date | undefined;
766
- endTime?: Date;
767
- returnCode?: string;
768
- batchJobIdentifier?: BatchJobIdentifier;
766
+ endTime?: Date | undefined;
767
+ returnCode?: string | undefined;
768
+ batchJobIdentifier?: BatchJobIdentifier | undefined;
769
769
  }
770
770
  export interface ListBatchJobExecutionsResponse {
771
771
  batchJobExecutions: BatchJobExecutionSummary[] | undefined;
772
- nextToken?: string;
772
+ nextToken?: string | undefined;
773
773
  }
774
774
  export interface ListBatchJobRestartPointsRequest {
775
775
  applicationId: string | undefined;
776
776
  executionId: string | undefined;
777
- authSecretsManagerArn?: string;
777
+ authSecretsManagerArn?: string | undefined;
778
778
  }
779
779
  export interface JobStep {
780
- stepNumber?: number;
781
- stepName?: string;
782
- procStepNumber?: number;
783
- procStepName?: string;
784
- stepCondCode?: string;
785
- stepRestartable?: boolean;
780
+ stepNumber?: number | undefined;
781
+ stepName?: string | undefined;
782
+ procStepNumber?: number | undefined;
783
+ procStepName?: string | undefined;
784
+ stepCondCode?: string | undefined;
785
+ stepRestartable?: boolean | undefined;
786
786
  }
787
787
  export interface ListBatchJobRestartPointsResponse {
788
- batchJobSteps?: JobStep[];
788
+ batchJobSteps?: JobStep[] | undefined;
789
789
  }
790
790
  export interface ListDataSetImportHistoryRequest {
791
- nextToken?: string;
792
- maxResults?: number;
791
+ nextToken?: string | undefined;
792
+ maxResults?: number | undefined;
793
793
  applicationId: string | undefined;
794
794
  }
795
795
  export interface DataSetImportTask {
796
796
  taskId: string | undefined;
797
797
  status: DataSetTaskLifecycle | undefined;
798
798
  summary: DataSetImportSummary | undefined;
799
- statusReason?: string;
799
+ statusReason?: string | undefined;
800
800
  }
801
801
  export interface ListDataSetImportHistoryResponse {
802
802
  dataSetImportTasks: DataSetImportTask[] | undefined;
803
- nextToken?: string;
803
+ nextToken?: string | undefined;
804
804
  }
805
805
  export interface ListDataSetsRequest {
806
806
  applicationId: string | undefined;
807
- nextToken?: string;
808
- maxResults?: number;
809
- prefix?: string;
810
- nameFilter?: string;
807
+ nextToken?: string | undefined;
808
+ maxResults?: number | undefined;
809
+ prefix?: string | undefined;
810
+ nameFilter?: string | undefined;
811
811
  }
812
812
  export interface DataSetSummary {
813
813
  dataSetName: string | undefined;
814
- dataSetOrg?: string;
815
- format?: string;
816
- creationTime?: Date;
817
- lastUpdatedTime?: Date;
818
- lastReferencedTime?: Date;
814
+ dataSetOrg?: string | undefined;
815
+ format?: string | undefined;
816
+ creationTime?: Date | undefined;
817
+ lastUpdatedTime?: Date | undefined;
818
+ lastReferencedTime?: Date | undefined;
819
819
  }
820
820
  export interface ListDataSetsResponse {
821
821
  dataSets: DataSetSummary[] | undefined;
822
- nextToken?: string;
822
+ nextToken?: string | undefined;
823
823
  }
824
824
  export interface ListDeploymentsRequest {
825
- nextToken?: string;
826
- maxResults?: number;
825
+ nextToken?: string | undefined;
826
+ maxResults?: number | undefined;
827
827
  applicationId: string | undefined;
828
828
  }
829
829
  export interface DeploymentSummary {
@@ -833,11 +833,11 @@ export interface DeploymentSummary {
833
833
  applicationVersion: number | undefined;
834
834
  status: DeploymentLifecycle | undefined;
835
835
  creationTime: Date | undefined;
836
- statusReason?: string;
836
+ statusReason?: string | undefined;
837
837
  }
838
838
  export interface ListDeploymentsResponse {
839
839
  deployments: DeploymentSummary[] | undefined;
840
- nextToken?: string;
840
+ nextToken?: string | undefined;
841
841
  }
842
842
  export interface StartApplicationRequest {
843
843
  applicationId: string | undefined;
@@ -846,22 +846,22 @@ export interface StartApplicationResponse {}
846
846
  export interface StartBatchJobRequest {
847
847
  applicationId: string | undefined;
848
848
  batchJobIdentifier: BatchJobIdentifier | undefined;
849
- jobParams?: Record<string, string>;
850
- authSecretsManagerArn?: string;
849
+ jobParams?: Record<string, string> | undefined;
850
+ authSecretsManagerArn?: string | undefined;
851
851
  }
852
852
  export interface StartBatchJobResponse {
853
853
  executionId: string | undefined;
854
854
  }
855
855
  export interface StopApplicationRequest {
856
856
  applicationId: string | undefined;
857
- forceStop?: boolean;
857
+ forceStop?: boolean | undefined;
858
858
  }
859
859
  export interface StopApplicationResponse {}
860
860
  export interface UpdateApplicationRequest {
861
861
  applicationId: string | undefined;
862
- description?: string;
862
+ description?: string | undefined;
863
863
  currentApplicationVersion: number | undefined;
864
- definition?: Definition;
864
+ definition?: Definition | undefined;
865
865
  }
866
866
  export interface UpdateApplicationResponse {
867
867
  applicationVersion: number | undefined;
@@ -907,18 +907,18 @@ export declare namespace StorageConfiguration {
907
907
  export interface CreateEnvironmentRequest {
908
908
  name: string | undefined;
909
909
  instanceType: string | undefined;
910
- description?: string;
910
+ description?: string | undefined;
911
911
  engineType: EngineType | undefined;
912
- engineVersion?: string;
913
- subnetIds?: string[];
914
- securityGroupIds?: string[];
915
- storageConfigurations?: StorageConfiguration[];
916
- publiclyAccessible?: boolean;
917
- highAvailabilityConfig?: HighAvailabilityConfig;
918
- tags?: Record<string, string>;
919
- preferredMaintenanceWindow?: string;
920
- clientToken?: string;
921
- kmsKeyId?: string;
912
+ engineVersion?: string | undefined;
913
+ subnetIds?: string[] | undefined;
914
+ securityGroupIds?: string[] | undefined;
915
+ storageConfigurations?: StorageConfiguration[] | undefined;
916
+ publiclyAccessible?: boolean | undefined;
917
+ highAvailabilityConfig?: HighAvailabilityConfig | undefined;
918
+ tags?: Record<string, string> | undefined;
919
+ preferredMaintenanceWindow?: string | undefined;
920
+ clientToken?: string | undefined;
921
+ kmsKeyId?: string | undefined;
922
922
  }
923
923
  export interface CreateEnvironmentResponse {
924
924
  environmentId: string | undefined;
@@ -931,12 +931,12 @@ export interface GetEnvironmentRequest {
931
931
  environmentId: string | undefined;
932
932
  }
933
933
  export interface MaintenanceSchedule {
934
- startTime?: Date;
935
- endTime?: Date;
934
+ startTime?: Date | undefined;
935
+ endTime?: Date | undefined;
936
936
  }
937
937
  export interface PendingMaintenance {
938
- schedule?: MaintenanceSchedule;
939
- engineVersion?: string;
938
+ schedule?: MaintenanceSchedule | undefined;
939
+ engineVersion?: string | undefined;
940
940
  }
941
941
  export declare const EnvironmentLifecycle: {
942
942
  readonly AVAILABLE: "Available";
@@ -950,7 +950,7 @@ export type EnvironmentLifecycle =
950
950
  (typeof EnvironmentLifecycle)[keyof typeof EnvironmentLifecycle];
951
951
  export interface GetEnvironmentResponse {
952
952
  name: string | undefined;
953
- description?: string;
953
+ description?: string | undefined;
954
954
  environmentArn: string | undefined;
955
955
  environmentId: string | undefined;
956
956
  instanceType: string | undefined;
@@ -961,22 +961,22 @@ export interface GetEnvironmentResponse {
961
961
  subnetIds: string[] | undefined;
962
962
  securityGroupIds: string[] | undefined;
963
963
  creationTime: Date | undefined;
964
- storageConfigurations?: StorageConfiguration[];
965
- tags?: Record<string, string>;
966
- highAvailabilityConfig?: HighAvailabilityConfig;
967
- publiclyAccessible?: boolean;
968
- actualCapacity?: number;
969
- loadBalancerArn?: string;
970
- statusReason?: string;
971
- preferredMaintenanceWindow?: string;
972
- pendingMaintenance?: PendingMaintenance;
973
- kmsKeyId?: string;
964
+ storageConfigurations?: StorageConfiguration[] | undefined;
965
+ tags?: Record<string, string> | undefined;
966
+ highAvailabilityConfig?: HighAvailabilityConfig | undefined;
967
+ publiclyAccessible?: boolean | undefined;
968
+ actualCapacity?: number | undefined;
969
+ loadBalancerArn?: string | undefined;
970
+ statusReason?: string | undefined;
971
+ preferredMaintenanceWindow?: string | undefined;
972
+ pendingMaintenance?: PendingMaintenance | undefined;
973
+ kmsKeyId?: string | undefined;
974
974
  }
975
975
  export interface ListEnvironmentsRequest {
976
- nextToken?: string;
977
- maxResults?: number;
978
- names?: string[];
979
- engineType?: EngineType;
976
+ nextToken?: string | undefined;
977
+ maxResults?: number | undefined;
978
+ names?: string[] | undefined;
979
+ engineType?: EngineType | undefined;
980
980
  }
981
981
  export interface EnvironmentSummary {
982
982
  name: string | undefined;
@@ -990,16 +990,16 @@ export interface EnvironmentSummary {
990
990
  }
991
991
  export interface ListEnvironmentsResponse {
992
992
  environments: EnvironmentSummary[] | undefined;
993
- nextToken?: string;
993
+ nextToken?: string | undefined;
994
994
  }
995
995
  export interface UpdateEnvironmentRequest {
996
996
  environmentId: string | undefined;
997
- desiredCapacity?: number;
998
- instanceType?: string;
999
- engineVersion?: string;
1000
- preferredMaintenanceWindow?: string;
1001
- applyDuringMaintenanceWindow?: boolean;
1002
- forceUpdate?: boolean;
997
+ desiredCapacity?: number | undefined;
998
+ instanceType?: string | undefined;
999
+ engineVersion?: string | undefined;
1000
+ preferredMaintenanceWindow?: string | undefined;
1001
+ applyDuringMaintenanceWindow?: boolean | undefined;
1002
+ forceUpdate?: boolean | undefined;
1003
1003
  }
1004
1004
  export interface UpdateEnvironmentResponse {
1005
1005
  environmentId: string | undefined;
@@ -1008,9 +1008,9 @@ export interface GetSignedBluinsightsUrlResponse {
1008
1008
  signedBiUrl: string | undefined;
1009
1009
  }
1010
1010
  export interface ListEngineVersionsRequest {
1011
- engineType?: EngineType;
1012
- nextToken?: string;
1013
- maxResults?: number;
1011
+ engineType?: EngineType | undefined;
1012
+ nextToken?: string | undefined;
1013
+ maxResults?: number | undefined;
1014
1014
  }
1015
1015
  export interface EngineVersionsSummary {
1016
1016
  engineType: string | undefined;
@@ -1018,7 +1018,7 @@ export interface EngineVersionsSummary {
1018
1018
  }
1019
1019
  export interface ListEngineVersionsResponse {
1020
1020
  engineVersions: EngineVersionsSummary[] | undefined;
1021
- nextToken?: string;
1021
+ nextToken?: string | undefined;
1022
1022
  }
1023
1023
  export interface ListTagsForResourceRequest {
1024
1024
  resourceArn: string | undefined;