@aws-sdk/client-deadline 3.686.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,11 +3,11 @@ import { DocumentType as __DocumentType } from "@smithy/types";
3
3
  import { DeadlineServiceException as __BaseException } from "./DeadlineServiceException";
4
4
  export interface AcceleratorCountRange {
5
5
  min: number | undefined;
6
- max?: number;
6
+ max?: number | undefined;
7
7
  }
8
8
  export interface AcceleratorTotalMemoryMiBRange {
9
9
  min: number | undefined;
10
- max?: number;
10
+ max?: number | undefined;
11
11
  }
12
12
  export declare const AcceleratorType: {
13
13
  readonly GPU: "gpu";
@@ -17,7 +17,7 @@ export type AcceleratorType =
17
17
  export declare class AccessDeniedException extends __BaseException {
18
18
  readonly name: "AccessDeniedException";
19
19
  readonly $fault: "client";
20
- context?: Record<string, string>;
20
+ context?: Record<string, string> | undefined;
21
21
  constructor(
22
22
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
23
23
  );
@@ -30,12 +30,12 @@ export interface AssignedEnvironmentExitSessionActionDefinition {
30
30
  }
31
31
  export interface LogConfiguration {
32
32
  logDriver: string | undefined;
33
- options?: Record<string, string>;
34
- parameters?: Record<string, string>;
35
- error?: string;
33
+ options?: Record<string, string> | undefined;
34
+ parameters?: Record<string, string> | undefined;
35
+ error?: string | undefined;
36
36
  }
37
37
  export interface AssignedSyncInputJobAttachmentsSessionActionDefinition {
38
- stepId?: string;
38
+ stepId?: string | undefined;
39
39
  }
40
40
  export type TaskParameterValue =
41
41
  | TaskParameterValue.FloatMember
@@ -185,7 +185,7 @@ export declare class InternalServerErrorException extends __BaseException {
185
185
  readonly name: "InternalServerErrorException";
186
186
  readonly $fault: "server";
187
187
  $retryable: {};
188
- retryAfterSeconds?: number;
188
+ retryAfterSeconds?: number | undefined;
189
189
  constructor(
190
190
  opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
191
191
  );
@@ -195,7 +195,7 @@ export declare class ResourceNotFoundException extends __BaseException {
195
195
  readonly $fault: "client";
196
196
  resourceId: string | undefined;
197
197
  resourceType: string | undefined;
198
- context?: Record<string, string>;
198
+ context?: Record<string, string> | undefined;
199
199
  constructor(
200
200
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
201
201
  );
@@ -213,8 +213,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
213
213
  resourceType: string | undefined;
214
214
  serviceCode: string | undefined;
215
215
  quotaCode: string | undefined;
216
- resourceId?: string;
217
- context?: Record<string, string>;
216
+ resourceId?: string | undefined;
217
+ context?: Record<string, string> | undefined;
218
218
  constructor(
219
219
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
220
220
  );
@@ -225,10 +225,10 @@ export declare class ThrottlingException extends __BaseException {
225
225
  $retryable: {
226
226
  throttling: boolean;
227
227
  };
228
- serviceCode?: string;
229
- quotaCode?: string;
230
- retryAfterSeconds?: number;
231
- context?: Record<string, string>;
228
+ serviceCode?: string | undefined;
229
+ quotaCode?: string | undefined;
230
+ retryAfterSeconds?: number | undefined;
231
+ context?: Record<string, string> | undefined;
232
232
  constructor(
233
233
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
234
234
  );
@@ -249,8 +249,8 @@ export declare class ValidationException extends __BaseException {
249
249
  readonly name: "ValidationException";
250
250
  readonly $fault: "client";
251
251
  reason: ValidationExceptionReason | undefined;
252
- fieldList?: ValidationExceptionField[];
253
- context?: Record<string, string>;
252
+ fieldList?: ValidationExceptionField[] | undefined;
253
+ context?: Record<string, string> | undefined;
254
254
  constructor(
255
255
  opts: __ExceptionOptionType<ValidationException, __BaseException>
256
256
  );
@@ -319,7 +319,7 @@ export declare class ConflictException extends __BaseException {
319
319
  reason: ConflictExceptionReason | undefined;
320
320
  resourceId: string | undefined;
321
321
  resourceType: string | undefined;
322
- context?: Record<string, string>;
322
+ context?: Record<string, string> | undefined;
323
323
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
324
324
  }
325
325
  export interface AssumeQueueRoleForReadRequest {
@@ -343,7 +343,7 @@ export interface AssumeQueueRoleForWorkerRequest {
343
343
  queueId: string | undefined;
344
344
  }
345
345
  export interface AssumeQueueRoleForWorkerResponse {
346
- credentials?: AwsCredentials;
346
+ credentials?: AwsCredentials | undefined;
347
347
  }
348
348
  export declare const JobAttachmentsFileSystem: {
349
349
  readonly COPIED: "COPIED";
@@ -357,16 +357,16 @@ export declare const PathFormat: {
357
357
  };
358
358
  export type PathFormat = (typeof PathFormat)[keyof typeof PathFormat];
359
359
  export interface ManifestProperties {
360
- fileSystemLocationName?: string;
360
+ fileSystemLocationName?: string | undefined;
361
361
  rootPath: string | undefined;
362
362
  rootPathFormat: PathFormat | undefined;
363
- outputRelativeDirectories?: string[];
364
- inputManifestPath?: string;
365
- inputManifestHash?: string;
363
+ outputRelativeDirectories?: string[] | undefined;
364
+ inputManifestPath?: string | undefined;
365
+ inputManifestHash?: string | undefined;
366
366
  }
367
367
  export interface Attachments {
368
368
  manifests: ManifestProperties[] | undefined;
369
- fileSystem?: JobAttachmentsFileSystem;
369
+ fileSystem?: JobAttachmentsFileSystem | undefined;
370
370
  }
371
371
  export declare const AutoScalingMode: {
372
372
  readonly EVENT_BASED_AUTO_SCALING: "EVENT_BASED_AUTO_SCALING";
@@ -480,8 +480,8 @@ export interface WindowsUser {
480
480
  passwordArn: string | undefined;
481
481
  }
482
482
  export interface JobRunAsUser {
483
- posix?: PosixUser;
484
- windows?: WindowsUser;
483
+ posix?: PosixUser | undefined;
484
+ windows?: WindowsUser | undefined;
485
485
  runAs: RunAs | undefined;
486
486
  }
487
487
  export type JobParameter =
@@ -542,13 +542,13 @@ export interface PathMappingRule {
542
542
  }
543
543
  export interface JobDetailsEntity {
544
544
  jobId: string | undefined;
545
- jobAttachmentSettings?: JobAttachmentSettings;
546
- jobRunAsUser?: JobRunAsUser;
545
+ jobAttachmentSettings?: JobAttachmentSettings | undefined;
546
+ jobRunAsUser?: JobRunAsUser | undefined;
547
547
  logGroupName: string | undefined;
548
- queueRoleArn?: string;
549
- parameters?: Record<string, JobParameter>;
548
+ queueRoleArn?: string | undefined;
549
+ parameters?: Record<string, JobParameter> | undefined;
550
550
  schemaVersion: string | undefined;
551
- pathMappingRules?: PathMappingRule[];
551
+ pathMappingRules?: PathMappingRule[] | undefined;
552
552
  }
553
553
  export interface StepDetailsEntity {
554
554
  jobId: string | undefined;
@@ -704,7 +704,7 @@ export type BudgetActionType =
704
704
  export interface BudgetActionToAdd {
705
705
  type: BudgetActionType | undefined;
706
706
  thresholdPercentage: number | undefined;
707
- description?: string;
707
+ description?: string | undefined;
708
708
  }
709
709
  export interface BudgetActionToRemove {
710
710
  type: BudgetActionType | undefined;
@@ -751,11 +751,11 @@ export declare namespace UsageTrackingResource {
751
751
  const visit: <T>(value: UsageTrackingResource, visitor: Visitor<T>) => T;
752
752
  }
753
753
  export interface CreateBudgetRequest {
754
- clientToken?: string;
754
+ clientToken?: string | undefined;
755
755
  farmId: string | undefined;
756
756
  usageTrackingResource: UsageTrackingResource | undefined;
757
757
  displayName: string | undefined;
758
- description?: string;
758
+ description?: string | undefined;
759
759
  approximateDollarLimit: number | undefined;
760
760
  actions: BudgetActionToAdd[] | undefined;
761
761
  schedule: BudgetSchedule | undefined;
@@ -775,7 +775,7 @@ export interface GetBudgetRequest {
775
775
  export interface ResponseBudgetAction {
776
776
  type: BudgetActionType | undefined;
777
777
  thresholdPercentage: number | undefined;
778
- description?: string;
778
+ description?: string | undefined;
779
779
  }
780
780
  export declare const BudgetStatus: {
781
781
  readonly ACTIVE: "ACTIVE";
@@ -790,51 +790,51 @@ export interface GetBudgetResponse {
790
790
  usageTrackingResource: UsageTrackingResource | undefined;
791
791
  status: BudgetStatus | undefined;
792
792
  displayName: string | undefined;
793
- description?: string;
793
+ description?: string | undefined;
794
794
  approximateDollarLimit: number | undefined;
795
795
  usages: ConsumedUsages | undefined;
796
796
  actions: ResponseBudgetAction[] | undefined;
797
797
  schedule: BudgetSchedule | undefined;
798
798
  createdBy: string | undefined;
799
799
  createdAt: Date | undefined;
800
- updatedBy?: string;
801
- updatedAt?: Date;
802
- queueStoppedAt?: Date;
800
+ updatedBy?: string | undefined;
801
+ updatedAt?: Date | undefined;
802
+ queueStoppedAt?: Date | undefined;
803
803
  }
804
804
  export interface ListBudgetsRequest {
805
- nextToken?: string;
805
+ nextToken?: string | undefined;
806
806
  farmId: string | undefined;
807
- maxResults?: number;
808
- status?: BudgetStatus;
807
+ maxResults?: number | undefined;
808
+ status?: BudgetStatus | undefined;
809
809
  }
810
810
  export interface BudgetSummary {
811
811
  budgetId: string | undefined;
812
812
  usageTrackingResource: UsageTrackingResource | undefined;
813
813
  status: BudgetStatus | undefined;
814
814
  displayName: string | undefined;
815
- description?: string;
815
+ description?: string | undefined;
816
816
  approximateDollarLimit: number | undefined;
817
817
  usages: ConsumedUsages | undefined;
818
818
  createdBy: string | undefined;
819
819
  createdAt: Date | undefined;
820
- updatedBy?: string;
821
- updatedAt?: Date;
820
+ updatedBy?: string | undefined;
821
+ updatedAt?: Date | undefined;
822
822
  }
823
823
  export interface ListBudgetsResponse {
824
- nextToken?: string;
824
+ nextToken?: string | undefined;
825
825
  budgets: BudgetSummary[] | undefined;
826
826
  }
827
827
  export interface UpdateBudgetRequest {
828
- clientToken?: string;
828
+ clientToken?: string | undefined;
829
829
  farmId: string | undefined;
830
830
  budgetId: string | undefined;
831
- displayName?: string;
832
- description?: string;
833
- status?: BudgetStatus;
834
- approximateDollarLimit?: number;
835
- actionsToAdd?: BudgetActionToAdd[];
836
- actionsToRemove?: BudgetActionToRemove[];
837
- schedule?: BudgetSchedule;
831
+ displayName?: string | undefined;
832
+ description?: string | undefined;
833
+ status?: BudgetStatus | undefined;
834
+ approximateDollarLimit?: number | undefined;
835
+ actionsToAdd?: BudgetActionToAdd[] | undefined;
836
+ actionsToRemove?: BudgetActionToRemove[] | undefined;
837
+ schedule?: BudgetSchedule | undefined;
838
838
  }
839
839
  export interface UpdateBudgetResponse {}
840
840
  export declare const ComparisonOperator: {
@@ -882,11 +882,11 @@ export declare const CpuArchitectureType: {
882
882
  export type CpuArchitectureType =
883
883
  (typeof CpuArchitectureType)[keyof typeof CpuArchitectureType];
884
884
  export interface CreateFarmRequest {
885
- clientToken?: string;
885
+ clientToken?: string | undefined;
886
886
  displayName: string | undefined;
887
- description?: string;
888
- kmsKeyArn?: string;
889
- tags?: Record<string, string>;
887
+ description?: string | undefined;
888
+ kmsKeyArn?: string | undefined;
889
+ tags?: Record<string, string> | undefined;
890
890
  }
891
891
  export interface CreateFarmResponse {
892
892
  farmId: string | undefined;
@@ -894,7 +894,7 @@ export interface CreateFarmResponse {
894
894
  export interface FleetAmountCapability {
895
895
  name: string | undefined;
896
896
  min: number | undefined;
897
- max?: number;
897
+ max?: number | undefined;
898
898
  }
899
899
  export interface FleetAttributeCapability {
900
900
  name: string | undefined;
@@ -902,7 +902,7 @@ export interface FleetAttributeCapability {
902
902
  }
903
903
  export interface MemoryMiBRange {
904
904
  min: number | undefined;
905
- max?: number;
905
+ max?: number | undefined;
906
906
  }
907
907
  export declare const CustomerManagedFleetOperatingSystemFamily: {
908
908
  readonly LINUX: "LINUX";
@@ -913,23 +913,23 @@ export type CustomerManagedFleetOperatingSystemFamily =
913
913
  (typeof CustomerManagedFleetOperatingSystemFamily)[keyof typeof CustomerManagedFleetOperatingSystemFamily];
914
914
  export interface VCpuCountRange {
915
915
  min: number | undefined;
916
- max?: number;
916
+ max?: number | undefined;
917
917
  }
918
918
  export interface CustomerManagedWorkerCapabilities {
919
919
  vCpuCount: VCpuCountRange | undefined;
920
920
  memoryMiB: MemoryMiBRange | undefined;
921
- acceleratorTypes?: AcceleratorType[];
922
- acceleratorCount?: AcceleratorCountRange;
923
- acceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRange;
921
+ acceleratorTypes?: AcceleratorType[] | undefined;
922
+ acceleratorCount?: AcceleratorCountRange | undefined;
923
+ acceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRange | undefined;
924
924
  osFamily: CustomerManagedFleetOperatingSystemFamily | undefined;
925
925
  cpuArchitectureType: CpuArchitectureType | undefined;
926
- customAmounts?: FleetAmountCapability[];
927
- customAttributes?: FleetAttributeCapability[];
926
+ customAmounts?: FleetAmountCapability[] | undefined;
927
+ customAttributes?: FleetAttributeCapability[] | undefined;
928
928
  }
929
929
  export interface CustomerManagedFleetConfiguration {
930
930
  mode: AutoScalingMode | undefined;
931
931
  workerCapabilities: CustomerManagedWorkerCapabilities | undefined;
932
- storageProfileId?: string;
932
+ storageProfileId?: string | undefined;
933
933
  }
934
934
  export declare const ServiceManagedFleetOperatingSystemFamily: {
935
935
  readonly LINUX: "LINUX";
@@ -938,20 +938,20 @@ export declare const ServiceManagedFleetOperatingSystemFamily: {
938
938
  export type ServiceManagedFleetOperatingSystemFamily =
939
939
  (typeof ServiceManagedFleetOperatingSystemFamily)[keyof typeof ServiceManagedFleetOperatingSystemFamily];
940
940
  export interface Ec2EbsVolume {
941
- sizeGiB?: number;
942
- iops?: number;
943
- throughputMiB?: number;
941
+ sizeGiB?: number | undefined;
942
+ iops?: number | undefined;
943
+ throughputMiB?: number | undefined;
944
944
  }
945
945
  export interface ServiceManagedEc2InstanceCapabilities {
946
946
  vCpuCount: VCpuCountRange | undefined;
947
947
  memoryMiB: MemoryMiBRange | undefined;
948
948
  osFamily: ServiceManagedFleetOperatingSystemFamily | undefined;
949
949
  cpuArchitectureType: CpuArchitectureType | undefined;
950
- rootEbsVolume?: Ec2EbsVolume;
951
- allowedInstanceTypes?: string[];
952
- excludedInstanceTypes?: string[];
953
- customAmounts?: FleetAmountCapability[];
954
- customAttributes?: FleetAttributeCapability[];
950
+ rootEbsVolume?: Ec2EbsVolume | undefined;
951
+ allowedInstanceTypes?: string[] | undefined;
952
+ excludedInstanceTypes?: string[] | undefined;
953
+ customAmounts?: FleetAmountCapability[] | undefined;
954
+ customAttributes?: FleetAttributeCapability[] | undefined;
955
955
  }
956
956
  export declare const Ec2MarketType: {
957
957
  readonly ON_DEMAND: "on-demand";
@@ -993,15 +993,15 @@ export declare namespace FleetConfiguration {
993
993
  const visit: <T>(value: FleetConfiguration, visitor: Visitor<T>) => T;
994
994
  }
995
995
  export interface CreateFleetRequest {
996
- clientToken?: string;
996
+ clientToken?: string | undefined;
997
997
  farmId: string | undefined;
998
998
  displayName: string | undefined;
999
- description?: string;
999
+ description?: string | undefined;
1000
1000
  roleArn: string | undefined;
1001
- minWorkerCount?: number;
1001
+ minWorkerCount?: number | undefined;
1002
1002
  maxWorkerCount: number | undefined;
1003
1003
  configuration: FleetConfiguration | undefined;
1004
- tags?: Record<string, string>;
1004
+ tags?: Record<string, string> | undefined;
1005
1005
  }
1006
1006
  export interface CreateFleetResponse {
1007
1007
  fleetId: string | undefined;
@@ -1015,33 +1015,33 @@ export type CreateJobTargetTaskRunStatus =
1015
1015
  export interface CreateJobRequest {
1016
1016
  farmId: string | undefined;
1017
1017
  queueId: string | undefined;
1018
- clientToken?: string;
1019
- template?: string;
1020
- templateType?: JobTemplateType;
1018
+ clientToken?: string | undefined;
1019
+ template?: string | undefined;
1020
+ templateType?: JobTemplateType | undefined;
1021
1021
  priority: number | undefined;
1022
- parameters?: Record<string, JobParameter>;
1023
- attachments?: Attachments;
1024
- storageProfileId?: string;
1025
- targetTaskRunStatus?: CreateJobTargetTaskRunStatus;
1026
- maxFailedTasksCount?: number;
1027
- maxRetriesPerTask?: number;
1028
- sourceJobId?: string;
1022
+ parameters?: Record<string, JobParameter> | undefined;
1023
+ attachments?: Attachments | undefined;
1024
+ storageProfileId?: string | undefined;
1025
+ targetTaskRunStatus?: CreateJobTargetTaskRunStatus | undefined;
1026
+ maxFailedTasksCount?: number | undefined;
1027
+ maxRetriesPerTask?: number | undefined;
1028
+ sourceJobId?: string | undefined;
1029
1029
  }
1030
1030
  export interface CreateJobResponse {
1031
1031
  jobId: string | undefined;
1032
1032
  }
1033
1033
  export interface CreateLicenseEndpointRequest {
1034
- clientToken?: string;
1034
+ clientToken?: string | undefined;
1035
1035
  vpcId: string | undefined;
1036
1036
  subnetIds: string[] | undefined;
1037
1037
  securityGroupIds: string[] | undefined;
1038
- tags?: Record<string, string>;
1038
+ tags?: Record<string, string> | undefined;
1039
1039
  }
1040
1040
  export interface CreateLicenseEndpointResponse {
1041
1041
  licenseEndpointId: string | undefined;
1042
1042
  }
1043
1043
  export interface CreateMonitorRequest {
1044
- clientToken?: string;
1044
+ clientToken?: string | undefined;
1045
1045
  displayName: string | undefined;
1046
1046
  identityCenterInstanceArn: string | undefined;
1047
1047
  subdomain: string | undefined;
@@ -1059,17 +1059,17 @@ export declare const DefaultQueueBudgetAction: {
1059
1059
  export type DefaultQueueBudgetAction =
1060
1060
  (typeof DefaultQueueBudgetAction)[keyof typeof DefaultQueueBudgetAction];
1061
1061
  export interface CreateQueueRequest {
1062
- clientToken?: string;
1062
+ clientToken?: string | undefined;
1063
1063
  farmId: string | undefined;
1064
1064
  displayName: string | undefined;
1065
- description?: string;
1066
- defaultBudgetAction?: DefaultQueueBudgetAction;
1067
- jobAttachmentSettings?: JobAttachmentSettings;
1068
- roleArn?: string;
1069
- jobRunAsUser?: JobRunAsUser;
1070
- requiredFileSystemLocationNames?: string[];
1071
- allowedStorageProfileIds?: string[];
1072
- tags?: Record<string, string>;
1065
+ description?: string | undefined;
1066
+ defaultBudgetAction?: DefaultQueueBudgetAction | undefined;
1067
+ jobAttachmentSettings?: JobAttachmentSettings | undefined;
1068
+ roleArn?: string | undefined;
1069
+ jobRunAsUser?: JobRunAsUser | undefined;
1070
+ requiredFileSystemLocationNames?: string[] | undefined;
1071
+ allowedStorageProfileIds?: string[] | undefined;
1072
+ tags?: Record<string, string> | undefined;
1073
1073
  }
1074
1074
  export interface CreateQueueResponse {
1075
1075
  queueId: string | undefined;
@@ -1081,7 +1081,7 @@ export declare const EnvironmentTemplateType: {
1081
1081
  export type EnvironmentTemplateType =
1082
1082
  (typeof EnvironmentTemplateType)[keyof typeof EnvironmentTemplateType];
1083
1083
  export interface CreateQueueEnvironmentRequest {
1084
- clientToken?: string;
1084
+ clientToken?: string | undefined;
1085
1085
  farmId: string | undefined;
1086
1086
  queueId: string | undefined;
1087
1087
  priority: number | undefined;
@@ -1116,28 +1116,28 @@ export declare const StorageProfileOperatingSystemFamily: {
1116
1116
  export type StorageProfileOperatingSystemFamily =
1117
1117
  (typeof StorageProfileOperatingSystemFamily)[keyof typeof StorageProfileOperatingSystemFamily];
1118
1118
  export interface CreateStorageProfileRequest {
1119
- clientToken?: string;
1119
+ clientToken?: string | undefined;
1120
1120
  farmId: string | undefined;
1121
1121
  displayName: string | undefined;
1122
1122
  osFamily: StorageProfileOperatingSystemFamily | undefined;
1123
- fileSystemLocations?: FileSystemLocation[];
1123
+ fileSystemLocations?: FileSystemLocation[] | undefined;
1124
1124
  }
1125
1125
  export interface CreateStorageProfileResponse {
1126
1126
  storageProfileId: string | undefined;
1127
1127
  }
1128
1128
  export interface IpAddresses {
1129
- ipV4Addresses?: string[];
1130
- ipV6Addresses?: string[];
1129
+ ipV4Addresses?: string[] | undefined;
1130
+ ipV6Addresses?: string[] | undefined;
1131
1131
  }
1132
1132
  export interface HostPropertiesRequest {
1133
- ipAddresses?: IpAddresses;
1134
- hostName?: string;
1133
+ ipAddresses?: IpAddresses | undefined;
1134
+ hostName?: string | undefined;
1135
1135
  }
1136
1136
  export interface CreateWorkerRequest {
1137
1137
  farmId: string | undefined;
1138
1138
  fleetId: string | undefined;
1139
- hostProperties?: HostPropertiesRequest;
1140
- clientToken?: string;
1139
+ hostProperties?: HostPropertiesRequest | undefined;
1140
+ clientToken?: string | undefined;
1141
1141
  }
1142
1142
  export interface CreateWorkerResponse {
1143
1143
  workerId: string | undefined;
@@ -1168,7 +1168,7 @@ export interface DisassociateMemberFromFarmRequest {
1168
1168
  }
1169
1169
  export interface DisassociateMemberFromFarmResponse {}
1170
1170
  export interface DeleteFleetRequest {
1171
- clientToken?: string;
1171
+ clientToken?: string | undefined;
1172
1172
  farmId: string | undefined;
1173
1173
  fleetId: string | undefined;
1174
1174
  }
@@ -1184,8 +1184,8 @@ export interface GetFleetRequest {
1184
1184
  fleetId: string | undefined;
1185
1185
  }
1186
1186
  export interface FleetCapabilities {
1187
- amounts?: FleetAmountCapability[];
1188
- attributes?: FleetAttributeCapability[];
1187
+ amounts?: FleetAmountCapability[] | undefined;
1188
+ attributes?: FleetAttributeCapability[] | undefined;
1189
1189
  }
1190
1190
  export declare const FleetStatus: {
1191
1191
  readonly ACTIVE: "ACTIVE";
@@ -1199,26 +1199,26 @@ export interface GetFleetResponse {
1199
1199
  fleetId: string | undefined;
1200
1200
  farmId: string | undefined;
1201
1201
  displayName: string | undefined;
1202
- description?: string;
1202
+ description?: string | undefined;
1203
1203
  status: FleetStatus | undefined;
1204
- autoScalingStatus?: AutoScalingStatus;
1205
- targetWorkerCount?: number;
1204
+ autoScalingStatus?: AutoScalingStatus | undefined;
1205
+ targetWorkerCount?: number | undefined;
1206
1206
  workerCount: number | undefined;
1207
1207
  minWorkerCount: number | undefined;
1208
1208
  maxWorkerCount: number | undefined;
1209
1209
  configuration: FleetConfiguration | undefined;
1210
- capabilities?: FleetCapabilities;
1210
+ capabilities?: FleetCapabilities | undefined;
1211
1211
  roleArn: string | undefined;
1212
1212
  createdAt: Date | undefined;
1213
1213
  createdBy: string | undefined;
1214
- updatedAt?: Date;
1215
- updatedBy?: string;
1214
+ updatedAt?: Date | undefined;
1215
+ updatedBy?: string | undefined;
1216
1216
  }
1217
1217
  export interface ListFleetMembersRequest {
1218
1218
  farmId: string | undefined;
1219
1219
  fleetId: string | undefined;
1220
- nextToken?: string;
1221
- maxResults?: number;
1220
+ nextToken?: string | undefined;
1221
+ maxResults?: number | undefined;
1222
1222
  }
1223
1223
  export interface FleetMember {
1224
1224
  farmId: string | undefined;
@@ -1230,46 +1230,46 @@ export interface FleetMember {
1230
1230
  }
1231
1231
  export interface ListFleetMembersResponse {
1232
1232
  members: FleetMember[] | undefined;
1233
- nextToken?: string;
1233
+ nextToken?: string | undefined;
1234
1234
  }
1235
1235
  export interface ListFleetsRequest {
1236
1236
  farmId: string | undefined;
1237
- principalId?: string;
1238
- displayName?: string;
1239
- status?: FleetStatus;
1240
- nextToken?: string;
1241
- maxResults?: number;
1237
+ principalId?: string | undefined;
1238
+ displayName?: string | undefined;
1239
+ status?: FleetStatus | undefined;
1240
+ nextToken?: string | undefined;
1241
+ maxResults?: number | undefined;
1242
1242
  }
1243
1243
  export interface FleetSummary {
1244
1244
  fleetId: string | undefined;
1245
1245
  farmId: string | undefined;
1246
1246
  displayName: string | undefined;
1247
1247
  status: FleetStatus | undefined;
1248
- autoScalingStatus?: AutoScalingStatus;
1249
- targetWorkerCount?: number;
1248
+ autoScalingStatus?: AutoScalingStatus | undefined;
1249
+ targetWorkerCount?: number | undefined;
1250
1250
  workerCount: number | undefined;
1251
1251
  minWorkerCount: number | undefined;
1252
1252
  maxWorkerCount: number | undefined;
1253
1253
  configuration: FleetConfiguration | undefined;
1254
1254
  createdAt: Date | undefined;
1255
1255
  createdBy: string | undefined;
1256
- updatedAt?: Date;
1257
- updatedBy?: string;
1256
+ updatedAt?: Date | undefined;
1257
+ updatedBy?: string | undefined;
1258
1258
  }
1259
1259
  export interface ListFleetsResponse {
1260
1260
  fleets: FleetSummary[] | undefined;
1261
- nextToken?: string;
1261
+ nextToken?: string | undefined;
1262
1262
  }
1263
1263
  export interface UpdateFleetRequest {
1264
- clientToken?: string;
1264
+ clientToken?: string | undefined;
1265
1265
  farmId: string | undefined;
1266
1266
  fleetId: string | undefined;
1267
- displayName?: string;
1268
- description?: string;
1269
- roleArn?: string;
1270
- minWorkerCount?: number;
1271
- maxWorkerCount?: number;
1272
- configuration?: FleetConfiguration;
1267
+ displayName?: string | undefined;
1268
+ description?: string | undefined;
1269
+ roleArn?: string | undefined;
1270
+ minWorkerCount?: number | undefined;
1271
+ maxWorkerCount?: number | undefined;
1272
+ configuration?: FleetConfiguration | undefined;
1273
1273
  }
1274
1274
  export interface UpdateFleetResponse {}
1275
1275
  export interface DeleteWorkerRequest {
@@ -1284,10 +1284,10 @@ export interface GetWorkerRequest {
1284
1284
  workerId: string | undefined;
1285
1285
  }
1286
1286
  export interface HostPropertiesResponse {
1287
- ipAddresses?: IpAddresses;
1288
- hostName?: string;
1289
- ec2InstanceArn?: string;
1290
- ec2InstanceType?: string;
1287
+ ipAddresses?: IpAddresses | undefined;
1288
+ hostName?: string | undefined;
1289
+ ec2InstanceArn?: string | undefined;
1290
+ ec2InstanceType?: string | undefined;
1291
1291
  }
1292
1292
  export declare const WorkerStatus: {
1293
1293
  readonly CREATED: "CREATED";
@@ -1304,20 +1304,20 @@ export interface GetWorkerResponse {
1304
1304
  workerId: string | undefined;
1305
1305
  farmId: string | undefined;
1306
1306
  fleetId: string | undefined;
1307
- hostProperties?: HostPropertiesResponse;
1307
+ hostProperties?: HostPropertiesResponse | undefined;
1308
1308
  status: WorkerStatus | undefined;
1309
- log?: LogConfiguration;
1309
+ log?: LogConfiguration | undefined;
1310
1310
  createdAt: Date | undefined;
1311
1311
  createdBy: string | undefined;
1312
- updatedAt?: Date;
1313
- updatedBy?: string;
1312
+ updatedAt?: Date | undefined;
1313
+ updatedBy?: string | undefined;
1314
1314
  }
1315
1315
  export interface ListSessionsForWorkerRequest {
1316
1316
  farmId: string | undefined;
1317
1317
  fleetId: string | undefined;
1318
1318
  workerId: string | undefined;
1319
- nextToken?: string;
1320
- maxResults?: number;
1319
+ nextToken?: string | undefined;
1320
+ maxResults?: number | undefined;
1321
1321
  }
1322
1322
  export declare const SessionLifecycleStatus: {
1323
1323
  readonly ENDED: "ENDED";
@@ -1339,33 +1339,33 @@ export interface WorkerSessionSummary {
1339
1339
  jobId: string | undefined;
1340
1340
  startedAt: Date | undefined;
1341
1341
  lifecycleStatus: SessionLifecycleStatus | undefined;
1342
- endedAt?: Date;
1343
- targetLifecycleStatus?: SessionLifecycleTargetStatus;
1342
+ endedAt?: Date | undefined;
1343
+ targetLifecycleStatus?: SessionLifecycleTargetStatus | undefined;
1344
1344
  }
1345
1345
  export interface ListSessionsForWorkerResponse {
1346
1346
  sessions: WorkerSessionSummary[] | undefined;
1347
- nextToken?: string;
1347
+ nextToken?: string | undefined;
1348
1348
  }
1349
1349
  export interface ListWorkersRequest {
1350
1350
  farmId: string | undefined;
1351
1351
  fleetId: string | undefined;
1352
- nextToken?: string;
1353
- maxResults?: number;
1352
+ nextToken?: string | undefined;
1353
+ maxResults?: number | undefined;
1354
1354
  }
1355
1355
  export interface WorkerSummary {
1356
1356
  workerId: string | undefined;
1357
1357
  farmId: string | undefined;
1358
1358
  fleetId: string | undefined;
1359
1359
  status: WorkerStatus | undefined;
1360
- hostProperties?: HostPropertiesResponse;
1361
- log?: LogConfiguration;
1360
+ hostProperties?: HostPropertiesResponse | undefined;
1361
+ log?: LogConfiguration | undefined;
1362
1362
  createdAt: Date | undefined;
1363
1363
  createdBy: string | undefined;
1364
- updatedAt?: Date;
1365
- updatedBy?: string;
1364
+ updatedAt?: Date | undefined;
1365
+ updatedBy?: string | undefined;
1366
1366
  }
1367
1367
  export interface ListWorkersResponse {
1368
- nextToken?: string;
1368
+ nextToken?: string | undefined;
1369
1369
  workers: WorkerSummary[] | undefined;
1370
1370
  }
1371
1371
  export interface WorkerAmountCapability {
@@ -1391,27 +1391,27 @@ export interface UpdateWorkerRequest {
1391
1391
  farmId: string | undefined;
1392
1392
  fleetId: string | undefined;
1393
1393
  workerId: string | undefined;
1394
- status?: UpdatedWorkerStatus;
1395
- capabilities?: WorkerCapabilities;
1396
- hostProperties?: HostPropertiesRequest;
1394
+ status?: UpdatedWorkerStatus | undefined;
1395
+ capabilities?: WorkerCapabilities | undefined;
1396
+ hostProperties?: HostPropertiesRequest | undefined;
1397
1397
  }
1398
1398
  export interface UpdateWorkerResponse {
1399
- log?: LogConfiguration;
1399
+ log?: LogConfiguration | undefined;
1400
1400
  }
1401
1401
  export interface UpdatedSessionActionInfo {
1402
- completedStatus?: CompletedStatus;
1403
- processExitCode?: number;
1404
- progressMessage?: string;
1405
- startedAt?: Date;
1406
- endedAt?: Date;
1407
- updatedAt?: Date;
1408
- progressPercent?: number;
1402
+ completedStatus?: CompletedStatus | undefined;
1403
+ processExitCode?: number | undefined;
1404
+ progressMessage?: string | undefined;
1405
+ startedAt?: Date | undefined;
1406
+ endedAt?: Date | undefined;
1407
+ updatedAt?: Date | undefined;
1408
+ progressPercent?: number | undefined;
1409
1409
  }
1410
1410
  export interface UpdateWorkerScheduleRequest {
1411
1411
  farmId: string | undefined;
1412
1412
  fleetId: string | undefined;
1413
1413
  workerId: string | undefined;
1414
- updatedSessionActions?: Record<string, UpdatedSessionActionInfo>;
1414
+ updatedSessionActions?: Record<string, UpdatedSessionActionInfo> | undefined;
1415
1415
  }
1416
1416
  export declare const DesiredWorkerStatus: {
1417
1417
  readonly STOPPED: "STOPPED";
@@ -1421,7 +1421,7 @@ export type DesiredWorkerStatus =
1421
1421
  export interface UpdateWorkerScheduleResponse {
1422
1422
  assignedSessions: Record<string, AssignedSession> | undefined;
1423
1423
  cancelSessionActions: Record<string, string[]> | undefined;
1424
- desiredWorkerStatus?: DesiredWorkerStatus;
1424
+ desiredWorkerStatus?: DesiredWorkerStatus | undefined;
1425
1425
  updateIntervalSeconds: number | undefined;
1426
1426
  }
1427
1427
  export interface GetFarmRequest {
@@ -1430,12 +1430,12 @@ export interface GetFarmRequest {
1430
1430
  export interface GetFarmResponse {
1431
1431
  farmId: string | undefined;
1432
1432
  displayName: string | undefined;
1433
- description?: string;
1433
+ description?: string | undefined;
1434
1434
  kmsKeyArn: string | undefined;
1435
1435
  createdAt: Date | undefined;
1436
1436
  createdBy: string | undefined;
1437
- updatedAt?: Date;
1438
- updatedBy?: string;
1437
+ updatedAt?: Date | undefined;
1438
+ updatedBy?: string | undefined;
1439
1439
  }
1440
1440
  export interface GetStorageProfileRequest {
1441
1441
  farmId: string | undefined;
@@ -1447,14 +1447,14 @@ export interface GetStorageProfileResponse {
1447
1447
  osFamily: StorageProfileOperatingSystemFamily | undefined;
1448
1448
  createdAt: Date | undefined;
1449
1449
  createdBy: string | undefined;
1450
- updatedAt?: Date;
1451
- updatedBy?: string;
1452
- fileSystemLocations?: FileSystemLocation[];
1450
+ updatedAt?: Date | undefined;
1451
+ updatedBy?: string | undefined;
1452
+ fileSystemLocations?: FileSystemLocation[] | undefined;
1453
1453
  }
1454
1454
  export interface ListFarmMembersRequest {
1455
1455
  farmId: string | undefined;
1456
- nextToken?: string;
1457
- maxResults?: number;
1456
+ nextToken?: string | undefined;
1457
+ maxResults?: number | undefined;
1458
1458
  }
1459
1459
  export interface FarmMember {
1460
1460
  farmId: string | undefined;
@@ -1465,30 +1465,30 @@ export interface FarmMember {
1465
1465
  }
1466
1466
  export interface ListFarmMembersResponse {
1467
1467
  members: FarmMember[] | undefined;
1468
- nextToken?: string;
1468
+ nextToken?: string | undefined;
1469
1469
  }
1470
1470
  export interface ListFarmsRequest {
1471
- nextToken?: string;
1472
- principalId?: string;
1473
- maxResults?: number;
1471
+ nextToken?: string | undefined;
1472
+ principalId?: string | undefined;
1473
+ maxResults?: number | undefined;
1474
1474
  }
1475
1475
  export interface FarmSummary {
1476
1476
  farmId: string | undefined;
1477
1477
  displayName: string | undefined;
1478
- kmsKeyArn?: string;
1478
+ kmsKeyArn?: string | undefined;
1479
1479
  createdAt: Date | undefined;
1480
1480
  createdBy: string | undefined;
1481
- updatedAt?: Date;
1482
- updatedBy?: string;
1481
+ updatedAt?: Date | undefined;
1482
+ updatedBy?: string | undefined;
1483
1483
  }
1484
1484
  export interface ListFarmsResponse {
1485
- nextToken?: string;
1485
+ nextToken?: string | undefined;
1486
1486
  farms: FarmSummary[] | undefined;
1487
1487
  }
1488
1488
  export interface ListStorageProfilesRequest {
1489
1489
  farmId: string | undefined;
1490
- nextToken?: string;
1491
- maxResults?: number;
1490
+ nextToken?: string | undefined;
1491
+ maxResults?: number | undefined;
1492
1492
  }
1493
1493
  export interface StorageProfileSummary {
1494
1494
  storageProfileId: string | undefined;
@@ -1497,7 +1497,7 @@ export interface StorageProfileSummary {
1497
1497
  }
1498
1498
  export interface ListStorageProfilesResponse {
1499
1499
  storageProfiles: StorageProfileSummary[] | undefined;
1500
- nextToken?: string;
1500
+ nextToken?: string | undefined;
1501
1501
  }
1502
1502
  export interface DeleteQueueRequest {
1503
1503
  farmId: string | undefined;
@@ -1535,20 +1535,20 @@ export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
1535
1535
  export interface GetQueueResponse {
1536
1536
  queueId: string | undefined;
1537
1537
  displayName: string | undefined;
1538
- description?: string;
1538
+ description?: string | undefined;
1539
1539
  farmId: string | undefined;
1540
1540
  status: QueueStatus | undefined;
1541
1541
  defaultBudgetAction: DefaultQueueBudgetAction | undefined;
1542
- blockedReason?: QueueBlockedReason;
1543
- jobAttachmentSettings?: JobAttachmentSettings;
1544
- roleArn?: string;
1545
- requiredFileSystemLocationNames?: string[];
1546
- allowedStorageProfileIds?: string[];
1547
- jobRunAsUser?: JobRunAsUser;
1542
+ blockedReason?: QueueBlockedReason | undefined;
1543
+ jobAttachmentSettings?: JobAttachmentSettings | undefined;
1544
+ roleArn?: string | undefined;
1545
+ requiredFileSystemLocationNames?: string[] | undefined;
1546
+ allowedStorageProfileIds?: string[] | undefined;
1547
+ jobRunAsUser?: JobRunAsUser | undefined;
1548
1548
  createdAt: Date | undefined;
1549
1549
  createdBy: string | undefined;
1550
- updatedAt?: Date;
1551
- updatedBy?: string;
1550
+ updatedAt?: Date | undefined;
1551
+ updatedBy?: string | undefined;
1552
1552
  }
1553
1553
  export interface GetQueueEnvironmentRequest {
1554
1554
  farmId: string | undefined;
@@ -1563,8 +1563,8 @@ export interface GetQueueEnvironmentResponse {
1563
1563
  template: string | undefined;
1564
1564
  createdAt: Date | undefined;
1565
1565
  createdBy: string | undefined;
1566
- updatedAt?: Date;
1567
- updatedBy?: string;
1566
+ updatedAt?: Date | undefined;
1567
+ updatedBy?: string | undefined;
1568
1568
  }
1569
1569
  export interface GetStorageProfileForQueueRequest {
1570
1570
  farmId: string | undefined;
@@ -1575,7 +1575,7 @@ export interface GetStorageProfileForQueueResponse {
1575
1575
  storageProfileId: string | undefined;
1576
1576
  displayName: string | undefined;
1577
1577
  osFamily: StorageProfileOperatingSystemFamily | undefined;
1578
- fileSystemLocations?: FileSystemLocation[];
1578
+ fileSystemLocations?: FileSystemLocation[] | undefined;
1579
1579
  }
1580
1580
  export interface DisassociateMemberFromJobRequest {
1581
1581
  farmId: string | undefined;
@@ -1635,20 +1635,20 @@ export interface GetJobResponse {
1635
1635
  priority: number | undefined;
1636
1636
  createdAt: Date | undefined;
1637
1637
  createdBy: string | undefined;
1638
- updatedAt?: Date;
1639
- updatedBy?: string;
1640
- startedAt?: Date;
1641
- endedAt?: Date;
1642
- taskRunStatus?: TaskRunStatus;
1643
- targetTaskRunStatus?: JobTargetTaskRunStatus;
1644
- taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>>;
1645
- storageProfileId?: string;
1646
- maxFailedTasksCount?: number;
1647
- maxRetriesPerTask?: number;
1648
- parameters?: Record<string, JobParameter>;
1649
- attachments?: Attachments;
1650
- description?: string;
1651
- sourceJobId?: string;
1638
+ updatedAt?: Date | undefined;
1639
+ updatedBy?: string | undefined;
1640
+ startedAt?: Date | undefined;
1641
+ endedAt?: Date | undefined;
1642
+ taskRunStatus?: TaskRunStatus | undefined;
1643
+ targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
1644
+ taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>> | undefined;
1645
+ storageProfileId?: string | undefined;
1646
+ maxFailedTasksCount?: number | undefined;
1647
+ maxRetriesPerTask?: number | undefined;
1648
+ parameters?: Record<string, JobParameter> | undefined;
1649
+ attachments?: Attachments | undefined;
1650
+ description?: string | undefined;
1651
+ sourceJobId?: string | undefined;
1652
1652
  }
1653
1653
  export interface GetSessionRequest {
1654
1654
  farmId: string | undefined;
@@ -1663,12 +1663,12 @@ export interface GetSessionResponse {
1663
1663
  startedAt: Date | undefined;
1664
1664
  log: LogConfiguration | undefined;
1665
1665
  lifecycleStatus: SessionLifecycleStatus | undefined;
1666
- endedAt?: Date;
1667
- updatedAt?: Date;
1668
- updatedBy?: string;
1669
- targetLifecycleStatus?: SessionLifecycleTargetStatus;
1670
- hostProperties?: HostPropertiesResponse;
1671
- workerLog?: LogConfiguration;
1666
+ endedAt?: Date | undefined;
1667
+ updatedAt?: Date | undefined;
1668
+ updatedBy?: string | undefined;
1669
+ targetLifecycleStatus?: SessionLifecycleTargetStatus | undefined;
1670
+ hostProperties?: HostPropertiesResponse | undefined;
1671
+ workerLog?: LogConfiguration | undefined;
1672
1672
  }
1673
1673
  export interface GetSessionActionRequest {
1674
1674
  farmId: string | undefined;
@@ -1683,7 +1683,7 @@ export interface EnvironmentExitSessionActionDefinition {
1683
1683
  environmentId: string | undefined;
1684
1684
  }
1685
1685
  export interface SyncInputJobAttachmentsSessionActionDefinition {
1686
- stepId?: string;
1686
+ stepId?: string | undefined;
1687
1687
  }
1688
1688
  export interface TaskRunSessionActionDefinition {
1689
1689
  taskId: string | undefined;
@@ -1761,13 +1761,13 @@ export type SessionActionStatus =
1761
1761
  export interface GetSessionActionResponse {
1762
1762
  sessionActionId: string | undefined;
1763
1763
  status: SessionActionStatus | undefined;
1764
- startedAt?: Date;
1765
- endedAt?: Date;
1766
- workerUpdatedAt?: Date;
1767
- progressPercent?: number;
1764
+ startedAt?: Date | undefined;
1765
+ endedAt?: Date | undefined;
1766
+ workerUpdatedAt?: Date | undefined;
1767
+ progressPercent?: number | undefined;
1768
1768
  sessionId: string | undefined;
1769
- processExitCode?: number;
1770
- progressMessage?: string;
1769
+ processExitCode?: number | undefined;
1770
+ progressMessage?: string | undefined;
1771
1771
  definition: SessionActionDefinition | undefined;
1772
1772
  }
1773
1773
  export interface GetStepRequest {
@@ -1804,18 +1804,18 @@ export interface StepParameter {
1804
1804
  }
1805
1805
  export interface ParameterSpace {
1806
1806
  parameters: StepParameter[] | undefined;
1807
- combination?: string;
1807
+ combination?: string | undefined;
1808
1808
  }
1809
1809
  export interface StepAmountCapability {
1810
1810
  name: string | undefined;
1811
- min?: number;
1812
- max?: number;
1813
- value?: number;
1811
+ min?: number | undefined;
1812
+ max?: number | undefined;
1813
+ value?: number | undefined;
1814
1814
  }
1815
1815
  export interface StepAttributeCapability {
1816
1816
  name: string | undefined;
1817
- anyOf?: string[];
1818
- allOf?: string[];
1817
+ anyOf?: string[] | undefined;
1818
+ allOf?: string[] | undefined;
1819
1819
  }
1820
1820
  export interface StepRequiredCapabilities {
1821
1821
  attributes: StepAttributeCapability[] | undefined;
@@ -1835,20 +1835,20 @@ export interface GetStepResponse {
1835
1835
  stepId: string | undefined;
1836
1836
  name: string | undefined;
1837
1837
  lifecycleStatus: StepLifecycleStatus | undefined;
1838
- lifecycleStatusMessage?: string;
1838
+ lifecycleStatusMessage?: string | undefined;
1839
1839
  taskRunStatus: TaskRunStatus | undefined;
1840
1840
  taskRunStatusCounts: Partial<Record<TaskRunStatus, number>> | undefined;
1841
- targetTaskRunStatus?: StepTargetTaskRunStatus;
1841
+ targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
1842
1842
  createdAt: Date | undefined;
1843
1843
  createdBy: string | undefined;
1844
- updatedAt?: Date;
1845
- updatedBy?: string;
1846
- startedAt?: Date;
1847
- endedAt?: Date;
1848
- dependencyCounts?: DependencyCounts;
1849
- requiredCapabilities?: StepRequiredCapabilities;
1850
- parameterSpace?: ParameterSpace;
1851
- description?: string;
1844
+ updatedAt?: Date | undefined;
1845
+ updatedBy?: string | undefined;
1846
+ startedAt?: Date | undefined;
1847
+ endedAt?: Date | undefined;
1848
+ dependencyCounts?: DependencyCounts | undefined;
1849
+ requiredCapabilities?: StepRequiredCapabilities | undefined;
1850
+ parameterSpace?: ParameterSpace | undefined;
1851
+ description?: string | undefined;
1852
1852
  }
1853
1853
  export interface GetTaskRequest {
1854
1854
  farmId: string | undefined;
@@ -1872,21 +1872,21 @@ export interface GetTaskResponse {
1872
1872
  createdAt: Date | undefined;
1873
1873
  createdBy: string | undefined;
1874
1874
  runStatus: TaskRunStatus | undefined;
1875
- targetRunStatus?: TaskTargetRunStatus;
1876
- failureRetryCount?: number;
1877
- parameters?: Record<string, TaskParameterValue>;
1878
- startedAt?: Date;
1879
- endedAt?: Date;
1880
- updatedAt?: Date;
1881
- updatedBy?: string;
1882
- latestSessionActionId?: string;
1875
+ targetRunStatus?: TaskTargetRunStatus | undefined;
1876
+ failureRetryCount?: number | undefined;
1877
+ parameters?: Record<string, TaskParameterValue> | undefined;
1878
+ startedAt?: Date | undefined;
1879
+ endedAt?: Date | undefined;
1880
+ updatedAt?: Date | undefined;
1881
+ updatedBy?: string | undefined;
1882
+ latestSessionActionId?: string | undefined;
1883
1883
  }
1884
1884
  export interface ListJobMembersRequest {
1885
1885
  farmId: string | undefined;
1886
1886
  queueId: string | undefined;
1887
1887
  jobId: string | undefined;
1888
- nextToken?: string;
1889
- maxResults?: number;
1888
+ nextToken?: string | undefined;
1889
+ maxResults?: number | undefined;
1890
1890
  }
1891
1891
  export interface JobMember {
1892
1892
  farmId: string | undefined;
@@ -1899,25 +1899,25 @@ export interface JobMember {
1899
1899
  }
1900
1900
  export interface ListJobMembersResponse {
1901
1901
  members: JobMember[] | undefined;
1902
- nextToken?: string;
1902
+ nextToken?: string | undefined;
1903
1903
  }
1904
1904
  export interface ListJobParameterDefinitionsRequest {
1905
1905
  farmId: string | undefined;
1906
1906
  jobId: string | undefined;
1907
1907
  queueId: string | undefined;
1908
- nextToken?: string;
1909
- maxResults?: number;
1908
+ nextToken?: string | undefined;
1909
+ maxResults?: number | undefined;
1910
1910
  }
1911
1911
  export interface ListJobParameterDefinitionsResponse {
1912
1912
  jobParameterDefinitions: __DocumentType[] | undefined;
1913
- nextToken?: string;
1913
+ nextToken?: string | undefined;
1914
1914
  }
1915
1915
  export interface ListJobsRequest {
1916
1916
  farmId: string | undefined;
1917
- principalId?: string;
1917
+ principalId?: string | undefined;
1918
1918
  queueId: string | undefined;
1919
- nextToken?: string;
1920
- maxResults?: number;
1919
+ nextToken?: string | undefined;
1920
+ maxResults?: number | undefined;
1921
1921
  }
1922
1922
  export interface JobSummary {
1923
1923
  jobId: string | undefined;
@@ -1927,29 +1927,29 @@ export interface JobSummary {
1927
1927
  priority: number | undefined;
1928
1928
  createdAt: Date | undefined;
1929
1929
  createdBy: string | undefined;
1930
- updatedAt?: Date;
1931
- updatedBy?: string;
1932
- startedAt?: Date;
1933
- endedAt?: Date;
1934
- taskRunStatus?: TaskRunStatus;
1935
- targetTaskRunStatus?: JobTargetTaskRunStatus;
1936
- taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>>;
1937
- maxFailedTasksCount?: number;
1938
- maxRetriesPerTask?: number;
1939
- sourceJobId?: string;
1930
+ updatedAt?: Date | undefined;
1931
+ updatedBy?: string | undefined;
1932
+ startedAt?: Date | undefined;
1933
+ endedAt?: Date | undefined;
1934
+ taskRunStatus?: TaskRunStatus | undefined;
1935
+ targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
1936
+ taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>> | undefined;
1937
+ maxFailedTasksCount?: number | undefined;
1938
+ maxRetriesPerTask?: number | undefined;
1939
+ sourceJobId?: string | undefined;
1940
1940
  }
1941
1941
  export interface ListJobsResponse {
1942
1942
  jobs: JobSummary[] | undefined;
1943
- nextToken?: string;
1943
+ nextToken?: string | undefined;
1944
1944
  }
1945
1945
  export interface ListSessionActionsRequest {
1946
1946
  farmId: string | undefined;
1947
1947
  queueId: string | undefined;
1948
1948
  jobId: string | undefined;
1949
- sessionId?: string;
1950
- taskId?: string;
1951
- nextToken?: string;
1952
- maxResults?: number;
1949
+ sessionId?: string | undefined;
1950
+ taskId?: string | undefined;
1951
+ nextToken?: string | undefined;
1952
+ maxResults?: number | undefined;
1953
1953
  }
1954
1954
  export interface EnvironmentEnterSessionActionDefinitionSummary {
1955
1955
  environmentId: string | undefined;
@@ -1958,7 +1958,7 @@ export interface EnvironmentExitSessionActionDefinitionSummary {
1958
1958
  environmentId: string | undefined;
1959
1959
  }
1960
1960
  export interface SyncInputJobAttachmentsSessionActionDefinitionSummary {
1961
- stepId?: string;
1961
+ stepId?: string | undefined;
1962
1962
  }
1963
1963
  export interface TaskRunSessionActionDefinitionSummary {
1964
1964
  taskId: string | undefined;
@@ -2023,22 +2023,22 @@ export declare namespace SessionActionDefinitionSummary {
2023
2023
  export interface SessionActionSummary {
2024
2024
  sessionActionId: string | undefined;
2025
2025
  status: SessionActionStatus | undefined;
2026
- startedAt?: Date;
2027
- endedAt?: Date;
2028
- workerUpdatedAt?: Date;
2029
- progressPercent?: number;
2026
+ startedAt?: Date | undefined;
2027
+ endedAt?: Date | undefined;
2028
+ workerUpdatedAt?: Date | undefined;
2029
+ progressPercent?: number | undefined;
2030
2030
  definition: SessionActionDefinitionSummary | undefined;
2031
2031
  }
2032
2032
  export interface ListSessionActionsResponse {
2033
2033
  sessionActions: SessionActionSummary[] | undefined;
2034
- nextToken?: string;
2034
+ nextToken?: string | undefined;
2035
2035
  }
2036
2036
  export interface ListSessionsRequest {
2037
2037
  farmId: string | undefined;
2038
2038
  queueId: string | undefined;
2039
2039
  jobId: string | undefined;
2040
- nextToken?: string;
2041
- maxResults?: number;
2040
+ nextToken?: string | undefined;
2041
+ maxResults?: number | undefined;
2042
2042
  }
2043
2043
  export interface SessionSummary {
2044
2044
  sessionId: string | undefined;
@@ -2046,22 +2046,22 @@ export interface SessionSummary {
2046
2046
  workerId: string | undefined;
2047
2047
  startedAt: Date | undefined;
2048
2048
  lifecycleStatus: SessionLifecycleStatus | undefined;
2049
- endedAt?: Date;
2050
- updatedAt?: Date;
2051
- updatedBy?: string;
2052
- targetLifecycleStatus?: SessionLifecycleTargetStatus;
2049
+ endedAt?: Date | undefined;
2050
+ updatedAt?: Date | undefined;
2051
+ updatedBy?: string | undefined;
2052
+ targetLifecycleStatus?: SessionLifecycleTargetStatus | undefined;
2053
2053
  }
2054
2054
  export interface ListSessionsResponse {
2055
2055
  sessions: SessionSummary[] | undefined;
2056
- nextToken?: string;
2056
+ nextToken?: string | undefined;
2057
2057
  }
2058
2058
  export interface ListStepConsumersRequest {
2059
2059
  farmId: string | undefined;
2060
2060
  queueId: string | undefined;
2061
2061
  jobId: string | undefined;
2062
2062
  stepId: string | undefined;
2063
- nextToken?: string;
2064
- maxResults?: number;
2063
+ nextToken?: string | undefined;
2064
+ maxResults?: number | undefined;
2065
2065
  }
2066
2066
  export declare const DependencyConsumerResolutionStatus: {
2067
2067
  readonly RESOLVED: "RESOLVED";
@@ -2075,15 +2075,15 @@ export interface StepConsumer {
2075
2075
  }
2076
2076
  export interface ListStepConsumersResponse {
2077
2077
  consumers: StepConsumer[] | undefined;
2078
- nextToken?: string;
2078
+ nextToken?: string | undefined;
2079
2079
  }
2080
2080
  export interface ListStepDependenciesRequest {
2081
2081
  farmId: string | undefined;
2082
2082
  queueId: string | undefined;
2083
2083
  jobId: string | undefined;
2084
2084
  stepId: string | undefined;
2085
- nextToken?: string;
2086
- maxResults?: number;
2085
+ nextToken?: string | undefined;
2086
+ maxResults?: number | undefined;
2087
2087
  }
2088
2088
  export interface StepDependency {
2089
2089
  stepId: string | undefined;
@@ -2091,60 +2091,60 @@ export interface StepDependency {
2091
2091
  }
2092
2092
  export interface ListStepDependenciesResponse {
2093
2093
  dependencies: StepDependency[] | undefined;
2094
- nextToken?: string;
2094
+ nextToken?: string | undefined;
2095
2095
  }
2096
2096
  export interface ListStepsRequest {
2097
2097
  farmId: string | undefined;
2098
2098
  queueId: string | undefined;
2099
2099
  jobId: string | undefined;
2100
- nextToken?: string;
2101
- maxResults?: number;
2100
+ nextToken?: string | undefined;
2101
+ maxResults?: number | undefined;
2102
2102
  }
2103
2103
  export interface StepSummary {
2104
2104
  stepId: string | undefined;
2105
2105
  name: string | undefined;
2106
2106
  lifecycleStatus: StepLifecycleStatus | undefined;
2107
- lifecycleStatusMessage?: string;
2107
+ lifecycleStatusMessage?: string | undefined;
2108
2108
  taskRunStatus: TaskRunStatus | undefined;
2109
2109
  taskRunStatusCounts: Partial<Record<TaskRunStatus, number>> | undefined;
2110
- targetTaskRunStatus?: StepTargetTaskRunStatus;
2110
+ targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
2111
2111
  createdAt: Date | undefined;
2112
2112
  createdBy: string | undefined;
2113
- updatedAt?: Date;
2114
- updatedBy?: string;
2115
- startedAt?: Date;
2116
- endedAt?: Date;
2117
- dependencyCounts?: DependencyCounts;
2113
+ updatedAt?: Date | undefined;
2114
+ updatedBy?: string | undefined;
2115
+ startedAt?: Date | undefined;
2116
+ endedAt?: Date | undefined;
2117
+ dependencyCounts?: DependencyCounts | undefined;
2118
2118
  }
2119
2119
  export interface ListStepsResponse {
2120
2120
  steps: StepSummary[] | undefined;
2121
- nextToken?: string;
2121
+ nextToken?: string | undefined;
2122
2122
  }
2123
2123
  export interface ListTasksRequest {
2124
2124
  farmId: string | undefined;
2125
2125
  queueId: string | undefined;
2126
2126
  jobId: string | undefined;
2127
2127
  stepId: string | undefined;
2128
- nextToken?: string;
2129
- maxResults?: number;
2128
+ nextToken?: string | undefined;
2129
+ maxResults?: number | undefined;
2130
2130
  }
2131
2131
  export interface TaskSummary {
2132
2132
  taskId: string | undefined;
2133
2133
  createdAt: Date | undefined;
2134
2134
  createdBy: string | undefined;
2135
2135
  runStatus: TaskRunStatus | undefined;
2136
- targetRunStatus?: TaskTargetRunStatus;
2137
- failureRetryCount?: number;
2138
- parameters?: Record<string, TaskParameterValue>;
2139
- startedAt?: Date;
2140
- endedAt?: Date;
2141
- updatedAt?: Date;
2142
- updatedBy?: string;
2143
- latestSessionActionId?: string;
2136
+ targetRunStatus?: TaskTargetRunStatus | undefined;
2137
+ failureRetryCount?: number | undefined;
2138
+ parameters?: Record<string, TaskParameterValue> | undefined;
2139
+ startedAt?: Date | undefined;
2140
+ endedAt?: Date | undefined;
2141
+ updatedAt?: Date | undefined;
2142
+ updatedBy?: string | undefined;
2143
+ latestSessionActionId?: string | undefined;
2144
2144
  }
2145
2145
  export interface ListTasksResponse {
2146
2146
  tasks: TaskSummary[] | undefined;
2147
- nextToken?: string;
2147
+ nextToken?: string | undefined;
2148
2148
  }
2149
2149
  export declare const UpdateJobLifecycleStatus: {
2150
2150
  readonly ARCHIVED: "ARCHIVED";
@@ -2152,19 +2152,19 @@ export declare const UpdateJobLifecycleStatus: {
2152
2152
  export type UpdateJobLifecycleStatus =
2153
2153
  (typeof UpdateJobLifecycleStatus)[keyof typeof UpdateJobLifecycleStatus];
2154
2154
  export interface UpdateJobRequest {
2155
- clientToken?: string;
2155
+ clientToken?: string | undefined;
2156
2156
  farmId: string | undefined;
2157
2157
  queueId: string | undefined;
2158
2158
  jobId: string | undefined;
2159
- targetTaskRunStatus?: JobTargetTaskRunStatus;
2160
- priority?: number;
2161
- maxFailedTasksCount?: number;
2162
- maxRetriesPerTask?: number;
2163
- lifecycleStatus?: UpdateJobLifecycleStatus;
2159
+ targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
2160
+ priority?: number | undefined;
2161
+ maxFailedTasksCount?: number | undefined;
2162
+ maxRetriesPerTask?: number | undefined;
2163
+ lifecycleStatus?: UpdateJobLifecycleStatus | undefined;
2164
2164
  }
2165
2165
  export interface UpdateJobResponse {}
2166
2166
  export interface UpdateSessionRequest {
2167
- clientToken?: string;
2167
+ clientToken?: string | undefined;
2168
2168
  farmId: string | undefined;
2169
2169
  queueId: string | undefined;
2170
2170
  jobId: string | undefined;
@@ -2173,7 +2173,7 @@ export interface UpdateSessionRequest {
2173
2173
  }
2174
2174
  export interface UpdateSessionResponse {}
2175
2175
  export interface UpdateStepRequest {
2176
- clientToken?: string;
2176
+ clientToken?: string | undefined;
2177
2177
  farmId: string | undefined;
2178
2178
  queueId: string | undefined;
2179
2179
  jobId: string | undefined;
@@ -2182,7 +2182,7 @@ export interface UpdateStepRequest {
2182
2182
  }
2183
2183
  export interface UpdateStepResponse {}
2184
2184
  export interface UpdateTaskRequest {
2185
- clientToken?: string;
2185
+ clientToken?: string | undefined;
2186
2186
  farmId: string | undefined;
2187
2187
  queueId: string | undefined;
2188
2188
  jobId: string | undefined;
@@ -2194,8 +2194,8 @@ export interface UpdateTaskResponse {}
2194
2194
  export interface ListQueueEnvironmentsRequest {
2195
2195
  farmId: string | undefined;
2196
2196
  queueId: string | undefined;
2197
- nextToken?: string;
2198
- maxResults?: number;
2197
+ nextToken?: string | undefined;
2198
+ maxResults?: number | undefined;
2199
2199
  }
2200
2200
  export interface QueueEnvironmentSummary {
2201
2201
  queueEnvironmentId: string | undefined;
@@ -2204,13 +2204,13 @@ export interface QueueEnvironmentSummary {
2204
2204
  }
2205
2205
  export interface ListQueueEnvironmentsResponse {
2206
2206
  environments: QueueEnvironmentSummary[] | undefined;
2207
- nextToken?: string;
2207
+ nextToken?: string | undefined;
2208
2208
  }
2209
2209
  export interface ListQueueMembersRequest {
2210
2210
  farmId: string | undefined;
2211
2211
  queueId: string | undefined;
2212
- nextToken?: string;
2213
- maxResults?: number;
2212
+ nextToken?: string | undefined;
2213
+ maxResults?: number | undefined;
2214
2214
  }
2215
2215
  export interface QueueMember {
2216
2216
  farmId: string | undefined;
@@ -2222,14 +2222,14 @@ export interface QueueMember {
2222
2222
  }
2223
2223
  export interface ListQueueMembersResponse {
2224
2224
  members: QueueMember[] | undefined;
2225
- nextToken?: string;
2225
+ nextToken?: string | undefined;
2226
2226
  }
2227
2227
  export interface ListQueuesRequest {
2228
2228
  farmId: string | undefined;
2229
- principalId?: string;
2230
- status?: QueueStatus;
2231
- nextToken?: string;
2232
- maxResults?: number;
2229
+ principalId?: string | undefined;
2230
+ status?: QueueStatus | undefined;
2231
+ nextToken?: string | undefined;
2232
+ maxResults?: number | undefined;
2233
2233
  }
2234
2234
  export interface QueueSummary {
2235
2235
  farmId: string | undefined;
@@ -2237,11 +2237,11 @@ export interface QueueSummary {
2237
2237
  displayName: string | undefined;
2238
2238
  status: QueueStatus | undefined;
2239
2239
  defaultBudgetAction: DefaultQueueBudgetAction | undefined;
2240
- blockedReason?: QueueBlockedReason;
2240
+ blockedReason?: QueueBlockedReason | undefined;
2241
2241
  createdAt: Date | undefined;
2242
2242
  createdBy: string | undefined;
2243
- updatedAt?: Date;
2244
- updatedBy?: string;
2243
+ updatedAt?: Date | undefined;
2244
+ updatedBy?: string | undefined;
2245
2245
  }
2246
2246
  export declare const TaskParameterValueFilterSensitiveLog: (
2247
2247
  obj: TaskParameterValue