@aws-sdk/client-ssm 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.
- package/dist-types/models/models_0.d.ts +702 -702
- package/dist-types/models/models_1.d.ts +868 -868
- package/dist-types/models/models_2.d.ts +191 -191
- package/dist-types/ts3.4/models/models_0.d.ts +706 -702
- package/dist-types/ts3.4/models/models_1.d.ts +880 -880
- package/dist-types/ts3.4/models/models_2.d.ts +199 -197
- package/package.json +7 -7
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
3
3
|
export interface AccountSharingInfo {
|
|
4
|
-
AccountId?: string;
|
|
5
|
-
SharedDocumentVersion?: string;
|
|
4
|
+
AccountId?: string | undefined;
|
|
5
|
+
SharedDocumentVersion?: string | undefined;
|
|
6
6
|
}
|
|
7
7
|
export interface Tag {
|
|
8
8
|
Key: string | undefined;
|
|
9
9
|
Value: string | undefined;
|
|
10
10
|
}
|
|
11
11
|
export interface Activation {
|
|
12
|
-
ActivationId?: string;
|
|
13
|
-
Description?: string;
|
|
14
|
-
DefaultInstanceName?: string;
|
|
15
|
-
IamRole?: string;
|
|
16
|
-
RegistrationLimit?: number;
|
|
17
|
-
RegistrationsCount?: number;
|
|
18
|
-
ExpirationDate?: Date;
|
|
19
|
-
Expired?: boolean;
|
|
20
|
-
CreatedDate?: Date;
|
|
21
|
-
Tags?: Tag[];
|
|
12
|
+
ActivationId?: string | undefined;
|
|
13
|
+
Description?: string | undefined;
|
|
14
|
+
DefaultInstanceName?: string | undefined;
|
|
15
|
+
IamRole?: string | undefined;
|
|
16
|
+
RegistrationLimit?: number | undefined;
|
|
17
|
+
RegistrationsCount?: number | undefined;
|
|
18
|
+
ExpirationDate?: Date | undefined;
|
|
19
|
+
Expired?: boolean | undefined;
|
|
20
|
+
CreatedDate?: Date | undefined;
|
|
21
|
+
Tags?: Tag[] | undefined;
|
|
22
22
|
}
|
|
23
23
|
export declare const ResourceTypeForTagging: {
|
|
24
24
|
readonly ASSOCIATION: "Association";
|
|
@@ -42,7 +42,7 @@ export interface AddTagsToResourceResult {}
|
|
|
42
42
|
export declare class InternalServerError extends __BaseException {
|
|
43
43
|
readonly name: "InternalServerError";
|
|
44
44
|
readonly $fault: "server";
|
|
45
|
-
Message?: string;
|
|
45
|
+
Message?: string | undefined;
|
|
46
46
|
constructor(
|
|
47
47
|
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
48
48
|
);
|
|
@@ -67,14 +67,14 @@ export declare class TooManyTagsError extends __BaseException {
|
|
|
67
67
|
export declare class TooManyUpdates extends __BaseException {
|
|
68
68
|
readonly name: "TooManyUpdates";
|
|
69
69
|
readonly $fault: "client";
|
|
70
|
-
Message?: string;
|
|
70
|
+
Message?: string | undefined;
|
|
71
71
|
constructor(opts: __ExceptionOptionType<TooManyUpdates, __BaseException>);
|
|
72
72
|
}
|
|
73
73
|
export interface Alarm {
|
|
74
74
|
Name: string | undefined;
|
|
75
75
|
}
|
|
76
76
|
export interface AlarmConfiguration {
|
|
77
|
-
IgnorePollAlarmFailure?: boolean;
|
|
77
|
+
IgnorePollAlarmFailure?: boolean | undefined;
|
|
78
78
|
Alarms: Alarm[] | undefined;
|
|
79
79
|
}
|
|
80
80
|
export declare const ExternalAlarmState: {
|
|
@@ -90,7 +90,7 @@ export interface AlarmStateInformation {
|
|
|
90
90
|
export declare class AlreadyExistsException extends __BaseException {
|
|
91
91
|
readonly name: "AlreadyExistsException";
|
|
92
92
|
readonly $fault: "client";
|
|
93
|
-
Message?: string;
|
|
93
|
+
Message?: string | undefined;
|
|
94
94
|
constructor(
|
|
95
95
|
opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
|
|
96
96
|
);
|
|
@@ -102,12 +102,12 @@ export interface AssociateOpsItemRelatedItemRequest {
|
|
|
102
102
|
ResourceUri: string | undefined;
|
|
103
103
|
}
|
|
104
104
|
export interface AssociateOpsItemRelatedItemResponse {
|
|
105
|
-
AssociationId?: string;
|
|
105
|
+
AssociationId?: string | undefined;
|
|
106
106
|
}
|
|
107
107
|
export declare class OpsItemConflictException extends __BaseException {
|
|
108
108
|
readonly name: "OpsItemConflictException";
|
|
109
109
|
readonly $fault: "client";
|
|
110
|
-
Message?: string;
|
|
110
|
+
Message?: string | undefined;
|
|
111
111
|
constructor(
|
|
112
112
|
opts: __ExceptionOptionType<OpsItemConflictException, __BaseException>
|
|
113
113
|
);
|
|
@@ -115,8 +115,8 @@ export declare class OpsItemConflictException extends __BaseException {
|
|
|
115
115
|
export declare class OpsItemInvalidParameterException extends __BaseException {
|
|
116
116
|
readonly name: "OpsItemInvalidParameterException";
|
|
117
117
|
readonly $fault: "client";
|
|
118
|
-
ParameterNames?: string[];
|
|
119
|
-
Message?: string;
|
|
118
|
+
ParameterNames?: string[] | undefined;
|
|
119
|
+
Message?: string | undefined;
|
|
120
120
|
constructor(
|
|
121
121
|
opts: __ExceptionOptionType<
|
|
122
122
|
OpsItemInvalidParameterException,
|
|
@@ -127,10 +127,10 @@ export declare class OpsItemInvalidParameterException extends __BaseException {
|
|
|
127
127
|
export declare class OpsItemLimitExceededException extends __BaseException {
|
|
128
128
|
readonly name: "OpsItemLimitExceededException";
|
|
129
129
|
readonly $fault: "client";
|
|
130
|
-
ResourceTypes?: string[];
|
|
131
|
-
Limit?: number;
|
|
132
|
-
LimitType?: string;
|
|
133
|
-
Message?: string;
|
|
130
|
+
ResourceTypes?: string[] | undefined;
|
|
131
|
+
Limit?: number | undefined;
|
|
132
|
+
LimitType?: string | undefined;
|
|
133
|
+
Message?: string | undefined;
|
|
134
134
|
constructor(
|
|
135
135
|
opts: __ExceptionOptionType<OpsItemLimitExceededException, __BaseException>
|
|
136
136
|
);
|
|
@@ -138,7 +138,7 @@ export declare class OpsItemLimitExceededException extends __BaseException {
|
|
|
138
138
|
export declare class OpsItemNotFoundException extends __BaseException {
|
|
139
139
|
readonly name: "OpsItemNotFoundException";
|
|
140
140
|
readonly $fault: "client";
|
|
141
|
-
Message?: string;
|
|
141
|
+
Message?: string | undefined;
|
|
142
142
|
constructor(
|
|
143
143
|
opts: __ExceptionOptionType<OpsItemNotFoundException, __BaseException>
|
|
144
144
|
);
|
|
@@ -146,9 +146,9 @@ export declare class OpsItemNotFoundException extends __BaseException {
|
|
|
146
146
|
export declare class OpsItemRelatedItemAlreadyExistsException extends __BaseException {
|
|
147
147
|
readonly name: "OpsItemRelatedItemAlreadyExistsException";
|
|
148
148
|
readonly $fault: "client";
|
|
149
|
-
Message?: string;
|
|
150
|
-
ResourceUri?: string;
|
|
151
|
-
OpsItemId?: string;
|
|
149
|
+
Message?: string | undefined;
|
|
150
|
+
ResourceUri?: string | undefined;
|
|
151
|
+
OpsItemId?: string | undefined;
|
|
152
152
|
constructor(
|
|
153
153
|
opts: __ExceptionOptionType<
|
|
154
154
|
OpsItemRelatedItemAlreadyExistsException,
|
|
@@ -158,7 +158,7 @@ export declare class OpsItemRelatedItemAlreadyExistsException extends __BaseExce
|
|
|
158
158
|
}
|
|
159
159
|
export interface CancelCommandRequest {
|
|
160
160
|
CommandId: string | undefined;
|
|
161
|
-
InstanceIds?: string[];
|
|
161
|
+
InstanceIds?: string[] | undefined;
|
|
162
162
|
}
|
|
163
163
|
export interface CancelCommandResult {}
|
|
164
164
|
export declare class DuplicateInstanceId extends __BaseException {
|
|
@@ -176,19 +176,19 @@ export declare class InvalidCommandId extends __BaseException {
|
|
|
176
176
|
export declare class InvalidInstanceId extends __BaseException {
|
|
177
177
|
readonly name: "InvalidInstanceId";
|
|
178
178
|
readonly $fault: "client";
|
|
179
|
-
Message?: string;
|
|
179
|
+
Message?: string | undefined;
|
|
180
180
|
constructor(opts: __ExceptionOptionType<InvalidInstanceId, __BaseException>);
|
|
181
181
|
}
|
|
182
182
|
export interface CancelMaintenanceWindowExecutionRequest {
|
|
183
183
|
WindowExecutionId: string | undefined;
|
|
184
184
|
}
|
|
185
185
|
export interface CancelMaintenanceWindowExecutionResult {
|
|
186
|
-
WindowExecutionId?: string;
|
|
186
|
+
WindowExecutionId?: string | undefined;
|
|
187
187
|
}
|
|
188
188
|
export declare class DoesNotExistException extends __BaseException {
|
|
189
189
|
readonly name: "DoesNotExistException";
|
|
190
190
|
readonly $fault: "client";
|
|
191
|
-
Message?: string;
|
|
191
|
+
Message?: string | undefined;
|
|
192
192
|
constructor(
|
|
193
193
|
opts: __ExceptionOptionType<DoesNotExistException, __BaseException>
|
|
194
194
|
);
|
|
@@ -198,22 +198,22 @@ export interface RegistrationMetadataItem {
|
|
|
198
198
|
Value: string | undefined;
|
|
199
199
|
}
|
|
200
200
|
export interface CreateActivationRequest {
|
|
201
|
-
Description?: string;
|
|
202
|
-
DefaultInstanceName?: string;
|
|
201
|
+
Description?: string | undefined;
|
|
202
|
+
DefaultInstanceName?: string | undefined;
|
|
203
203
|
IamRole: string | undefined;
|
|
204
|
-
RegistrationLimit?: number;
|
|
205
|
-
ExpirationDate?: Date;
|
|
206
|
-
Tags?: Tag[];
|
|
207
|
-
RegistrationMetadata?: RegistrationMetadataItem[];
|
|
204
|
+
RegistrationLimit?: number | undefined;
|
|
205
|
+
ExpirationDate?: Date | undefined;
|
|
206
|
+
Tags?: Tag[] | undefined;
|
|
207
|
+
RegistrationMetadata?: RegistrationMetadataItem[] | undefined;
|
|
208
208
|
}
|
|
209
209
|
export interface CreateActivationResult {
|
|
210
|
-
ActivationId?: string;
|
|
211
|
-
ActivationCode?: string;
|
|
210
|
+
ActivationId?: string | undefined;
|
|
211
|
+
ActivationCode?: string | undefined;
|
|
212
212
|
}
|
|
213
213
|
export declare class InvalidParameters extends __BaseException {
|
|
214
214
|
readonly name: "InvalidParameters";
|
|
215
215
|
readonly $fault: "client";
|
|
216
|
-
Message?: string;
|
|
216
|
+
Message?: string | undefined;
|
|
217
217
|
constructor(opts: __ExceptionOptionType<InvalidParameters, __BaseException>);
|
|
218
218
|
}
|
|
219
219
|
export declare class AssociationAlreadyExists extends __BaseException {
|
|
@@ -240,12 +240,12 @@ export declare const AssociationComplianceSeverity: {
|
|
|
240
240
|
export type AssociationComplianceSeverity =
|
|
241
241
|
(typeof AssociationComplianceSeverity)[keyof typeof AssociationComplianceSeverity];
|
|
242
242
|
export interface S3OutputLocation {
|
|
243
|
-
OutputS3Region?: string;
|
|
244
|
-
OutputS3BucketName?: string;
|
|
245
|
-
OutputS3KeyPrefix?: string;
|
|
243
|
+
OutputS3Region?: string | undefined;
|
|
244
|
+
OutputS3BucketName?: string | undefined;
|
|
245
|
+
OutputS3KeyPrefix?: string | undefined;
|
|
246
246
|
}
|
|
247
247
|
export interface InstanceAssociationOutputLocation {
|
|
248
|
-
S3Location?: S3OutputLocation;
|
|
248
|
+
S3Location?: S3OutputLocation | undefined;
|
|
249
249
|
}
|
|
250
250
|
export declare const AssociationSyncCompliance: {
|
|
251
251
|
readonly Auto: "AUTO";
|
|
@@ -254,49 +254,49 @@ export declare const AssociationSyncCompliance: {
|
|
|
254
254
|
export type AssociationSyncCompliance =
|
|
255
255
|
(typeof AssociationSyncCompliance)[keyof typeof AssociationSyncCompliance];
|
|
256
256
|
export interface Target {
|
|
257
|
-
Key?: string;
|
|
258
|
-
Values?: string[];
|
|
257
|
+
Key?: string | undefined;
|
|
258
|
+
Values?: string[] | undefined;
|
|
259
259
|
}
|
|
260
260
|
export interface TargetLocation {
|
|
261
|
-
Accounts?: string[];
|
|
262
|
-
Regions?: string[];
|
|
263
|
-
TargetLocationMaxConcurrency?: string;
|
|
264
|
-
TargetLocationMaxErrors?: string;
|
|
265
|
-
ExecutionRoleName?: string;
|
|
266
|
-
TargetLocationAlarmConfiguration?: AlarmConfiguration;
|
|
267
|
-
IncludeChildOrganizationUnits?: boolean;
|
|
268
|
-
ExcludeAccounts?: string[];
|
|
269
|
-
Targets?: Target[];
|
|
270
|
-
TargetsMaxConcurrency?: string;
|
|
271
|
-
TargetsMaxErrors?: string;
|
|
261
|
+
Accounts?: string[] | undefined;
|
|
262
|
+
Regions?: string[] | undefined;
|
|
263
|
+
TargetLocationMaxConcurrency?: string | undefined;
|
|
264
|
+
TargetLocationMaxErrors?: string | undefined;
|
|
265
|
+
ExecutionRoleName?: string | undefined;
|
|
266
|
+
TargetLocationAlarmConfiguration?: AlarmConfiguration | undefined;
|
|
267
|
+
IncludeChildOrganizationUnits?: boolean | undefined;
|
|
268
|
+
ExcludeAccounts?: string[] | undefined;
|
|
269
|
+
Targets?: Target[] | undefined;
|
|
270
|
+
TargetsMaxConcurrency?: string | undefined;
|
|
271
|
+
TargetsMaxErrors?: string | undefined;
|
|
272
272
|
}
|
|
273
273
|
export interface CreateAssociationRequest {
|
|
274
274
|
Name: string | undefined;
|
|
275
|
-
DocumentVersion?: string;
|
|
276
|
-
InstanceId?: string;
|
|
277
|
-
Parameters?: Record<string, string[]
|
|
278
|
-
Targets?: Target[];
|
|
279
|
-
ScheduleExpression?: string;
|
|
280
|
-
OutputLocation?: InstanceAssociationOutputLocation;
|
|
281
|
-
AssociationName?: string;
|
|
282
|
-
AutomationTargetParameterName?: string;
|
|
283
|
-
MaxErrors?: string;
|
|
284
|
-
MaxConcurrency?: string;
|
|
285
|
-
ComplianceSeverity?: AssociationComplianceSeverity;
|
|
286
|
-
SyncCompliance?: AssociationSyncCompliance;
|
|
287
|
-
ApplyOnlyAtCronInterval?: boolean;
|
|
288
|
-
CalendarNames?: string[];
|
|
289
|
-
TargetLocations?: TargetLocation[];
|
|
290
|
-
ScheduleOffset?: number;
|
|
291
|
-
Duration?: number;
|
|
292
|
-
TargetMaps?: Record<string, string[]>[];
|
|
293
|
-
Tags?: Tag[];
|
|
294
|
-
AlarmConfiguration?: AlarmConfiguration;
|
|
275
|
+
DocumentVersion?: string | undefined;
|
|
276
|
+
InstanceId?: string | undefined;
|
|
277
|
+
Parameters?: Record<string, string[]> | undefined;
|
|
278
|
+
Targets?: Target[] | undefined;
|
|
279
|
+
ScheduleExpression?: string | undefined;
|
|
280
|
+
OutputLocation?: InstanceAssociationOutputLocation | undefined;
|
|
281
|
+
AssociationName?: string | undefined;
|
|
282
|
+
AutomationTargetParameterName?: string | undefined;
|
|
283
|
+
MaxErrors?: string | undefined;
|
|
284
|
+
MaxConcurrency?: string | undefined;
|
|
285
|
+
ComplianceSeverity?: AssociationComplianceSeverity | undefined;
|
|
286
|
+
SyncCompliance?: AssociationSyncCompliance | undefined;
|
|
287
|
+
ApplyOnlyAtCronInterval?: boolean | undefined;
|
|
288
|
+
CalendarNames?: string[] | undefined;
|
|
289
|
+
TargetLocations?: TargetLocation[] | undefined;
|
|
290
|
+
ScheduleOffset?: number | undefined;
|
|
291
|
+
Duration?: number | undefined;
|
|
292
|
+
TargetMaps?: Record<string, string[]>[] | undefined;
|
|
293
|
+
Tags?: Tag[] | undefined;
|
|
294
|
+
AlarmConfiguration?: AlarmConfiguration | undefined;
|
|
295
295
|
}
|
|
296
296
|
export interface AssociationOverview {
|
|
297
|
-
Status?: string;
|
|
298
|
-
DetailedStatus?: string;
|
|
299
|
-
AssociationStatusAggregatedCount?: Record<string, number
|
|
297
|
+
Status?: string | undefined;
|
|
298
|
+
DetailedStatus?: string | undefined;
|
|
299
|
+
AssociationStatusAggregatedCount?: Record<string, number> | undefined;
|
|
300
300
|
}
|
|
301
301
|
export declare const AssociationStatusName: {
|
|
302
302
|
readonly Failed: "Failed";
|
|
@@ -309,52 +309,52 @@ export interface AssociationStatus {
|
|
|
309
309
|
Date: Date | undefined;
|
|
310
310
|
Name: AssociationStatusName | undefined;
|
|
311
311
|
Message: string | undefined;
|
|
312
|
-
AdditionalInfo?: string;
|
|
312
|
+
AdditionalInfo?: string | undefined;
|
|
313
313
|
}
|
|
314
314
|
export interface AssociationDescription {
|
|
315
|
-
Name?: string;
|
|
316
|
-
InstanceId?: string;
|
|
317
|
-
AssociationVersion?: string;
|
|
318
|
-
Date?: Date;
|
|
319
|
-
LastUpdateAssociationDate?: Date;
|
|
320
|
-
Status?: AssociationStatus;
|
|
321
|
-
Overview?: AssociationOverview;
|
|
322
|
-
DocumentVersion?: string;
|
|
323
|
-
AutomationTargetParameterName?: string;
|
|
324
|
-
Parameters?: Record<string, string[]
|
|
325
|
-
AssociationId?: string;
|
|
326
|
-
Targets?: Target[];
|
|
327
|
-
ScheduleExpression?: string;
|
|
328
|
-
OutputLocation?: InstanceAssociationOutputLocation;
|
|
329
|
-
LastExecutionDate?: Date;
|
|
330
|
-
LastSuccessfulExecutionDate?: Date;
|
|
331
|
-
AssociationName?: string;
|
|
332
|
-
MaxErrors?: string;
|
|
333
|
-
MaxConcurrency?: string;
|
|
334
|
-
ComplianceSeverity?: AssociationComplianceSeverity;
|
|
335
|
-
SyncCompliance?: AssociationSyncCompliance;
|
|
336
|
-
ApplyOnlyAtCronInterval?: boolean;
|
|
337
|
-
CalendarNames?: string[];
|
|
338
|
-
TargetLocations?: TargetLocation[];
|
|
339
|
-
ScheduleOffset?: number;
|
|
340
|
-
Duration?: number;
|
|
341
|
-
TargetMaps?: Record<string, string[]>[];
|
|
342
|
-
AlarmConfiguration?: AlarmConfiguration;
|
|
343
|
-
TriggeredAlarms?: AlarmStateInformation[];
|
|
315
|
+
Name?: string | undefined;
|
|
316
|
+
InstanceId?: string | undefined;
|
|
317
|
+
AssociationVersion?: string | undefined;
|
|
318
|
+
Date?: Date | undefined;
|
|
319
|
+
LastUpdateAssociationDate?: Date | undefined;
|
|
320
|
+
Status?: AssociationStatus | undefined;
|
|
321
|
+
Overview?: AssociationOverview | undefined;
|
|
322
|
+
DocumentVersion?: string | undefined;
|
|
323
|
+
AutomationTargetParameterName?: string | undefined;
|
|
324
|
+
Parameters?: Record<string, string[]> | undefined;
|
|
325
|
+
AssociationId?: string | undefined;
|
|
326
|
+
Targets?: Target[] | undefined;
|
|
327
|
+
ScheduleExpression?: string | undefined;
|
|
328
|
+
OutputLocation?: InstanceAssociationOutputLocation | undefined;
|
|
329
|
+
LastExecutionDate?: Date | undefined;
|
|
330
|
+
LastSuccessfulExecutionDate?: Date | undefined;
|
|
331
|
+
AssociationName?: string | undefined;
|
|
332
|
+
MaxErrors?: string | undefined;
|
|
333
|
+
MaxConcurrency?: string | undefined;
|
|
334
|
+
ComplianceSeverity?: AssociationComplianceSeverity | undefined;
|
|
335
|
+
SyncCompliance?: AssociationSyncCompliance | undefined;
|
|
336
|
+
ApplyOnlyAtCronInterval?: boolean | undefined;
|
|
337
|
+
CalendarNames?: string[] | undefined;
|
|
338
|
+
TargetLocations?: TargetLocation[] | undefined;
|
|
339
|
+
ScheduleOffset?: number | undefined;
|
|
340
|
+
Duration?: number | undefined;
|
|
341
|
+
TargetMaps?: Record<string, string[]>[] | undefined;
|
|
342
|
+
AlarmConfiguration?: AlarmConfiguration | undefined;
|
|
343
|
+
TriggeredAlarms?: AlarmStateInformation[] | undefined;
|
|
344
344
|
}
|
|
345
345
|
export interface CreateAssociationResult {
|
|
346
|
-
AssociationDescription?: AssociationDescription;
|
|
346
|
+
AssociationDescription?: AssociationDescription | undefined;
|
|
347
347
|
}
|
|
348
348
|
export declare class InvalidDocument extends __BaseException {
|
|
349
349
|
readonly name: "InvalidDocument";
|
|
350
350
|
readonly $fault: "client";
|
|
351
|
-
Message?: string;
|
|
351
|
+
Message?: string | undefined;
|
|
352
352
|
constructor(opts: __ExceptionOptionType<InvalidDocument, __BaseException>);
|
|
353
353
|
}
|
|
354
354
|
export declare class InvalidDocumentVersion extends __BaseException {
|
|
355
355
|
readonly name: "InvalidDocumentVersion";
|
|
356
356
|
readonly $fault: "client";
|
|
357
|
-
Message?: string;
|
|
357
|
+
Message?: string | undefined;
|
|
358
358
|
constructor(
|
|
359
359
|
opts: __ExceptionOptionType<InvalidDocumentVersion, __BaseException>
|
|
360
360
|
);
|
|
@@ -369,56 +369,56 @@ export declare class InvalidOutputLocation extends __BaseException {
|
|
|
369
369
|
export declare class InvalidSchedule extends __BaseException {
|
|
370
370
|
readonly name: "InvalidSchedule";
|
|
371
371
|
readonly $fault: "client";
|
|
372
|
-
Message?: string;
|
|
372
|
+
Message?: string | undefined;
|
|
373
373
|
constructor(opts: __ExceptionOptionType<InvalidSchedule, __BaseException>);
|
|
374
374
|
}
|
|
375
375
|
export declare class InvalidTag extends __BaseException {
|
|
376
376
|
readonly name: "InvalidTag";
|
|
377
377
|
readonly $fault: "client";
|
|
378
|
-
Message?: string;
|
|
378
|
+
Message?: string | undefined;
|
|
379
379
|
constructor(opts: __ExceptionOptionType<InvalidTag, __BaseException>);
|
|
380
380
|
}
|
|
381
381
|
export declare class InvalidTarget extends __BaseException {
|
|
382
382
|
readonly name: "InvalidTarget";
|
|
383
383
|
readonly $fault: "client";
|
|
384
|
-
Message?: string;
|
|
384
|
+
Message?: string | undefined;
|
|
385
385
|
constructor(opts: __ExceptionOptionType<InvalidTarget, __BaseException>);
|
|
386
386
|
}
|
|
387
387
|
export declare class InvalidTargetMaps extends __BaseException {
|
|
388
388
|
readonly name: "InvalidTargetMaps";
|
|
389
389
|
readonly $fault: "client";
|
|
390
|
-
Message?: string;
|
|
390
|
+
Message?: string | undefined;
|
|
391
391
|
constructor(opts: __ExceptionOptionType<InvalidTargetMaps, __BaseException>);
|
|
392
392
|
}
|
|
393
393
|
export declare class UnsupportedPlatformType extends __BaseException {
|
|
394
394
|
readonly name: "UnsupportedPlatformType";
|
|
395
395
|
readonly $fault: "client";
|
|
396
|
-
Message?: string;
|
|
396
|
+
Message?: string | undefined;
|
|
397
397
|
constructor(
|
|
398
398
|
opts: __ExceptionOptionType<UnsupportedPlatformType, __BaseException>
|
|
399
399
|
);
|
|
400
400
|
}
|
|
401
401
|
export interface CreateAssociationBatchRequestEntry {
|
|
402
402
|
Name: string | undefined;
|
|
403
|
-
InstanceId?: string;
|
|
404
|
-
Parameters?: Record<string, string[]
|
|
405
|
-
AutomationTargetParameterName?: string;
|
|
406
|
-
DocumentVersion?: string;
|
|
407
|
-
Targets?: Target[];
|
|
408
|
-
ScheduleExpression?: string;
|
|
409
|
-
OutputLocation?: InstanceAssociationOutputLocation;
|
|
410
|
-
AssociationName?: string;
|
|
411
|
-
MaxErrors?: string;
|
|
412
|
-
MaxConcurrency?: string;
|
|
413
|
-
ComplianceSeverity?: AssociationComplianceSeverity;
|
|
414
|
-
SyncCompliance?: AssociationSyncCompliance;
|
|
415
|
-
ApplyOnlyAtCronInterval?: boolean;
|
|
416
|
-
CalendarNames?: string[];
|
|
417
|
-
TargetLocations?: TargetLocation[];
|
|
418
|
-
ScheduleOffset?: number;
|
|
419
|
-
Duration?: number;
|
|
420
|
-
TargetMaps?: Record<string, string[]>[];
|
|
421
|
-
AlarmConfiguration?: AlarmConfiguration;
|
|
403
|
+
InstanceId?: string | undefined;
|
|
404
|
+
Parameters?: Record<string, string[]> | undefined;
|
|
405
|
+
AutomationTargetParameterName?: string | undefined;
|
|
406
|
+
DocumentVersion?: string | undefined;
|
|
407
|
+
Targets?: Target[] | undefined;
|
|
408
|
+
ScheduleExpression?: string | undefined;
|
|
409
|
+
OutputLocation?: InstanceAssociationOutputLocation | undefined;
|
|
410
|
+
AssociationName?: string | undefined;
|
|
411
|
+
MaxErrors?: string | undefined;
|
|
412
|
+
MaxConcurrency?: string | undefined;
|
|
413
|
+
ComplianceSeverity?: AssociationComplianceSeverity | undefined;
|
|
414
|
+
SyncCompliance?: AssociationSyncCompliance | undefined;
|
|
415
|
+
ApplyOnlyAtCronInterval?: boolean | undefined;
|
|
416
|
+
CalendarNames?: string[] | undefined;
|
|
417
|
+
TargetLocations?: TargetLocation[] | undefined;
|
|
418
|
+
ScheduleOffset?: number | undefined;
|
|
419
|
+
Duration?: number | undefined;
|
|
420
|
+
TargetMaps?: Record<string, string[]>[] | undefined;
|
|
421
|
+
AlarmConfiguration?: AlarmConfiguration | undefined;
|
|
422
422
|
}
|
|
423
423
|
export interface CreateAssociationBatchRequest {
|
|
424
424
|
Entries: CreateAssociationBatchRequestEntry[] | undefined;
|
|
@@ -430,13 +430,13 @@ export declare const Fault: {
|
|
|
430
430
|
};
|
|
431
431
|
export type Fault = (typeof Fault)[keyof typeof Fault];
|
|
432
432
|
export interface FailedCreateAssociation {
|
|
433
|
-
Entry?: CreateAssociationBatchRequestEntry;
|
|
434
|
-
Message?: string;
|
|
435
|
-
Fault?: Fault;
|
|
433
|
+
Entry?: CreateAssociationBatchRequestEntry | undefined;
|
|
434
|
+
Message?: string | undefined;
|
|
435
|
+
Fault?: Fault | undefined;
|
|
436
436
|
}
|
|
437
437
|
export interface CreateAssociationBatchResult {
|
|
438
|
-
Successful?: AssociationDescription[];
|
|
439
|
-
Failed?: FailedCreateAssociation[];
|
|
438
|
+
Successful?: AssociationDescription[] | undefined;
|
|
439
|
+
Failed?: FailedCreateAssociation[] | undefined;
|
|
440
440
|
}
|
|
441
441
|
export declare const AttachmentsSourceKey: {
|
|
442
442
|
readonly AttachmentReference: "AttachmentReference";
|
|
@@ -446,9 +446,9 @@ export declare const AttachmentsSourceKey: {
|
|
|
446
446
|
export type AttachmentsSourceKey =
|
|
447
447
|
(typeof AttachmentsSourceKey)[keyof typeof AttachmentsSourceKey];
|
|
448
448
|
export interface AttachmentsSource {
|
|
449
|
-
Key?: AttachmentsSourceKey;
|
|
450
|
-
Values?: string[];
|
|
451
|
-
Name?: string;
|
|
449
|
+
Key?: AttachmentsSourceKey | undefined;
|
|
450
|
+
Values?: string[] | undefined;
|
|
451
|
+
Name?: string | undefined;
|
|
452
452
|
}
|
|
453
453
|
export declare const DocumentFormat: {
|
|
454
454
|
readonly JSON: "JSON";
|
|
@@ -477,24 +477,24 @@ export declare const DocumentType: {
|
|
|
477
477
|
export type DocumentType = (typeof DocumentType)[keyof typeof DocumentType];
|
|
478
478
|
export interface DocumentRequires {
|
|
479
479
|
Name: string | undefined;
|
|
480
|
-
Version?: string;
|
|
481
|
-
RequireType?: string;
|
|
482
|
-
VersionName?: string;
|
|
480
|
+
Version?: string | undefined;
|
|
481
|
+
RequireType?: string | undefined;
|
|
482
|
+
VersionName?: string | undefined;
|
|
483
483
|
}
|
|
484
484
|
export interface CreateDocumentRequest {
|
|
485
485
|
Content: string | undefined;
|
|
486
|
-
Requires?: DocumentRequires[];
|
|
487
|
-
Attachments?: AttachmentsSource[];
|
|
486
|
+
Requires?: DocumentRequires[] | undefined;
|
|
487
|
+
Attachments?: AttachmentsSource[] | undefined;
|
|
488
488
|
Name: string | undefined;
|
|
489
|
-
DisplayName?: string;
|
|
490
|
-
VersionName?: string;
|
|
491
|
-
DocumentType?: DocumentType;
|
|
492
|
-
DocumentFormat?: DocumentFormat;
|
|
493
|
-
TargetType?: string;
|
|
494
|
-
Tags?: Tag[];
|
|
489
|
+
DisplayName?: string | undefined;
|
|
490
|
+
VersionName?: string | undefined;
|
|
491
|
+
DocumentType?: DocumentType | undefined;
|
|
492
|
+
DocumentFormat?: DocumentFormat | undefined;
|
|
493
|
+
TargetType?: string | undefined;
|
|
494
|
+
Tags?: Tag[] | undefined;
|
|
495
495
|
}
|
|
496
496
|
export interface AttachmentInformation {
|
|
497
|
-
Name?: string;
|
|
497
|
+
Name?: string | undefined;
|
|
498
498
|
}
|
|
499
499
|
export declare const DocumentHashType: {
|
|
500
500
|
readonly SHA1: "Sha1";
|
|
@@ -509,10 +509,10 @@ export declare const DocumentParameterType: {
|
|
|
509
509
|
export type DocumentParameterType =
|
|
510
510
|
(typeof DocumentParameterType)[keyof typeof DocumentParameterType];
|
|
511
511
|
export interface DocumentParameter {
|
|
512
|
-
Name?: string;
|
|
513
|
-
Type?: DocumentParameterType;
|
|
514
|
-
Description?: string;
|
|
515
|
-
DefaultValue?: string;
|
|
512
|
+
Name?: string | undefined;
|
|
513
|
+
Type?: DocumentParameterType | undefined;
|
|
514
|
+
Description?: string | undefined;
|
|
515
|
+
DefaultValue?: string | undefined;
|
|
516
516
|
}
|
|
517
517
|
export declare const PlatformType: {
|
|
518
518
|
readonly LINUX: "Linux";
|
|
@@ -528,9 +528,9 @@ export declare const ReviewStatus: {
|
|
|
528
528
|
};
|
|
529
529
|
export type ReviewStatus = (typeof ReviewStatus)[keyof typeof ReviewStatus];
|
|
530
530
|
export interface ReviewInformation {
|
|
531
|
-
ReviewedTime?: Date;
|
|
532
|
-
Status?: ReviewStatus;
|
|
533
|
-
Reviewer?: string;
|
|
531
|
+
ReviewedTime?: Date | undefined;
|
|
532
|
+
Status?: ReviewStatus | undefined;
|
|
533
|
+
Reviewer?: string | undefined;
|
|
534
534
|
}
|
|
535
535
|
export declare const DocumentStatus: {
|
|
536
536
|
readonly Active: "Active";
|
|
@@ -542,44 +542,44 @@ export declare const DocumentStatus: {
|
|
|
542
542
|
export type DocumentStatus =
|
|
543
543
|
(typeof DocumentStatus)[keyof typeof DocumentStatus];
|
|
544
544
|
export interface DocumentDescription {
|
|
545
|
-
Sha1?: string;
|
|
546
|
-
Hash?: string;
|
|
547
|
-
HashType?: DocumentHashType;
|
|
548
|
-
Name?: string;
|
|
549
|
-
DisplayName?: string;
|
|
550
|
-
VersionName?: string;
|
|
551
|
-
Owner?: string;
|
|
552
|
-
CreatedDate?: Date;
|
|
553
|
-
Status?: DocumentStatus;
|
|
554
|
-
StatusInformation?: string;
|
|
555
|
-
DocumentVersion?: string;
|
|
556
|
-
Description?: string;
|
|
557
|
-
Parameters?: DocumentParameter[];
|
|
558
|
-
PlatformTypes?: PlatformType[];
|
|
559
|
-
DocumentType?: DocumentType;
|
|
560
|
-
SchemaVersion?: string;
|
|
561
|
-
LatestVersion?: string;
|
|
562
|
-
DefaultVersion?: string;
|
|
563
|
-
DocumentFormat?: DocumentFormat;
|
|
564
|
-
TargetType?: string;
|
|
565
|
-
Tags?: Tag[];
|
|
566
|
-
AttachmentsInformation?: AttachmentInformation[];
|
|
567
|
-
Requires?: DocumentRequires[];
|
|
568
|
-
Author?: string;
|
|
569
|
-
ReviewInformation?: ReviewInformation[];
|
|
570
|
-
ApprovedVersion?: string;
|
|
571
|
-
PendingReviewVersion?: string;
|
|
572
|
-
ReviewStatus?: ReviewStatus;
|
|
573
|
-
Category?: string[];
|
|
574
|
-
CategoryEnum?: string[];
|
|
545
|
+
Sha1?: string | undefined;
|
|
546
|
+
Hash?: string | undefined;
|
|
547
|
+
HashType?: DocumentHashType | undefined;
|
|
548
|
+
Name?: string | undefined;
|
|
549
|
+
DisplayName?: string | undefined;
|
|
550
|
+
VersionName?: string | undefined;
|
|
551
|
+
Owner?: string | undefined;
|
|
552
|
+
CreatedDate?: Date | undefined;
|
|
553
|
+
Status?: DocumentStatus | undefined;
|
|
554
|
+
StatusInformation?: string | undefined;
|
|
555
|
+
DocumentVersion?: string | undefined;
|
|
556
|
+
Description?: string | undefined;
|
|
557
|
+
Parameters?: DocumentParameter[] | undefined;
|
|
558
|
+
PlatformTypes?: PlatformType[] | undefined;
|
|
559
|
+
DocumentType?: DocumentType | undefined;
|
|
560
|
+
SchemaVersion?: string | undefined;
|
|
561
|
+
LatestVersion?: string | undefined;
|
|
562
|
+
DefaultVersion?: string | undefined;
|
|
563
|
+
DocumentFormat?: DocumentFormat | undefined;
|
|
564
|
+
TargetType?: string | undefined;
|
|
565
|
+
Tags?: Tag[] | undefined;
|
|
566
|
+
AttachmentsInformation?: AttachmentInformation[] | undefined;
|
|
567
|
+
Requires?: DocumentRequires[] | undefined;
|
|
568
|
+
Author?: string | undefined;
|
|
569
|
+
ReviewInformation?: ReviewInformation[] | undefined;
|
|
570
|
+
ApprovedVersion?: string | undefined;
|
|
571
|
+
PendingReviewVersion?: string | undefined;
|
|
572
|
+
ReviewStatus?: ReviewStatus | undefined;
|
|
573
|
+
Category?: string[] | undefined;
|
|
574
|
+
CategoryEnum?: string[] | undefined;
|
|
575
575
|
}
|
|
576
576
|
export interface CreateDocumentResult {
|
|
577
|
-
DocumentDescription?: DocumentDescription;
|
|
577
|
+
DocumentDescription?: DocumentDescription | undefined;
|
|
578
578
|
}
|
|
579
579
|
export declare class DocumentAlreadyExists extends __BaseException {
|
|
580
580
|
readonly name: "DocumentAlreadyExists";
|
|
581
581
|
readonly $fault: "client";
|
|
582
|
-
Message?: string;
|
|
582
|
+
Message?: string | undefined;
|
|
583
583
|
constructor(
|
|
584
584
|
opts: __ExceptionOptionType<DocumentAlreadyExists, __BaseException>
|
|
585
585
|
);
|
|
@@ -587,7 +587,7 @@ export declare class DocumentAlreadyExists extends __BaseException {
|
|
|
587
587
|
export declare class DocumentLimitExceeded extends __BaseException {
|
|
588
588
|
readonly name: "DocumentLimitExceeded";
|
|
589
589
|
readonly $fault: "client";
|
|
590
|
-
Message?: string;
|
|
590
|
+
Message?: string | undefined;
|
|
591
591
|
constructor(
|
|
592
592
|
opts: __ExceptionOptionType<DocumentLimitExceeded, __BaseException>
|
|
593
593
|
);
|
|
@@ -595,7 +595,7 @@ export declare class DocumentLimitExceeded extends __BaseException {
|
|
|
595
595
|
export declare class InvalidDocumentContent extends __BaseException {
|
|
596
596
|
readonly name: "InvalidDocumentContent";
|
|
597
597
|
readonly $fault: "client";
|
|
598
|
-
Message?: string;
|
|
598
|
+
Message?: string | undefined;
|
|
599
599
|
constructor(
|
|
600
600
|
opts: __ExceptionOptionType<InvalidDocumentContent, __BaseException>
|
|
601
601
|
);
|
|
@@ -603,7 +603,7 @@ export declare class InvalidDocumentContent extends __BaseException {
|
|
|
603
603
|
export declare class InvalidDocumentSchemaVersion extends __BaseException {
|
|
604
604
|
readonly name: "InvalidDocumentSchemaVersion";
|
|
605
605
|
readonly $fault: "client";
|
|
606
|
-
Message?: string;
|
|
606
|
+
Message?: string | undefined;
|
|
607
607
|
constructor(
|
|
608
608
|
opts: __ExceptionOptionType<InvalidDocumentSchemaVersion, __BaseException>
|
|
609
609
|
);
|
|
@@ -611,32 +611,32 @@ export declare class InvalidDocumentSchemaVersion extends __BaseException {
|
|
|
611
611
|
export declare class MaxDocumentSizeExceeded extends __BaseException {
|
|
612
612
|
readonly name: "MaxDocumentSizeExceeded";
|
|
613
613
|
readonly $fault: "client";
|
|
614
|
-
Message?: string;
|
|
614
|
+
Message?: string | undefined;
|
|
615
615
|
constructor(
|
|
616
616
|
opts: __ExceptionOptionType<MaxDocumentSizeExceeded, __BaseException>
|
|
617
617
|
);
|
|
618
618
|
}
|
|
619
619
|
export interface CreateMaintenanceWindowRequest {
|
|
620
620
|
Name: string | undefined;
|
|
621
|
-
Description?: string;
|
|
622
|
-
StartDate?: string;
|
|
623
|
-
EndDate?: string;
|
|
621
|
+
Description?: string | undefined;
|
|
622
|
+
StartDate?: string | undefined;
|
|
623
|
+
EndDate?: string | undefined;
|
|
624
624
|
Schedule: string | undefined;
|
|
625
|
-
ScheduleTimezone?: string;
|
|
626
|
-
ScheduleOffset?: number;
|
|
625
|
+
ScheduleTimezone?: string | undefined;
|
|
626
|
+
ScheduleOffset?: number | undefined;
|
|
627
627
|
Duration: number | undefined;
|
|
628
628
|
Cutoff: number | undefined;
|
|
629
629
|
AllowUnassociatedTargets: boolean | undefined;
|
|
630
|
-
ClientToken?: string;
|
|
631
|
-
Tags?: Tag[];
|
|
630
|
+
ClientToken?: string | undefined;
|
|
631
|
+
Tags?: Tag[] | undefined;
|
|
632
632
|
}
|
|
633
633
|
export interface CreateMaintenanceWindowResult {
|
|
634
|
-
WindowId?: string;
|
|
634
|
+
WindowId?: string | undefined;
|
|
635
635
|
}
|
|
636
636
|
export declare class IdempotentParameterMismatch extends __BaseException {
|
|
637
637
|
readonly name: "IdempotentParameterMismatch";
|
|
638
638
|
readonly $fault: "client";
|
|
639
|
-
Message?: string;
|
|
639
|
+
Message?: string | undefined;
|
|
640
640
|
constructor(
|
|
641
641
|
opts: __ExceptionOptionType<IdempotentParameterMismatch, __BaseException>
|
|
642
642
|
);
|
|
@@ -644,13 +644,13 @@ export declare class IdempotentParameterMismatch extends __BaseException {
|
|
|
644
644
|
export declare class ResourceLimitExceededException extends __BaseException {
|
|
645
645
|
readonly name: "ResourceLimitExceededException";
|
|
646
646
|
readonly $fault: "client";
|
|
647
|
-
Message?: string;
|
|
647
|
+
Message?: string | undefined;
|
|
648
648
|
constructor(
|
|
649
649
|
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
650
650
|
);
|
|
651
651
|
}
|
|
652
652
|
export interface OpsItemNotification {
|
|
653
|
-
Arn?: string;
|
|
653
|
+
Arn?: string | undefined;
|
|
654
654
|
}
|
|
655
655
|
export declare const OpsItemDataType: {
|
|
656
656
|
readonly SEARCHABLE_STRING: "SearchableString";
|
|
@@ -659,38 +659,38 @@ export declare const OpsItemDataType: {
|
|
|
659
659
|
export type OpsItemDataType =
|
|
660
660
|
(typeof OpsItemDataType)[keyof typeof OpsItemDataType];
|
|
661
661
|
export interface OpsItemDataValue {
|
|
662
|
-
Value?: string;
|
|
663
|
-
Type?: OpsItemDataType;
|
|
662
|
+
Value?: string | undefined;
|
|
663
|
+
Type?: OpsItemDataType | undefined;
|
|
664
664
|
}
|
|
665
665
|
export interface RelatedOpsItem {
|
|
666
666
|
OpsItemId: string | undefined;
|
|
667
667
|
}
|
|
668
668
|
export interface CreateOpsItemRequest {
|
|
669
669
|
Description: string | undefined;
|
|
670
|
-
OpsItemType?: string;
|
|
671
|
-
OperationalData?: Record<string, OpsItemDataValue
|
|
672
|
-
Notifications?: OpsItemNotification[];
|
|
673
|
-
Priority?: number;
|
|
674
|
-
RelatedOpsItems?: RelatedOpsItem[];
|
|
670
|
+
OpsItemType?: string | undefined;
|
|
671
|
+
OperationalData?: Record<string, OpsItemDataValue> | undefined;
|
|
672
|
+
Notifications?: OpsItemNotification[] | undefined;
|
|
673
|
+
Priority?: number | undefined;
|
|
674
|
+
RelatedOpsItems?: RelatedOpsItem[] | undefined;
|
|
675
675
|
Source: string | undefined;
|
|
676
676
|
Title: string | undefined;
|
|
677
|
-
Tags?: Tag[];
|
|
678
|
-
Category?: string;
|
|
679
|
-
Severity?: string;
|
|
680
|
-
ActualStartTime?: Date;
|
|
681
|
-
ActualEndTime?: Date;
|
|
682
|
-
PlannedStartTime?: Date;
|
|
683
|
-
PlannedEndTime?: Date;
|
|
684
|
-
AccountId?: string;
|
|
677
|
+
Tags?: Tag[] | undefined;
|
|
678
|
+
Category?: string | undefined;
|
|
679
|
+
Severity?: string | undefined;
|
|
680
|
+
ActualStartTime?: Date | undefined;
|
|
681
|
+
ActualEndTime?: Date | undefined;
|
|
682
|
+
PlannedStartTime?: Date | undefined;
|
|
683
|
+
PlannedEndTime?: Date | undefined;
|
|
684
|
+
AccountId?: string | undefined;
|
|
685
685
|
}
|
|
686
686
|
export interface CreateOpsItemResponse {
|
|
687
|
-
OpsItemId?: string;
|
|
688
|
-
OpsItemArn?: string;
|
|
687
|
+
OpsItemId?: string | undefined;
|
|
688
|
+
OpsItemArn?: string | undefined;
|
|
689
689
|
}
|
|
690
690
|
export declare class OpsItemAccessDeniedException extends __BaseException {
|
|
691
691
|
readonly name: "OpsItemAccessDeniedException";
|
|
692
692
|
readonly $fault: "client";
|
|
693
|
-
Message?: string;
|
|
693
|
+
Message?: string | undefined;
|
|
694
694
|
constructor(
|
|
695
695
|
opts: __ExceptionOptionType<OpsItemAccessDeniedException, __BaseException>
|
|
696
696
|
);
|
|
@@ -698,22 +698,22 @@ export declare class OpsItemAccessDeniedException extends __BaseException {
|
|
|
698
698
|
export declare class OpsItemAlreadyExistsException extends __BaseException {
|
|
699
699
|
readonly name: "OpsItemAlreadyExistsException";
|
|
700
700
|
readonly $fault: "client";
|
|
701
|
-
Message?: string;
|
|
702
|
-
OpsItemId?: string;
|
|
701
|
+
Message?: string | undefined;
|
|
702
|
+
OpsItemId?: string | undefined;
|
|
703
703
|
constructor(
|
|
704
704
|
opts: __ExceptionOptionType<OpsItemAlreadyExistsException, __BaseException>
|
|
705
705
|
);
|
|
706
706
|
}
|
|
707
707
|
export interface MetadataValue {
|
|
708
|
-
Value?: string;
|
|
708
|
+
Value?: string | undefined;
|
|
709
709
|
}
|
|
710
710
|
export interface CreateOpsMetadataRequest {
|
|
711
711
|
ResourceId: string | undefined;
|
|
712
|
-
Metadata?: Record<string, MetadataValue
|
|
713
|
-
Tags?: Tag[];
|
|
712
|
+
Metadata?: Record<string, MetadataValue> | undefined;
|
|
713
|
+
Tags?: Tag[] | undefined;
|
|
714
714
|
}
|
|
715
715
|
export interface CreateOpsMetadataResult {
|
|
716
|
-
OpsMetadataArn?: string;
|
|
716
|
+
OpsMetadataArn?: string | undefined;
|
|
717
717
|
}
|
|
718
718
|
export declare class OpsMetadataAlreadyExistsException extends __BaseException {
|
|
719
719
|
readonly name: "OpsMetadataAlreadyExistsException";
|
|
@@ -797,10 +797,10 @@ export interface PatchFilterGroup {
|
|
|
797
797
|
}
|
|
798
798
|
export interface PatchRule {
|
|
799
799
|
PatchFilterGroup: PatchFilterGroup | undefined;
|
|
800
|
-
ComplianceLevel?: PatchComplianceLevel;
|
|
801
|
-
ApproveAfterDays?: number;
|
|
802
|
-
ApproveUntilDate?: string;
|
|
803
|
-
EnableNonSecurity?: boolean;
|
|
800
|
+
ComplianceLevel?: PatchComplianceLevel | undefined;
|
|
801
|
+
ApproveAfterDays?: number | undefined;
|
|
802
|
+
ApproveUntilDate?: string | undefined;
|
|
803
|
+
EnableNonSecurity?: boolean | undefined;
|
|
804
804
|
}
|
|
805
805
|
export interface PatchRuleGroup {
|
|
806
806
|
PatchRules: PatchRule[] | undefined;
|
|
@@ -835,25 +835,25 @@ export interface PatchSource {
|
|
|
835
835
|
Configuration: string | undefined;
|
|
836
836
|
}
|
|
837
837
|
export interface CreatePatchBaselineRequest {
|
|
838
|
-
OperatingSystem?: OperatingSystem;
|
|
838
|
+
OperatingSystem?: OperatingSystem | undefined;
|
|
839
839
|
Name: string | undefined;
|
|
840
|
-
GlobalFilters?: PatchFilterGroup;
|
|
841
|
-
ApprovalRules?: PatchRuleGroup;
|
|
842
|
-
ApprovedPatches?: string[];
|
|
843
|
-
ApprovedPatchesComplianceLevel?: PatchComplianceLevel;
|
|
844
|
-
ApprovedPatchesEnableNonSecurity?: boolean;
|
|
845
|
-
RejectedPatches?: string[];
|
|
846
|
-
RejectedPatchesAction?: PatchAction;
|
|
847
|
-
Description?: string;
|
|
848
|
-
Sources?: PatchSource[];
|
|
849
|
-
ClientToken?: string;
|
|
850
|
-
Tags?: Tag[];
|
|
840
|
+
GlobalFilters?: PatchFilterGroup | undefined;
|
|
841
|
+
ApprovalRules?: PatchRuleGroup | undefined;
|
|
842
|
+
ApprovedPatches?: string[] | undefined;
|
|
843
|
+
ApprovedPatchesComplianceLevel?: PatchComplianceLevel | undefined;
|
|
844
|
+
ApprovedPatchesEnableNonSecurity?: boolean | undefined;
|
|
845
|
+
RejectedPatches?: string[] | undefined;
|
|
846
|
+
RejectedPatchesAction?: PatchAction | undefined;
|
|
847
|
+
Description?: string | undefined;
|
|
848
|
+
Sources?: PatchSource[] | undefined;
|
|
849
|
+
ClientToken?: string | undefined;
|
|
850
|
+
Tags?: Tag[] | undefined;
|
|
851
851
|
}
|
|
852
852
|
export interface CreatePatchBaselineResult {
|
|
853
|
-
BaselineId?: string;
|
|
853
|
+
BaselineId?: string | undefined;
|
|
854
854
|
}
|
|
855
855
|
export interface ResourceDataSyncDestinationDataSharing {
|
|
856
|
-
DestinationDataSharingType?: string;
|
|
856
|
+
DestinationDataSharingType?: string | undefined;
|
|
857
857
|
}
|
|
858
858
|
export declare const ResourceDataSyncS3Format: {
|
|
859
859
|
readonly JSON_SERDE: "JsonSerDe";
|
|
@@ -862,37 +862,37 @@ export type ResourceDataSyncS3Format =
|
|
|
862
862
|
(typeof ResourceDataSyncS3Format)[keyof typeof ResourceDataSyncS3Format];
|
|
863
863
|
export interface ResourceDataSyncS3Destination {
|
|
864
864
|
BucketName: string | undefined;
|
|
865
|
-
Prefix?: string;
|
|
865
|
+
Prefix?: string | undefined;
|
|
866
866
|
SyncFormat: ResourceDataSyncS3Format | undefined;
|
|
867
867
|
Region: string | undefined;
|
|
868
|
-
AWSKMSKeyARN?: string;
|
|
869
|
-
DestinationDataSharing?: ResourceDataSyncDestinationDataSharing;
|
|
868
|
+
AWSKMSKeyARN?: string | undefined;
|
|
869
|
+
DestinationDataSharing?: ResourceDataSyncDestinationDataSharing | undefined;
|
|
870
870
|
}
|
|
871
871
|
export interface ResourceDataSyncOrganizationalUnit {
|
|
872
|
-
OrganizationalUnitId?: string;
|
|
872
|
+
OrganizationalUnitId?: string | undefined;
|
|
873
873
|
}
|
|
874
874
|
export interface ResourceDataSyncAwsOrganizationsSource {
|
|
875
875
|
OrganizationSourceType: string | undefined;
|
|
876
|
-
OrganizationalUnits?: ResourceDataSyncOrganizationalUnit[];
|
|
876
|
+
OrganizationalUnits?: ResourceDataSyncOrganizationalUnit[] | undefined;
|
|
877
877
|
}
|
|
878
878
|
export interface ResourceDataSyncSource {
|
|
879
879
|
SourceType: string | undefined;
|
|
880
|
-
AwsOrganizationsSource?: ResourceDataSyncAwsOrganizationsSource;
|
|
880
|
+
AwsOrganizationsSource?: ResourceDataSyncAwsOrganizationsSource | undefined;
|
|
881
881
|
SourceRegions: string[] | undefined;
|
|
882
|
-
IncludeFutureRegions?: boolean;
|
|
883
|
-
EnableAllOpsDataSources?: boolean;
|
|
882
|
+
IncludeFutureRegions?: boolean | undefined;
|
|
883
|
+
EnableAllOpsDataSources?: boolean | undefined;
|
|
884
884
|
}
|
|
885
885
|
export interface CreateResourceDataSyncRequest {
|
|
886
886
|
SyncName: string | undefined;
|
|
887
|
-
S3Destination?: ResourceDataSyncS3Destination;
|
|
888
|
-
SyncType?: string;
|
|
889
|
-
SyncSource?: ResourceDataSyncSource;
|
|
887
|
+
S3Destination?: ResourceDataSyncS3Destination | undefined;
|
|
888
|
+
SyncType?: string | undefined;
|
|
889
|
+
SyncSource?: ResourceDataSyncSource | undefined;
|
|
890
890
|
}
|
|
891
891
|
export interface CreateResourceDataSyncResult {}
|
|
892
892
|
export declare class ResourceDataSyncAlreadyExistsException extends __BaseException {
|
|
893
893
|
readonly name: "ResourceDataSyncAlreadyExistsException";
|
|
894
894
|
readonly $fault: "client";
|
|
895
|
-
SyncName?: string;
|
|
895
|
+
SyncName?: string | undefined;
|
|
896
896
|
constructor(
|
|
897
897
|
opts: __ExceptionOptionType<
|
|
898
898
|
ResourceDataSyncAlreadyExistsException,
|
|
@@ -903,7 +903,7 @@ export declare class ResourceDataSyncAlreadyExistsException extends __BaseExcept
|
|
|
903
903
|
export declare class ResourceDataSyncCountExceededException extends __BaseException {
|
|
904
904
|
readonly name: "ResourceDataSyncCountExceededException";
|
|
905
905
|
readonly $fault: "client";
|
|
906
|
-
Message?: string;
|
|
906
|
+
Message?: string | undefined;
|
|
907
907
|
constructor(
|
|
908
908
|
opts: __ExceptionOptionType<
|
|
909
909
|
ResourceDataSyncCountExceededException,
|
|
@@ -914,7 +914,7 @@ export declare class ResourceDataSyncCountExceededException extends __BaseExcept
|
|
|
914
914
|
export declare class ResourceDataSyncInvalidConfigurationException extends __BaseException {
|
|
915
915
|
readonly name: "ResourceDataSyncInvalidConfigurationException";
|
|
916
916
|
readonly $fault: "client";
|
|
917
|
-
Message?: string;
|
|
917
|
+
Message?: string | undefined;
|
|
918
918
|
constructor(
|
|
919
919
|
opts: __ExceptionOptionType<
|
|
920
920
|
ResourceDataSyncInvalidConfigurationException,
|
|
@@ -929,13 +929,13 @@ export interface DeleteActivationResult {}
|
|
|
929
929
|
export declare class InvalidActivation extends __BaseException {
|
|
930
930
|
readonly name: "InvalidActivation";
|
|
931
931
|
readonly $fault: "client";
|
|
932
|
-
Message?: string;
|
|
932
|
+
Message?: string | undefined;
|
|
933
933
|
constructor(opts: __ExceptionOptionType<InvalidActivation, __BaseException>);
|
|
934
934
|
}
|
|
935
935
|
export declare class InvalidActivationId extends __BaseException {
|
|
936
936
|
readonly name: "InvalidActivationId";
|
|
937
937
|
readonly $fault: "client";
|
|
938
|
-
Message?: string;
|
|
938
|
+
Message?: string | undefined;
|
|
939
939
|
constructor(
|
|
940
940
|
opts: __ExceptionOptionType<InvalidActivationId, __BaseException>
|
|
941
941
|
);
|
|
@@ -943,15 +943,15 @@ export declare class InvalidActivationId extends __BaseException {
|
|
|
943
943
|
export declare class AssociationDoesNotExist extends __BaseException {
|
|
944
944
|
readonly name: "AssociationDoesNotExist";
|
|
945
945
|
readonly $fault: "client";
|
|
946
|
-
Message?: string;
|
|
946
|
+
Message?: string | undefined;
|
|
947
947
|
constructor(
|
|
948
948
|
opts: __ExceptionOptionType<AssociationDoesNotExist, __BaseException>
|
|
949
949
|
);
|
|
950
950
|
}
|
|
951
951
|
export interface DeleteAssociationRequest {
|
|
952
|
-
Name?: string;
|
|
953
|
-
InstanceId?: string;
|
|
954
|
-
AssociationId?: string;
|
|
952
|
+
Name?: string | undefined;
|
|
953
|
+
InstanceId?: string | undefined;
|
|
954
|
+
AssociationId?: string | undefined;
|
|
955
955
|
}
|
|
956
956
|
export interface DeleteAssociationResult {}
|
|
957
957
|
export declare class AssociatedInstances extends __BaseException {
|
|
@@ -963,15 +963,15 @@ export declare class AssociatedInstances extends __BaseException {
|
|
|
963
963
|
}
|
|
964
964
|
export interface DeleteDocumentRequest {
|
|
965
965
|
Name: string | undefined;
|
|
966
|
-
DocumentVersion?: string;
|
|
967
|
-
VersionName?: string;
|
|
968
|
-
Force?: boolean;
|
|
966
|
+
DocumentVersion?: string | undefined;
|
|
967
|
+
VersionName?: string | undefined;
|
|
968
|
+
Force?: boolean | undefined;
|
|
969
969
|
}
|
|
970
970
|
export interface DeleteDocumentResult {}
|
|
971
971
|
export declare class InvalidDocumentOperation extends __BaseException {
|
|
972
972
|
readonly name: "InvalidDocumentOperation";
|
|
973
973
|
readonly $fault: "client";
|
|
974
|
-
Message?: string;
|
|
974
|
+
Message?: string | undefined;
|
|
975
975
|
constructor(
|
|
976
976
|
opts: __ExceptionOptionType<InvalidDocumentOperation, __BaseException>
|
|
977
977
|
);
|
|
@@ -984,29 +984,29 @@ export type InventorySchemaDeleteOption =
|
|
|
984
984
|
(typeof InventorySchemaDeleteOption)[keyof typeof InventorySchemaDeleteOption];
|
|
985
985
|
export interface DeleteInventoryRequest {
|
|
986
986
|
TypeName: string | undefined;
|
|
987
|
-
SchemaDeleteOption?: InventorySchemaDeleteOption;
|
|
988
|
-
DryRun?: boolean;
|
|
989
|
-
ClientToken?: string;
|
|
987
|
+
SchemaDeleteOption?: InventorySchemaDeleteOption | undefined;
|
|
988
|
+
DryRun?: boolean | undefined;
|
|
989
|
+
ClientToken?: string | undefined;
|
|
990
990
|
}
|
|
991
991
|
export interface InventoryDeletionSummaryItem {
|
|
992
|
-
Version?: string;
|
|
993
|
-
Count?: number;
|
|
994
|
-
RemainingCount?: number;
|
|
992
|
+
Version?: string | undefined;
|
|
993
|
+
Count?: number | undefined;
|
|
994
|
+
RemainingCount?: number | undefined;
|
|
995
995
|
}
|
|
996
996
|
export interface InventoryDeletionSummary {
|
|
997
|
-
TotalCount?: number;
|
|
998
|
-
RemainingCount?: number;
|
|
999
|
-
SummaryItems?: InventoryDeletionSummaryItem[];
|
|
997
|
+
TotalCount?: number | undefined;
|
|
998
|
+
RemainingCount?: number | undefined;
|
|
999
|
+
SummaryItems?: InventoryDeletionSummaryItem[] | undefined;
|
|
1000
1000
|
}
|
|
1001
1001
|
export interface DeleteInventoryResult {
|
|
1002
|
-
DeletionId?: string;
|
|
1003
|
-
TypeName?: string;
|
|
1004
|
-
DeletionSummary?: InventoryDeletionSummary;
|
|
1002
|
+
DeletionId?: string | undefined;
|
|
1003
|
+
TypeName?: string | undefined;
|
|
1004
|
+
DeletionSummary?: InventoryDeletionSummary | undefined;
|
|
1005
1005
|
}
|
|
1006
1006
|
export declare class InvalidDeleteInventoryParametersException extends __BaseException {
|
|
1007
1007
|
readonly name: "InvalidDeleteInventoryParametersException";
|
|
1008
1008
|
readonly $fault: "client";
|
|
1009
|
-
Message?: string;
|
|
1009
|
+
Message?: string | undefined;
|
|
1010
1010
|
constructor(
|
|
1011
1011
|
opts: __ExceptionOptionType<
|
|
1012
1012
|
InvalidDeleteInventoryParametersException,
|
|
@@ -1017,7 +1017,7 @@ export declare class InvalidDeleteInventoryParametersException extends __BaseExc
|
|
|
1017
1017
|
export declare class InvalidInventoryRequestException extends __BaseException {
|
|
1018
1018
|
readonly name: "InvalidInventoryRequestException";
|
|
1019
1019
|
readonly $fault: "client";
|
|
1020
|
-
Message?: string;
|
|
1020
|
+
Message?: string | undefined;
|
|
1021
1021
|
constructor(
|
|
1022
1022
|
opts: __ExceptionOptionType<
|
|
1023
1023
|
InvalidInventoryRequestException,
|
|
@@ -1028,7 +1028,7 @@ export declare class InvalidInventoryRequestException extends __BaseException {
|
|
|
1028
1028
|
export declare class InvalidOptionException extends __BaseException {
|
|
1029
1029
|
readonly name: "InvalidOptionException";
|
|
1030
1030
|
readonly $fault: "client";
|
|
1031
|
-
Message?: string;
|
|
1031
|
+
Message?: string | undefined;
|
|
1032
1032
|
constructor(
|
|
1033
1033
|
opts: __ExceptionOptionType<InvalidOptionException, __BaseException>
|
|
1034
1034
|
);
|
|
@@ -1036,7 +1036,7 @@ export declare class InvalidOptionException extends __BaseException {
|
|
|
1036
1036
|
export declare class InvalidTypeNameException extends __BaseException {
|
|
1037
1037
|
readonly name: "InvalidTypeNameException";
|
|
1038
1038
|
readonly $fault: "client";
|
|
1039
|
-
Message?: string;
|
|
1039
|
+
Message?: string | undefined;
|
|
1040
1040
|
constructor(
|
|
1041
1041
|
opts: __ExceptionOptionType<InvalidTypeNameException, __BaseException>
|
|
1042
1042
|
);
|
|
@@ -1045,7 +1045,7 @@ export interface DeleteMaintenanceWindowRequest {
|
|
|
1045
1045
|
WindowId: string | undefined;
|
|
1046
1046
|
}
|
|
1047
1047
|
export interface DeleteMaintenanceWindowResult {
|
|
1048
|
-
WindowId?: string;
|
|
1048
|
+
WindowId?: string | undefined;
|
|
1049
1049
|
}
|
|
1050
1050
|
export interface DeleteOpsItemRequest {
|
|
1051
1051
|
OpsItemId: string | undefined;
|
|
@@ -1075,34 +1075,34 @@ export interface DeleteParametersRequest {
|
|
|
1075
1075
|
Names: string[] | undefined;
|
|
1076
1076
|
}
|
|
1077
1077
|
export interface DeleteParametersResult {
|
|
1078
|
-
DeletedParameters?: string[];
|
|
1079
|
-
InvalidParameters?: string[];
|
|
1078
|
+
DeletedParameters?: string[] | undefined;
|
|
1079
|
+
InvalidParameters?: string[] | undefined;
|
|
1080
1080
|
}
|
|
1081
1081
|
export interface DeletePatchBaselineRequest {
|
|
1082
1082
|
BaselineId: string | undefined;
|
|
1083
1083
|
}
|
|
1084
1084
|
export interface DeletePatchBaselineResult {
|
|
1085
|
-
BaselineId?: string;
|
|
1085
|
+
BaselineId?: string | undefined;
|
|
1086
1086
|
}
|
|
1087
1087
|
export declare class ResourceInUseException extends __BaseException {
|
|
1088
1088
|
readonly name: "ResourceInUseException";
|
|
1089
1089
|
readonly $fault: "client";
|
|
1090
|
-
Message?: string;
|
|
1090
|
+
Message?: string | undefined;
|
|
1091
1091
|
constructor(
|
|
1092
1092
|
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
1093
1093
|
);
|
|
1094
1094
|
}
|
|
1095
1095
|
export interface DeleteResourceDataSyncRequest {
|
|
1096
1096
|
SyncName: string | undefined;
|
|
1097
|
-
SyncType?: string;
|
|
1097
|
+
SyncType?: string | undefined;
|
|
1098
1098
|
}
|
|
1099
1099
|
export interface DeleteResourceDataSyncResult {}
|
|
1100
1100
|
export declare class ResourceDataSyncNotFoundException extends __BaseException {
|
|
1101
1101
|
readonly name: "ResourceDataSyncNotFoundException";
|
|
1102
1102
|
readonly $fault: "client";
|
|
1103
|
-
SyncName?: string;
|
|
1104
|
-
SyncType?: string;
|
|
1105
|
-
Message?: string;
|
|
1103
|
+
SyncName?: string | undefined;
|
|
1104
|
+
SyncType?: string | undefined;
|
|
1105
|
+
Message?: string | undefined;
|
|
1106
1106
|
constructor(
|
|
1107
1107
|
opts: __ExceptionOptionType<
|
|
1108
1108
|
ResourceDataSyncNotFoundException,
|
|
@@ -1119,7 +1119,7 @@ export interface DeleteResourcePolicyResponse {}
|
|
|
1119
1119
|
export declare class MalformedResourcePolicyDocumentException extends __BaseException {
|
|
1120
1120
|
readonly name: "MalformedResourcePolicyDocumentException";
|
|
1121
1121
|
readonly $fault: "client";
|
|
1122
|
-
Message?: string;
|
|
1122
|
+
Message?: string | undefined;
|
|
1123
1123
|
constructor(
|
|
1124
1124
|
opts: __ExceptionOptionType<
|
|
1125
1125
|
MalformedResourcePolicyDocumentException,
|
|
@@ -1130,7 +1130,7 @@ export declare class MalformedResourcePolicyDocumentException extends __BaseExce
|
|
|
1130
1130
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
1131
1131
|
readonly name: "ResourceNotFoundException";
|
|
1132
1132
|
readonly $fault: "client";
|
|
1133
|
-
Message?: string;
|
|
1133
|
+
Message?: string | undefined;
|
|
1134
1134
|
constructor(
|
|
1135
1135
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
1136
1136
|
);
|
|
@@ -1138,7 +1138,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
1138
1138
|
export declare class ResourcePolicyConflictException extends __BaseException {
|
|
1139
1139
|
readonly name: "ResourcePolicyConflictException";
|
|
1140
1140
|
readonly $fault: "client";
|
|
1141
|
-
Message?: string;
|
|
1141
|
+
Message?: string | undefined;
|
|
1142
1142
|
constructor(
|
|
1143
1143
|
opts: __ExceptionOptionType<
|
|
1144
1144
|
ResourcePolicyConflictException,
|
|
@@ -1149,8 +1149,8 @@ export declare class ResourcePolicyConflictException extends __BaseException {
|
|
|
1149
1149
|
export declare class ResourcePolicyInvalidParameterException extends __BaseException {
|
|
1150
1150
|
readonly name: "ResourcePolicyInvalidParameterException";
|
|
1151
1151
|
readonly $fault: "client";
|
|
1152
|
-
ParameterNames?: string[];
|
|
1153
|
-
Message?: string;
|
|
1152
|
+
ParameterNames?: string[] | undefined;
|
|
1153
|
+
Message?: string | undefined;
|
|
1154
1154
|
constructor(
|
|
1155
1155
|
opts: __ExceptionOptionType<
|
|
1156
1156
|
ResourcePolicyInvalidParameterException,
|
|
@@ -1161,7 +1161,7 @@ export declare class ResourcePolicyInvalidParameterException extends __BaseExcep
|
|
|
1161
1161
|
export declare class ResourcePolicyNotFoundException extends __BaseException {
|
|
1162
1162
|
readonly name: "ResourcePolicyNotFoundException";
|
|
1163
1163
|
readonly $fault: "client";
|
|
1164
|
-
Message?: string;
|
|
1164
|
+
Message?: string | undefined;
|
|
1165
1165
|
constructor(
|
|
1166
1166
|
opts: __ExceptionOptionType<
|
|
1167
1167
|
ResourcePolicyNotFoundException,
|
|
@@ -1178,22 +1178,22 @@ export interface DeregisterPatchBaselineForPatchGroupRequest {
|
|
|
1178
1178
|
PatchGroup: string | undefined;
|
|
1179
1179
|
}
|
|
1180
1180
|
export interface DeregisterPatchBaselineForPatchGroupResult {
|
|
1181
|
-
BaselineId?: string;
|
|
1182
|
-
PatchGroup?: string;
|
|
1181
|
+
BaselineId?: string | undefined;
|
|
1182
|
+
PatchGroup?: string | undefined;
|
|
1183
1183
|
}
|
|
1184
1184
|
export interface DeregisterTargetFromMaintenanceWindowRequest {
|
|
1185
1185
|
WindowId: string | undefined;
|
|
1186
1186
|
WindowTargetId: string | undefined;
|
|
1187
|
-
Safe?: boolean;
|
|
1187
|
+
Safe?: boolean | undefined;
|
|
1188
1188
|
}
|
|
1189
1189
|
export interface DeregisterTargetFromMaintenanceWindowResult {
|
|
1190
|
-
WindowId?: string;
|
|
1191
|
-
WindowTargetId?: string;
|
|
1190
|
+
WindowId?: string | undefined;
|
|
1191
|
+
WindowTargetId?: string | undefined;
|
|
1192
1192
|
}
|
|
1193
1193
|
export declare class TargetInUseException extends __BaseException {
|
|
1194
1194
|
readonly name: "TargetInUseException";
|
|
1195
1195
|
readonly $fault: "client";
|
|
1196
|
-
Message?: string;
|
|
1196
|
+
Message?: string | undefined;
|
|
1197
1197
|
constructor(
|
|
1198
1198
|
opts: __ExceptionOptionType<TargetInUseException, __BaseException>
|
|
1199
1199
|
);
|
|
@@ -1203,8 +1203,8 @@ export interface DeregisterTaskFromMaintenanceWindowRequest {
|
|
|
1203
1203
|
WindowTaskId: string | undefined;
|
|
1204
1204
|
}
|
|
1205
1205
|
export interface DeregisterTaskFromMaintenanceWindowResult {
|
|
1206
|
-
WindowId?: string;
|
|
1207
|
-
WindowTaskId?: string;
|
|
1206
|
+
WindowId?: string | undefined;
|
|
1207
|
+
WindowTaskId?: string | undefined;
|
|
1208
1208
|
}
|
|
1209
1209
|
export declare const DescribeActivationsFilterKeys: {
|
|
1210
1210
|
readonly ACTIVATION_IDS: "ActivationIds";
|
|
@@ -1214,43 +1214,43 @@ export declare const DescribeActivationsFilterKeys: {
|
|
|
1214
1214
|
export type DescribeActivationsFilterKeys =
|
|
1215
1215
|
(typeof DescribeActivationsFilterKeys)[keyof typeof DescribeActivationsFilterKeys];
|
|
1216
1216
|
export interface DescribeActivationsFilter {
|
|
1217
|
-
FilterKey?: DescribeActivationsFilterKeys;
|
|
1218
|
-
FilterValues?: string[];
|
|
1217
|
+
FilterKey?: DescribeActivationsFilterKeys | undefined;
|
|
1218
|
+
FilterValues?: string[] | undefined;
|
|
1219
1219
|
}
|
|
1220
1220
|
export interface DescribeActivationsRequest {
|
|
1221
|
-
Filters?: DescribeActivationsFilter[];
|
|
1222
|
-
MaxResults?: number;
|
|
1223
|
-
NextToken?: string;
|
|
1221
|
+
Filters?: DescribeActivationsFilter[] | undefined;
|
|
1222
|
+
MaxResults?: number | undefined;
|
|
1223
|
+
NextToken?: string | undefined;
|
|
1224
1224
|
}
|
|
1225
1225
|
export interface DescribeActivationsResult {
|
|
1226
|
-
ActivationList?: Activation[];
|
|
1227
|
-
NextToken?: string;
|
|
1226
|
+
ActivationList?: Activation[] | undefined;
|
|
1227
|
+
NextToken?: string | undefined;
|
|
1228
1228
|
}
|
|
1229
1229
|
export declare class InvalidFilter extends __BaseException {
|
|
1230
1230
|
readonly name: "InvalidFilter";
|
|
1231
1231
|
readonly $fault: "client";
|
|
1232
|
-
Message?: string;
|
|
1232
|
+
Message?: string | undefined;
|
|
1233
1233
|
constructor(opts: __ExceptionOptionType<InvalidFilter, __BaseException>);
|
|
1234
1234
|
}
|
|
1235
1235
|
export declare class InvalidNextToken extends __BaseException {
|
|
1236
1236
|
readonly name: "InvalidNextToken";
|
|
1237
1237
|
readonly $fault: "client";
|
|
1238
|
-
Message?: string;
|
|
1238
|
+
Message?: string | undefined;
|
|
1239
1239
|
constructor(opts: __ExceptionOptionType<InvalidNextToken, __BaseException>);
|
|
1240
1240
|
}
|
|
1241
1241
|
export interface DescribeAssociationRequest {
|
|
1242
|
-
Name?: string;
|
|
1243
|
-
InstanceId?: string;
|
|
1244
|
-
AssociationId?: string;
|
|
1245
|
-
AssociationVersion?: string;
|
|
1242
|
+
Name?: string | undefined;
|
|
1243
|
+
InstanceId?: string | undefined;
|
|
1244
|
+
AssociationId?: string | undefined;
|
|
1245
|
+
AssociationVersion?: string | undefined;
|
|
1246
1246
|
}
|
|
1247
1247
|
export interface DescribeAssociationResult {
|
|
1248
|
-
AssociationDescription?: AssociationDescription;
|
|
1248
|
+
AssociationDescription?: AssociationDescription | undefined;
|
|
1249
1249
|
}
|
|
1250
1250
|
export declare class InvalidAssociationVersion extends __BaseException {
|
|
1251
1251
|
readonly name: "InvalidAssociationVersion";
|
|
1252
1252
|
readonly $fault: "client";
|
|
1253
|
-
Message?: string;
|
|
1253
|
+
Message?: string | undefined;
|
|
1254
1254
|
constructor(
|
|
1255
1255
|
opts: __ExceptionOptionType<InvalidAssociationVersion, __BaseException>
|
|
1256
1256
|
);
|
|
@@ -1276,30 +1276,30 @@ export interface AssociationExecutionFilter {
|
|
|
1276
1276
|
}
|
|
1277
1277
|
export interface DescribeAssociationExecutionsRequest {
|
|
1278
1278
|
AssociationId: string | undefined;
|
|
1279
|
-
Filters?: AssociationExecutionFilter[];
|
|
1280
|
-
MaxResults?: number;
|
|
1281
|
-
NextToken?: string;
|
|
1279
|
+
Filters?: AssociationExecutionFilter[] | undefined;
|
|
1280
|
+
MaxResults?: number | undefined;
|
|
1281
|
+
NextToken?: string | undefined;
|
|
1282
1282
|
}
|
|
1283
1283
|
export interface AssociationExecution {
|
|
1284
|
-
AssociationId?: string;
|
|
1285
|
-
AssociationVersion?: string;
|
|
1286
|
-
ExecutionId?: string;
|
|
1287
|
-
Status?: string;
|
|
1288
|
-
DetailedStatus?: string;
|
|
1289
|
-
CreatedTime?: Date;
|
|
1290
|
-
LastExecutionDate?: Date;
|
|
1291
|
-
ResourceCountByStatus?: string;
|
|
1292
|
-
AlarmConfiguration?: AlarmConfiguration;
|
|
1293
|
-
TriggeredAlarms?: AlarmStateInformation[];
|
|
1284
|
+
AssociationId?: string | undefined;
|
|
1285
|
+
AssociationVersion?: string | undefined;
|
|
1286
|
+
ExecutionId?: string | undefined;
|
|
1287
|
+
Status?: string | undefined;
|
|
1288
|
+
DetailedStatus?: string | undefined;
|
|
1289
|
+
CreatedTime?: Date | undefined;
|
|
1290
|
+
LastExecutionDate?: Date | undefined;
|
|
1291
|
+
ResourceCountByStatus?: string | undefined;
|
|
1292
|
+
AlarmConfiguration?: AlarmConfiguration | undefined;
|
|
1293
|
+
TriggeredAlarms?: AlarmStateInformation[] | undefined;
|
|
1294
1294
|
}
|
|
1295
1295
|
export interface DescribeAssociationExecutionsResult {
|
|
1296
|
-
AssociationExecutions?: AssociationExecution[];
|
|
1297
|
-
NextToken?: string;
|
|
1296
|
+
AssociationExecutions?: AssociationExecution[] | undefined;
|
|
1297
|
+
NextToken?: string | undefined;
|
|
1298
1298
|
}
|
|
1299
1299
|
export declare class AssociationExecutionDoesNotExist extends __BaseException {
|
|
1300
1300
|
readonly name: "AssociationExecutionDoesNotExist";
|
|
1301
1301
|
readonly $fault: "client";
|
|
1302
|
-
Message?: string;
|
|
1302
|
+
Message?: string | undefined;
|
|
1303
1303
|
constructor(
|
|
1304
1304
|
opts: __ExceptionOptionType<
|
|
1305
1305
|
AssociationExecutionDoesNotExist,
|
|
@@ -1321,28 +1321,28 @@ export interface AssociationExecutionTargetsFilter {
|
|
|
1321
1321
|
export interface DescribeAssociationExecutionTargetsRequest {
|
|
1322
1322
|
AssociationId: string | undefined;
|
|
1323
1323
|
ExecutionId: string | undefined;
|
|
1324
|
-
Filters?: AssociationExecutionTargetsFilter[];
|
|
1325
|
-
MaxResults?: number;
|
|
1326
|
-
NextToken?: string;
|
|
1324
|
+
Filters?: AssociationExecutionTargetsFilter[] | undefined;
|
|
1325
|
+
MaxResults?: number | undefined;
|
|
1326
|
+
NextToken?: string | undefined;
|
|
1327
1327
|
}
|
|
1328
1328
|
export interface OutputSource {
|
|
1329
|
-
OutputSourceId?: string;
|
|
1330
|
-
OutputSourceType?: string;
|
|
1329
|
+
OutputSourceId?: string | undefined;
|
|
1330
|
+
OutputSourceType?: string | undefined;
|
|
1331
1331
|
}
|
|
1332
1332
|
export interface AssociationExecutionTarget {
|
|
1333
|
-
AssociationId?: string;
|
|
1334
|
-
AssociationVersion?: string;
|
|
1335
|
-
ExecutionId?: string;
|
|
1336
|
-
ResourceId?: string;
|
|
1337
|
-
ResourceType?: string;
|
|
1338
|
-
Status?: string;
|
|
1339
|
-
DetailedStatus?: string;
|
|
1340
|
-
LastExecutionDate?: Date;
|
|
1341
|
-
OutputSource?: OutputSource;
|
|
1333
|
+
AssociationId?: string | undefined;
|
|
1334
|
+
AssociationVersion?: string | undefined;
|
|
1335
|
+
ExecutionId?: string | undefined;
|
|
1336
|
+
ResourceId?: string | undefined;
|
|
1337
|
+
ResourceType?: string | undefined;
|
|
1338
|
+
Status?: string | undefined;
|
|
1339
|
+
DetailedStatus?: string | undefined;
|
|
1340
|
+
LastExecutionDate?: Date | undefined;
|
|
1341
|
+
OutputSource?: OutputSource | undefined;
|
|
1342
1342
|
}
|
|
1343
1343
|
export interface DescribeAssociationExecutionTargetsResult {
|
|
1344
|
-
AssociationExecutionTargets?: AssociationExecutionTarget[];
|
|
1345
|
-
NextToken?: string;
|
|
1344
|
+
AssociationExecutionTargets?: AssociationExecutionTarget[] | undefined;
|
|
1345
|
+
NextToken?: string | undefined;
|
|
1346
1346
|
}
|
|
1347
1347
|
export declare const AutomationExecutionFilterKey: {
|
|
1348
1348
|
readonly AUTOMATION_SUBTYPE: "AutomationSubtype";
|
|
@@ -1365,9 +1365,9 @@ export interface AutomationExecutionFilter {
|
|
|
1365
1365
|
Values: string[] | undefined;
|
|
1366
1366
|
}
|
|
1367
1367
|
export interface DescribeAutomationExecutionsRequest {
|
|
1368
|
-
Filters?: AutomationExecutionFilter[];
|
|
1369
|
-
MaxResults?: number;
|
|
1370
|
-
NextToken?: string;
|
|
1368
|
+
Filters?: AutomationExecutionFilter[] | undefined;
|
|
1369
|
+
MaxResults?: number | undefined;
|
|
1370
|
+
NextToken?: string | undefined;
|
|
1371
1371
|
}
|
|
1372
1372
|
export declare const AutomationExecutionStatus: {
|
|
1373
1373
|
readonly APPROVED: "Approved";
|
|
@@ -1409,56 +1409,56 @@ export declare const ExecutionMode: {
|
|
|
1409
1409
|
};
|
|
1410
1410
|
export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
|
|
1411
1411
|
export interface ResolvedTargets {
|
|
1412
|
-
ParameterValues?: string[];
|
|
1413
|
-
Truncated?: boolean;
|
|
1412
|
+
ParameterValues?: string[] | undefined;
|
|
1413
|
+
Truncated?: boolean | undefined;
|
|
1414
1414
|
}
|
|
1415
1415
|
export interface Runbook {
|
|
1416
1416
|
DocumentName: string | undefined;
|
|
1417
|
-
DocumentVersion?: string;
|
|
1418
|
-
Parameters?: Record<string, string[]
|
|
1419
|
-
TargetParameterName?: string;
|
|
1420
|
-
Targets?: Target[];
|
|
1421
|
-
TargetMaps?: Record<string, string[]>[];
|
|
1422
|
-
MaxConcurrency?: string;
|
|
1423
|
-
MaxErrors?: string;
|
|
1424
|
-
TargetLocations?: TargetLocation[];
|
|
1417
|
+
DocumentVersion?: string | undefined;
|
|
1418
|
+
Parameters?: Record<string, string[]> | undefined;
|
|
1419
|
+
TargetParameterName?: string | undefined;
|
|
1420
|
+
Targets?: Target[] | undefined;
|
|
1421
|
+
TargetMaps?: Record<string, string[]>[] | undefined;
|
|
1422
|
+
MaxConcurrency?: string | undefined;
|
|
1423
|
+
MaxErrors?: string | undefined;
|
|
1424
|
+
TargetLocations?: TargetLocation[] | undefined;
|
|
1425
1425
|
}
|
|
1426
1426
|
export interface AutomationExecutionMetadata {
|
|
1427
|
-
AutomationExecutionId?: string;
|
|
1428
|
-
DocumentName?: string;
|
|
1429
|
-
DocumentVersion?: string;
|
|
1430
|
-
AutomationExecutionStatus?: AutomationExecutionStatus;
|
|
1431
|
-
ExecutionStartTime?: Date;
|
|
1432
|
-
ExecutionEndTime?: Date;
|
|
1433
|
-
ExecutedBy?: string;
|
|
1434
|
-
LogFile?: string;
|
|
1435
|
-
Outputs?: Record<string, string[]
|
|
1436
|
-
Mode?: ExecutionMode;
|
|
1437
|
-
ParentAutomationExecutionId?: string;
|
|
1438
|
-
CurrentStepName?: string;
|
|
1439
|
-
CurrentAction?: string;
|
|
1440
|
-
FailureMessage?: string;
|
|
1441
|
-
TargetParameterName?: string;
|
|
1442
|
-
Targets?: Target[];
|
|
1443
|
-
TargetMaps?: Record<string, string[]>[];
|
|
1444
|
-
ResolvedTargets?: ResolvedTargets;
|
|
1445
|
-
MaxConcurrency?: string;
|
|
1446
|
-
MaxErrors?: string;
|
|
1447
|
-
Target?: string;
|
|
1448
|
-
AutomationType?: AutomationType;
|
|
1449
|
-
AlarmConfiguration?: AlarmConfiguration;
|
|
1450
|
-
TriggeredAlarms?: AlarmStateInformation[];
|
|
1451
|
-
TargetLocationsURL?: string;
|
|
1452
|
-
AutomationSubtype?: AutomationSubtype;
|
|
1453
|
-
ScheduledTime?: Date;
|
|
1454
|
-
Runbooks?: Runbook[];
|
|
1455
|
-
OpsItemId?: string;
|
|
1456
|
-
AssociationId?: string;
|
|
1457
|
-
ChangeRequestName?: string;
|
|
1427
|
+
AutomationExecutionId?: string | undefined;
|
|
1428
|
+
DocumentName?: string | undefined;
|
|
1429
|
+
DocumentVersion?: string | undefined;
|
|
1430
|
+
AutomationExecutionStatus?: AutomationExecutionStatus | undefined;
|
|
1431
|
+
ExecutionStartTime?: Date | undefined;
|
|
1432
|
+
ExecutionEndTime?: Date | undefined;
|
|
1433
|
+
ExecutedBy?: string | undefined;
|
|
1434
|
+
LogFile?: string | undefined;
|
|
1435
|
+
Outputs?: Record<string, string[]> | undefined;
|
|
1436
|
+
Mode?: ExecutionMode | undefined;
|
|
1437
|
+
ParentAutomationExecutionId?: string | undefined;
|
|
1438
|
+
CurrentStepName?: string | undefined;
|
|
1439
|
+
CurrentAction?: string | undefined;
|
|
1440
|
+
FailureMessage?: string | undefined;
|
|
1441
|
+
TargetParameterName?: string | undefined;
|
|
1442
|
+
Targets?: Target[] | undefined;
|
|
1443
|
+
TargetMaps?: Record<string, string[]>[] | undefined;
|
|
1444
|
+
ResolvedTargets?: ResolvedTargets | undefined;
|
|
1445
|
+
MaxConcurrency?: string | undefined;
|
|
1446
|
+
MaxErrors?: string | undefined;
|
|
1447
|
+
Target?: string | undefined;
|
|
1448
|
+
AutomationType?: AutomationType | undefined;
|
|
1449
|
+
AlarmConfiguration?: AlarmConfiguration | undefined;
|
|
1450
|
+
TriggeredAlarms?: AlarmStateInformation[] | undefined;
|
|
1451
|
+
TargetLocationsURL?: string | undefined;
|
|
1452
|
+
AutomationSubtype?: AutomationSubtype | undefined;
|
|
1453
|
+
ScheduledTime?: Date | undefined;
|
|
1454
|
+
Runbooks?: Runbook[] | undefined;
|
|
1455
|
+
OpsItemId?: string | undefined;
|
|
1456
|
+
AssociationId?: string | undefined;
|
|
1457
|
+
ChangeRequestName?: string | undefined;
|
|
1458
1458
|
}
|
|
1459
1459
|
export interface DescribeAutomationExecutionsResult {
|
|
1460
|
-
AutomationExecutionMetadataList?: AutomationExecutionMetadata[];
|
|
1461
|
-
NextToken?: string;
|
|
1460
|
+
AutomationExecutionMetadataList?: AutomationExecutionMetadata[] | undefined;
|
|
1461
|
+
NextToken?: string | undefined;
|
|
1462
1462
|
}
|
|
1463
1463
|
export declare class InvalidFilterKey extends __BaseException {
|
|
1464
1464
|
readonly name: "InvalidFilterKey";
|
|
@@ -1468,13 +1468,13 @@ export declare class InvalidFilterKey extends __BaseException {
|
|
|
1468
1468
|
export declare class InvalidFilterValue extends __BaseException {
|
|
1469
1469
|
readonly name: "InvalidFilterValue";
|
|
1470
1470
|
readonly $fault: "client";
|
|
1471
|
-
Message?: string;
|
|
1471
|
+
Message?: string | undefined;
|
|
1472
1472
|
constructor(opts: __ExceptionOptionType<InvalidFilterValue, __BaseException>);
|
|
1473
1473
|
}
|
|
1474
1474
|
export declare class AutomationExecutionNotFoundException extends __BaseException {
|
|
1475
1475
|
readonly name: "AutomationExecutionNotFoundException";
|
|
1476
1476
|
readonly $fault: "client";
|
|
1477
|
-
Message?: string;
|
|
1477
|
+
Message?: string | undefined;
|
|
1478
1478
|
constructor(
|
|
1479
1479
|
opts: __ExceptionOptionType<
|
|
1480
1480
|
AutomationExecutionNotFoundException,
|
|
@@ -1501,98 +1501,98 @@ export interface StepExecutionFilter {
|
|
|
1501
1501
|
}
|
|
1502
1502
|
export interface DescribeAutomationStepExecutionsRequest {
|
|
1503
1503
|
AutomationExecutionId: string | undefined;
|
|
1504
|
-
Filters?: StepExecutionFilter[];
|
|
1505
|
-
NextToken?: string;
|
|
1506
|
-
MaxResults?: number;
|
|
1507
|
-
ReverseOrder?: boolean;
|
|
1504
|
+
Filters?: StepExecutionFilter[] | undefined;
|
|
1505
|
+
NextToken?: string | undefined;
|
|
1506
|
+
MaxResults?: number | undefined;
|
|
1507
|
+
ReverseOrder?: boolean | undefined;
|
|
1508
1508
|
}
|
|
1509
1509
|
export interface FailureDetails {
|
|
1510
|
-
FailureStage?: string;
|
|
1511
|
-
FailureType?: string;
|
|
1512
|
-
Details?: Record<string, string[]
|
|
1510
|
+
FailureStage?: string | undefined;
|
|
1511
|
+
FailureType?: string | undefined;
|
|
1512
|
+
Details?: Record<string, string[]> | undefined;
|
|
1513
1513
|
}
|
|
1514
1514
|
export interface ParentStepDetails {
|
|
1515
|
-
StepExecutionId?: string;
|
|
1516
|
-
StepName?: string;
|
|
1517
|
-
Action?: string;
|
|
1518
|
-
Iteration?: number;
|
|
1519
|
-
IteratorValue?: string;
|
|
1515
|
+
StepExecutionId?: string | undefined;
|
|
1516
|
+
StepName?: string | undefined;
|
|
1517
|
+
Action?: string | undefined;
|
|
1518
|
+
Iteration?: number | undefined;
|
|
1519
|
+
IteratorValue?: string | undefined;
|
|
1520
1520
|
}
|
|
1521
1521
|
export interface StepExecution {
|
|
1522
|
-
StepName?: string;
|
|
1523
|
-
Action?: string;
|
|
1524
|
-
TimeoutSeconds?: number;
|
|
1525
|
-
OnFailure?: string;
|
|
1526
|
-
MaxAttempts?: number;
|
|
1527
|
-
ExecutionStartTime?: Date;
|
|
1528
|
-
ExecutionEndTime?: Date;
|
|
1529
|
-
StepStatus?: AutomationExecutionStatus;
|
|
1530
|
-
ResponseCode?: string;
|
|
1531
|
-
Inputs?: Record<string, string
|
|
1532
|
-
Outputs?: Record<string, string[]
|
|
1533
|
-
Response?: string;
|
|
1534
|
-
FailureMessage?: string;
|
|
1535
|
-
FailureDetails?: FailureDetails;
|
|
1536
|
-
StepExecutionId?: string;
|
|
1537
|
-
OverriddenParameters?: Record<string, string[]
|
|
1538
|
-
IsEnd?: boolean;
|
|
1539
|
-
NextStep?: string;
|
|
1540
|
-
IsCritical?: boolean;
|
|
1541
|
-
ValidNextSteps?: string[];
|
|
1542
|
-
Targets?: Target[];
|
|
1543
|
-
TargetLocation?: TargetLocation;
|
|
1544
|
-
TriggeredAlarms?: AlarmStateInformation[];
|
|
1545
|
-
ParentStepDetails?: ParentStepDetails;
|
|
1522
|
+
StepName?: string | undefined;
|
|
1523
|
+
Action?: string | undefined;
|
|
1524
|
+
TimeoutSeconds?: number | undefined;
|
|
1525
|
+
OnFailure?: string | undefined;
|
|
1526
|
+
MaxAttempts?: number | undefined;
|
|
1527
|
+
ExecutionStartTime?: Date | undefined;
|
|
1528
|
+
ExecutionEndTime?: Date | undefined;
|
|
1529
|
+
StepStatus?: AutomationExecutionStatus | undefined;
|
|
1530
|
+
ResponseCode?: string | undefined;
|
|
1531
|
+
Inputs?: Record<string, string> | undefined;
|
|
1532
|
+
Outputs?: Record<string, string[]> | undefined;
|
|
1533
|
+
Response?: string | undefined;
|
|
1534
|
+
FailureMessage?: string | undefined;
|
|
1535
|
+
FailureDetails?: FailureDetails | undefined;
|
|
1536
|
+
StepExecutionId?: string | undefined;
|
|
1537
|
+
OverriddenParameters?: Record<string, string[]> | undefined;
|
|
1538
|
+
IsEnd?: boolean | undefined;
|
|
1539
|
+
NextStep?: string | undefined;
|
|
1540
|
+
IsCritical?: boolean | undefined;
|
|
1541
|
+
ValidNextSteps?: string[] | undefined;
|
|
1542
|
+
Targets?: Target[] | undefined;
|
|
1543
|
+
TargetLocation?: TargetLocation | undefined;
|
|
1544
|
+
TriggeredAlarms?: AlarmStateInformation[] | undefined;
|
|
1545
|
+
ParentStepDetails?: ParentStepDetails | undefined;
|
|
1546
1546
|
}
|
|
1547
1547
|
export interface DescribeAutomationStepExecutionsResult {
|
|
1548
|
-
StepExecutions?: StepExecution[];
|
|
1549
|
-
NextToken?: string;
|
|
1548
|
+
StepExecutions?: StepExecution[] | undefined;
|
|
1549
|
+
NextToken?: string | undefined;
|
|
1550
1550
|
}
|
|
1551
1551
|
export interface PatchOrchestratorFilter {
|
|
1552
|
-
Key?: string;
|
|
1553
|
-
Values?: string[];
|
|
1552
|
+
Key?: string | undefined;
|
|
1553
|
+
Values?: string[] | undefined;
|
|
1554
1554
|
}
|
|
1555
1555
|
export interface DescribeAvailablePatchesRequest {
|
|
1556
|
-
Filters?: PatchOrchestratorFilter[];
|
|
1557
|
-
MaxResults?: number;
|
|
1558
|
-
NextToken?: string;
|
|
1556
|
+
Filters?: PatchOrchestratorFilter[] | undefined;
|
|
1557
|
+
MaxResults?: number | undefined;
|
|
1558
|
+
NextToken?: string | undefined;
|
|
1559
1559
|
}
|
|
1560
1560
|
export interface Patch {
|
|
1561
|
-
Id?: string;
|
|
1562
|
-
ReleaseDate?: Date;
|
|
1563
|
-
Title?: string;
|
|
1564
|
-
Description?: string;
|
|
1565
|
-
ContentUrl?: string;
|
|
1566
|
-
Vendor?: string;
|
|
1567
|
-
ProductFamily?: string;
|
|
1568
|
-
Product?: string;
|
|
1569
|
-
Classification?: string;
|
|
1570
|
-
MsrcSeverity?: string;
|
|
1571
|
-
KbNumber?: string;
|
|
1572
|
-
MsrcNumber?: string;
|
|
1573
|
-
Language?: string;
|
|
1574
|
-
AdvisoryIds?: string[];
|
|
1575
|
-
BugzillaIds?: string[];
|
|
1576
|
-
CVEIds?: string[];
|
|
1577
|
-
Name?: string;
|
|
1578
|
-
Epoch?: number;
|
|
1579
|
-
Version?: string;
|
|
1580
|
-
Release?: string;
|
|
1581
|
-
Arch?: string;
|
|
1582
|
-
Severity?: string;
|
|
1583
|
-
Repository?: string;
|
|
1561
|
+
Id?: string | undefined;
|
|
1562
|
+
ReleaseDate?: Date | undefined;
|
|
1563
|
+
Title?: string | undefined;
|
|
1564
|
+
Description?: string | undefined;
|
|
1565
|
+
ContentUrl?: string | undefined;
|
|
1566
|
+
Vendor?: string | undefined;
|
|
1567
|
+
ProductFamily?: string | undefined;
|
|
1568
|
+
Product?: string | undefined;
|
|
1569
|
+
Classification?: string | undefined;
|
|
1570
|
+
MsrcSeverity?: string | undefined;
|
|
1571
|
+
KbNumber?: string | undefined;
|
|
1572
|
+
MsrcNumber?: string | undefined;
|
|
1573
|
+
Language?: string | undefined;
|
|
1574
|
+
AdvisoryIds?: string[] | undefined;
|
|
1575
|
+
BugzillaIds?: string[] | undefined;
|
|
1576
|
+
CVEIds?: string[] | undefined;
|
|
1577
|
+
Name?: string | undefined;
|
|
1578
|
+
Epoch?: number | undefined;
|
|
1579
|
+
Version?: string | undefined;
|
|
1580
|
+
Release?: string | undefined;
|
|
1581
|
+
Arch?: string | undefined;
|
|
1582
|
+
Severity?: string | undefined;
|
|
1583
|
+
Repository?: string | undefined;
|
|
1584
1584
|
}
|
|
1585
1585
|
export interface DescribeAvailablePatchesResult {
|
|
1586
|
-
Patches?: Patch[];
|
|
1587
|
-
NextToken?: string;
|
|
1586
|
+
Patches?: Patch[] | undefined;
|
|
1587
|
+
NextToken?: string | undefined;
|
|
1588
1588
|
}
|
|
1589
1589
|
export interface DescribeDocumentRequest {
|
|
1590
1590
|
Name: string | undefined;
|
|
1591
|
-
DocumentVersion?: string;
|
|
1592
|
-
VersionName?: string;
|
|
1591
|
+
DocumentVersion?: string | undefined;
|
|
1592
|
+
VersionName?: string | undefined;
|
|
1593
1593
|
}
|
|
1594
1594
|
export interface DescribeDocumentResult {
|
|
1595
|
-
Document?: DocumentDescription;
|
|
1595
|
+
Document?: DocumentDescription | undefined;
|
|
1596
1596
|
}
|
|
1597
1597
|
export declare const DocumentPermissionType: {
|
|
1598
1598
|
readonly SHARE: "Share";
|
|
@@ -1602,41 +1602,41 @@ export type DocumentPermissionType =
|
|
|
1602
1602
|
export interface DescribeDocumentPermissionRequest {
|
|
1603
1603
|
Name: string | undefined;
|
|
1604
1604
|
PermissionType: DocumentPermissionType | undefined;
|
|
1605
|
-
MaxResults?: number;
|
|
1606
|
-
NextToken?: string;
|
|
1605
|
+
MaxResults?: number | undefined;
|
|
1606
|
+
NextToken?: string | undefined;
|
|
1607
1607
|
}
|
|
1608
1608
|
export interface DescribeDocumentPermissionResponse {
|
|
1609
|
-
AccountIds?: string[];
|
|
1610
|
-
AccountSharingInfoList?: AccountSharingInfo[];
|
|
1611
|
-
NextToken?: string;
|
|
1609
|
+
AccountIds?: string[] | undefined;
|
|
1610
|
+
AccountSharingInfoList?: AccountSharingInfo[] | undefined;
|
|
1611
|
+
NextToken?: string | undefined;
|
|
1612
1612
|
}
|
|
1613
1613
|
export declare class InvalidPermissionType extends __BaseException {
|
|
1614
1614
|
readonly name: "InvalidPermissionType";
|
|
1615
1615
|
readonly $fault: "client";
|
|
1616
|
-
Message?: string;
|
|
1616
|
+
Message?: string | undefined;
|
|
1617
1617
|
constructor(
|
|
1618
1618
|
opts: __ExceptionOptionType<InvalidPermissionType, __BaseException>
|
|
1619
1619
|
);
|
|
1620
1620
|
}
|
|
1621
1621
|
export interface DescribeEffectiveInstanceAssociationsRequest {
|
|
1622
1622
|
InstanceId: string | undefined;
|
|
1623
|
-
MaxResults?: number;
|
|
1624
|
-
NextToken?: string;
|
|
1623
|
+
MaxResults?: number | undefined;
|
|
1624
|
+
NextToken?: string | undefined;
|
|
1625
1625
|
}
|
|
1626
1626
|
export interface InstanceAssociation {
|
|
1627
|
-
AssociationId?: string;
|
|
1628
|
-
InstanceId?: string;
|
|
1629
|
-
Content?: string;
|
|
1630
|
-
AssociationVersion?: string;
|
|
1627
|
+
AssociationId?: string | undefined;
|
|
1628
|
+
InstanceId?: string | undefined;
|
|
1629
|
+
Content?: string | undefined;
|
|
1630
|
+
AssociationVersion?: string | undefined;
|
|
1631
1631
|
}
|
|
1632
1632
|
export interface DescribeEffectiveInstanceAssociationsResult {
|
|
1633
|
-
Associations?: InstanceAssociation[];
|
|
1634
|
-
NextToken?: string;
|
|
1633
|
+
Associations?: InstanceAssociation[] | undefined;
|
|
1634
|
+
NextToken?: string | undefined;
|
|
1635
1635
|
}
|
|
1636
1636
|
export interface DescribeEffectivePatchesForPatchBaselineRequest {
|
|
1637
1637
|
BaselineId: string | undefined;
|
|
1638
|
-
MaxResults?: number;
|
|
1639
|
-
NextToken?: string;
|
|
1638
|
+
MaxResults?: number | undefined;
|
|
1639
|
+
NextToken?: string | undefined;
|
|
1640
1640
|
}
|
|
1641
1641
|
export declare const PatchDeploymentStatus: {
|
|
1642
1642
|
readonly Approved: "APPROVED";
|
|
@@ -1647,54 +1647,54 @@ export declare const PatchDeploymentStatus: {
|
|
|
1647
1647
|
export type PatchDeploymentStatus =
|
|
1648
1648
|
(typeof PatchDeploymentStatus)[keyof typeof PatchDeploymentStatus];
|
|
1649
1649
|
export interface PatchStatus {
|
|
1650
|
-
DeploymentStatus?: PatchDeploymentStatus;
|
|
1651
|
-
ComplianceLevel?: PatchComplianceLevel;
|
|
1652
|
-
ApprovalDate?: Date;
|
|
1650
|
+
DeploymentStatus?: PatchDeploymentStatus | undefined;
|
|
1651
|
+
ComplianceLevel?: PatchComplianceLevel | undefined;
|
|
1652
|
+
ApprovalDate?: Date | undefined;
|
|
1653
1653
|
}
|
|
1654
1654
|
export interface EffectivePatch {
|
|
1655
|
-
Patch?: Patch;
|
|
1656
|
-
PatchStatus?: PatchStatus;
|
|
1655
|
+
Patch?: Patch | undefined;
|
|
1656
|
+
PatchStatus?: PatchStatus | undefined;
|
|
1657
1657
|
}
|
|
1658
1658
|
export interface DescribeEffectivePatchesForPatchBaselineResult {
|
|
1659
|
-
EffectivePatches?: EffectivePatch[];
|
|
1660
|
-
NextToken?: string;
|
|
1659
|
+
EffectivePatches?: EffectivePatch[] | undefined;
|
|
1660
|
+
NextToken?: string | undefined;
|
|
1661
1661
|
}
|
|
1662
1662
|
export declare class UnsupportedOperatingSystem extends __BaseException {
|
|
1663
1663
|
readonly name: "UnsupportedOperatingSystem";
|
|
1664
1664
|
readonly $fault: "client";
|
|
1665
|
-
Message?: string;
|
|
1665
|
+
Message?: string | undefined;
|
|
1666
1666
|
constructor(
|
|
1667
1667
|
opts: __ExceptionOptionType<UnsupportedOperatingSystem, __BaseException>
|
|
1668
1668
|
);
|
|
1669
1669
|
}
|
|
1670
1670
|
export interface DescribeInstanceAssociationsStatusRequest {
|
|
1671
1671
|
InstanceId: string | undefined;
|
|
1672
|
-
MaxResults?: number;
|
|
1673
|
-
NextToken?: string;
|
|
1672
|
+
MaxResults?: number | undefined;
|
|
1673
|
+
NextToken?: string | undefined;
|
|
1674
1674
|
}
|
|
1675
1675
|
export interface S3OutputUrl {
|
|
1676
|
-
OutputUrl?: string;
|
|
1676
|
+
OutputUrl?: string | undefined;
|
|
1677
1677
|
}
|
|
1678
1678
|
export interface InstanceAssociationOutputUrl {
|
|
1679
|
-
S3OutputUrl?: S3OutputUrl;
|
|
1679
|
+
S3OutputUrl?: S3OutputUrl | undefined;
|
|
1680
1680
|
}
|
|
1681
1681
|
export interface InstanceAssociationStatusInfo {
|
|
1682
|
-
AssociationId?: string;
|
|
1683
|
-
Name?: string;
|
|
1684
|
-
DocumentVersion?: string;
|
|
1685
|
-
AssociationVersion?: string;
|
|
1686
|
-
InstanceId?: string;
|
|
1687
|
-
ExecutionDate?: Date;
|
|
1688
|
-
Status?: string;
|
|
1689
|
-
DetailedStatus?: string;
|
|
1690
|
-
ExecutionSummary?: string;
|
|
1691
|
-
ErrorCode?: string;
|
|
1692
|
-
OutputUrl?: InstanceAssociationOutputUrl;
|
|
1693
|
-
AssociationName?: string;
|
|
1682
|
+
AssociationId?: string | undefined;
|
|
1683
|
+
Name?: string | undefined;
|
|
1684
|
+
DocumentVersion?: string | undefined;
|
|
1685
|
+
AssociationVersion?: string | undefined;
|
|
1686
|
+
InstanceId?: string | undefined;
|
|
1687
|
+
ExecutionDate?: Date | undefined;
|
|
1688
|
+
Status?: string | undefined;
|
|
1689
|
+
DetailedStatus?: string | undefined;
|
|
1690
|
+
ExecutionSummary?: string | undefined;
|
|
1691
|
+
ErrorCode?: string | undefined;
|
|
1692
|
+
OutputUrl?: InstanceAssociationOutputUrl | undefined;
|
|
1693
|
+
AssociationName?: string | undefined;
|
|
1694
1694
|
}
|
|
1695
1695
|
export interface DescribeInstanceAssociationsStatusResult {
|
|
1696
|
-
InstanceAssociationStatusInfos?: InstanceAssociationStatusInfo[];
|
|
1697
|
-
NextToken?: string;
|
|
1696
|
+
InstanceAssociationStatusInfos?: InstanceAssociationStatusInfo[] | undefined;
|
|
1697
|
+
NextToken?: string | undefined;
|
|
1698
1698
|
}
|
|
1699
1699
|
export interface InstanceInformationStringFilter {
|
|
1700
1700
|
Key: string | undefined;
|
|
@@ -1717,14 +1717,14 @@ export interface InstanceInformationFilter {
|
|
|
1717
1717
|
valueSet: string[] | undefined;
|
|
1718
1718
|
}
|
|
1719
1719
|
export interface DescribeInstanceInformationRequest {
|
|
1720
|
-
InstanceInformationFilterList?: InstanceInformationFilter[];
|
|
1721
|
-
Filters?: InstanceInformationStringFilter[];
|
|
1722
|
-
MaxResults?: number;
|
|
1723
|
-
NextToken?: string;
|
|
1720
|
+
InstanceInformationFilterList?: InstanceInformationFilter[] | undefined;
|
|
1721
|
+
Filters?: InstanceInformationStringFilter[] | undefined;
|
|
1722
|
+
MaxResults?: number | undefined;
|
|
1723
|
+
NextToken?: string | undefined;
|
|
1724
1724
|
}
|
|
1725
1725
|
export interface InstanceAggregatedAssociationOverview {
|
|
1726
|
-
DetailedStatus?: string;
|
|
1727
|
-
InstanceAssociationStatusAggregatedCount?: Record<string, number
|
|
1726
|
+
DetailedStatus?: string | undefined;
|
|
1727
|
+
InstanceAssociationStatusAggregatedCount?: Record<string, number> | undefined;
|
|
1728
1728
|
}
|
|
1729
1729
|
export declare const PingStatus: {
|
|
1730
1730
|
readonly CONNECTION_LOST: "ConnectionLost";
|
|
@@ -1744,31 +1744,31 @@ export declare const SourceType: {
|
|
|
1744
1744
|
};
|
|
1745
1745
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
1746
1746
|
export interface InstanceInformation {
|
|
1747
|
-
InstanceId?: string;
|
|
1748
|
-
PingStatus?: PingStatus;
|
|
1749
|
-
LastPingDateTime?: Date;
|
|
1750
|
-
AgentVersion?: string;
|
|
1751
|
-
IsLatestVersion?: boolean;
|
|
1752
|
-
PlatformType?: PlatformType;
|
|
1753
|
-
PlatformName?: string;
|
|
1754
|
-
PlatformVersion?: string;
|
|
1755
|
-
ActivationId?: string;
|
|
1756
|
-
IamRole?: string;
|
|
1757
|
-
RegistrationDate?: Date;
|
|
1758
|
-
ResourceType?: ResourceType;
|
|
1759
|
-
Name?: string;
|
|
1760
|
-
IPAddress?: string;
|
|
1761
|
-
ComputerName?: string;
|
|
1762
|
-
AssociationStatus?: string;
|
|
1763
|
-
LastAssociationExecutionDate?: Date;
|
|
1764
|
-
LastSuccessfulAssociationExecutionDate?: Date;
|
|
1765
|
-
AssociationOverview?: InstanceAggregatedAssociationOverview;
|
|
1766
|
-
SourceId?: string;
|
|
1767
|
-
SourceType?: SourceType;
|
|
1747
|
+
InstanceId?: string | undefined;
|
|
1748
|
+
PingStatus?: PingStatus | undefined;
|
|
1749
|
+
LastPingDateTime?: Date | undefined;
|
|
1750
|
+
AgentVersion?: string | undefined;
|
|
1751
|
+
IsLatestVersion?: boolean | undefined;
|
|
1752
|
+
PlatformType?: PlatformType | undefined;
|
|
1753
|
+
PlatformName?: string | undefined;
|
|
1754
|
+
PlatformVersion?: string | undefined;
|
|
1755
|
+
ActivationId?: string | undefined;
|
|
1756
|
+
IamRole?: string | undefined;
|
|
1757
|
+
RegistrationDate?: Date | undefined;
|
|
1758
|
+
ResourceType?: ResourceType | undefined;
|
|
1759
|
+
Name?: string | undefined;
|
|
1760
|
+
IPAddress?: string | undefined;
|
|
1761
|
+
ComputerName?: string | undefined;
|
|
1762
|
+
AssociationStatus?: string | undefined;
|
|
1763
|
+
LastAssociationExecutionDate?: Date | undefined;
|
|
1764
|
+
LastSuccessfulAssociationExecutionDate?: Date | undefined;
|
|
1765
|
+
AssociationOverview?: InstanceAggregatedAssociationOverview | undefined;
|
|
1766
|
+
SourceId?: string | undefined;
|
|
1767
|
+
SourceType?: SourceType | undefined;
|
|
1768
1768
|
}
|
|
1769
1769
|
export interface DescribeInstanceInformationResult {
|
|
1770
|
-
InstanceInformationList?: InstanceInformation[];
|
|
1771
|
-
NextToken?: string;
|
|
1770
|
+
InstanceInformationList?: InstanceInformation[] | undefined;
|
|
1771
|
+
NextToken?: string | undefined;
|
|
1772
1772
|
}
|
|
1773
1773
|
export declare class InvalidInstanceInformationFilterValue extends __BaseException {
|
|
1774
1774
|
readonly name: "InvalidInstanceInformationFilterValue";
|
|
@@ -1782,9 +1782,9 @@ export declare class InvalidInstanceInformationFilterValue extends __BaseExcepti
|
|
|
1782
1782
|
}
|
|
1783
1783
|
export interface DescribeInstancePatchesRequest {
|
|
1784
1784
|
InstanceId: string | undefined;
|
|
1785
|
-
Filters?: PatchOrchestratorFilter[];
|
|
1786
|
-
NextToken?: string;
|
|
1787
|
-
MaxResults?: number;
|
|
1785
|
+
Filters?: PatchOrchestratorFilter[] | undefined;
|
|
1786
|
+
NextToken?: string | undefined;
|
|
1787
|
+
MaxResults?: number | undefined;
|
|
1788
1788
|
}
|
|
1789
1789
|
export declare const PatchComplianceDataState: {
|
|
1790
1790
|
readonly Failed: "FAILED";
|
|
@@ -1804,16 +1804,16 @@ export interface PatchComplianceData {
|
|
|
1804
1804
|
Severity: string | undefined;
|
|
1805
1805
|
State: PatchComplianceDataState | undefined;
|
|
1806
1806
|
InstalledTime: Date | undefined;
|
|
1807
|
-
CVEIds?: string;
|
|
1807
|
+
CVEIds?: string | undefined;
|
|
1808
1808
|
}
|
|
1809
1809
|
export interface DescribeInstancePatchesResult {
|
|
1810
|
-
Patches?: PatchComplianceData[];
|
|
1811
|
-
NextToken?: string;
|
|
1810
|
+
Patches?: PatchComplianceData[] | undefined;
|
|
1811
|
+
NextToken?: string | undefined;
|
|
1812
1812
|
}
|
|
1813
1813
|
export interface DescribeInstancePatchStatesRequest {
|
|
1814
1814
|
InstanceIds: string[] | undefined;
|
|
1815
|
-
NextToken?: string;
|
|
1816
|
-
MaxResults?: number;
|
|
1815
|
+
NextToken?: string | undefined;
|
|
1816
|
+
MaxResults?: number | undefined;
|
|
1817
1817
|
}
|
|
1818
1818
|
export declare const PatchOperationType: {
|
|
1819
1819
|
readonly INSTALL: "Install";
|
|
@@ -1830,29 +1830,29 @@ export interface InstancePatchState {
|
|
|
1830
1830
|
InstanceId: string | undefined;
|
|
1831
1831
|
PatchGroup: string | undefined;
|
|
1832
1832
|
BaselineId: string | undefined;
|
|
1833
|
-
SnapshotId?: string;
|
|
1834
|
-
InstallOverrideList?: string;
|
|
1835
|
-
OwnerInformation?: string;
|
|
1836
|
-
InstalledCount?: number;
|
|
1837
|
-
InstalledOtherCount?: number;
|
|
1838
|
-
InstalledPendingRebootCount?: number;
|
|
1839
|
-
InstalledRejectedCount?: number;
|
|
1840
|
-
MissingCount?: number;
|
|
1841
|
-
FailedCount?: number;
|
|
1842
|
-
UnreportedNotApplicableCount?: number;
|
|
1843
|
-
NotApplicableCount?: number;
|
|
1833
|
+
SnapshotId?: string | undefined;
|
|
1834
|
+
InstallOverrideList?: string | undefined;
|
|
1835
|
+
OwnerInformation?: string | undefined;
|
|
1836
|
+
InstalledCount?: number | undefined;
|
|
1837
|
+
InstalledOtherCount?: number | undefined;
|
|
1838
|
+
InstalledPendingRebootCount?: number | undefined;
|
|
1839
|
+
InstalledRejectedCount?: number | undefined;
|
|
1840
|
+
MissingCount?: number | undefined;
|
|
1841
|
+
FailedCount?: number | undefined;
|
|
1842
|
+
UnreportedNotApplicableCount?: number | undefined;
|
|
1843
|
+
NotApplicableCount?: number | undefined;
|
|
1844
1844
|
OperationStartTime: Date | undefined;
|
|
1845
1845
|
OperationEndTime: Date | undefined;
|
|
1846
1846
|
Operation: PatchOperationType | undefined;
|
|
1847
|
-
LastNoRebootInstallOperationTime?: Date;
|
|
1848
|
-
RebootOption?: RebootOption;
|
|
1849
|
-
CriticalNonCompliantCount?: number;
|
|
1850
|
-
SecurityNonCompliantCount?: number;
|
|
1851
|
-
OtherNonCompliantCount?: number;
|
|
1847
|
+
LastNoRebootInstallOperationTime?: Date | undefined;
|
|
1848
|
+
RebootOption?: RebootOption | undefined;
|
|
1849
|
+
CriticalNonCompliantCount?: number | undefined;
|
|
1850
|
+
SecurityNonCompliantCount?: number | undefined;
|
|
1851
|
+
OtherNonCompliantCount?: number | undefined;
|
|
1852
1852
|
}
|
|
1853
1853
|
export interface DescribeInstancePatchStatesResult {
|
|
1854
|
-
InstancePatchStates?: InstancePatchState[];
|
|
1855
|
-
NextToken?: string;
|
|
1854
|
+
InstancePatchStates?: InstancePatchState[] | undefined;
|
|
1855
|
+
NextToken?: string | undefined;
|
|
1856
1856
|
}
|
|
1857
1857
|
export declare const InstancePatchStateOperatorType: {
|
|
1858
1858
|
readonly EQUAL: "Equal";
|
|
@@ -1869,13 +1869,13 @@ export interface InstancePatchStateFilter {
|
|
|
1869
1869
|
}
|
|
1870
1870
|
export interface DescribeInstancePatchStatesForPatchGroupRequest {
|
|
1871
1871
|
PatchGroup: string | undefined;
|
|
1872
|
-
Filters?: InstancePatchStateFilter[];
|
|
1873
|
-
NextToken?: string;
|
|
1874
|
-
MaxResults?: number;
|
|
1872
|
+
Filters?: InstancePatchStateFilter[] | undefined;
|
|
1873
|
+
NextToken?: string | undefined;
|
|
1874
|
+
MaxResults?: number | undefined;
|
|
1875
1875
|
}
|
|
1876
1876
|
export interface DescribeInstancePatchStatesForPatchGroupResult {
|
|
1877
|
-
InstancePatchStates?: InstancePatchState[];
|
|
1878
|
-
NextToken?: string;
|
|
1877
|
+
InstancePatchStates?: InstancePatchState[] | undefined;
|
|
1878
|
+
NextToken?: string | undefined;
|
|
1879
1879
|
}
|
|
1880
1880
|
export declare const InstancePropertyFilterOperator: {
|
|
1881
1881
|
readonly BEGIN_WITH: "BeginWith";
|
|
@@ -1889,7 +1889,7 @@ export type InstancePropertyFilterOperator =
|
|
|
1889
1889
|
export interface InstancePropertyStringFilter {
|
|
1890
1890
|
Key: string | undefined;
|
|
1891
1891
|
Values: string[] | undefined;
|
|
1892
|
-
Operator?: InstancePropertyFilterOperator;
|
|
1892
|
+
Operator?: InstancePropertyFilterOperator | undefined;
|
|
1893
1893
|
}
|
|
1894
1894
|
export declare const InstancePropertyFilterKey: {
|
|
1895
1895
|
readonly ACTIVATION_IDS: "ActivationIds";
|
|
@@ -1909,42 +1909,42 @@ export interface InstancePropertyFilter {
|
|
|
1909
1909
|
valueSet: string[] | undefined;
|
|
1910
1910
|
}
|
|
1911
1911
|
export interface DescribeInstancePropertiesRequest {
|
|
1912
|
-
InstancePropertyFilterList?: InstancePropertyFilter[];
|
|
1913
|
-
FiltersWithOperator?: InstancePropertyStringFilter[];
|
|
1914
|
-
MaxResults?: number;
|
|
1915
|
-
NextToken?: string;
|
|
1912
|
+
InstancePropertyFilterList?: InstancePropertyFilter[] | undefined;
|
|
1913
|
+
FiltersWithOperator?: InstancePropertyStringFilter[] | undefined;
|
|
1914
|
+
MaxResults?: number | undefined;
|
|
1915
|
+
NextToken?: string | undefined;
|
|
1916
1916
|
}
|
|
1917
1917
|
export interface InstanceProperty {
|
|
1918
|
-
Name?: string;
|
|
1919
|
-
InstanceId?: string;
|
|
1920
|
-
InstanceType?: string;
|
|
1921
|
-
InstanceRole?: string;
|
|
1922
|
-
KeyName?: string;
|
|
1923
|
-
InstanceState?: string;
|
|
1924
|
-
Architecture?: string;
|
|
1925
|
-
IPAddress?: string;
|
|
1926
|
-
LaunchTime?: Date;
|
|
1927
|
-
PingStatus?: PingStatus;
|
|
1928
|
-
LastPingDateTime?: Date;
|
|
1929
|
-
AgentVersion?: string;
|
|
1930
|
-
PlatformType?: PlatformType;
|
|
1931
|
-
PlatformName?: string;
|
|
1932
|
-
PlatformVersion?: string;
|
|
1933
|
-
ActivationId?: string;
|
|
1934
|
-
IamRole?: string;
|
|
1935
|
-
RegistrationDate?: Date;
|
|
1936
|
-
ResourceType?: string;
|
|
1937
|
-
ComputerName?: string;
|
|
1938
|
-
AssociationStatus?: string;
|
|
1939
|
-
LastAssociationExecutionDate?: Date;
|
|
1940
|
-
LastSuccessfulAssociationExecutionDate?: Date;
|
|
1941
|
-
AssociationOverview?: InstanceAggregatedAssociationOverview;
|
|
1942
|
-
SourceId?: string;
|
|
1943
|
-
SourceType?: SourceType;
|
|
1918
|
+
Name?: string | undefined;
|
|
1919
|
+
InstanceId?: string | undefined;
|
|
1920
|
+
InstanceType?: string | undefined;
|
|
1921
|
+
InstanceRole?: string | undefined;
|
|
1922
|
+
KeyName?: string | undefined;
|
|
1923
|
+
InstanceState?: string | undefined;
|
|
1924
|
+
Architecture?: string | undefined;
|
|
1925
|
+
IPAddress?: string | undefined;
|
|
1926
|
+
LaunchTime?: Date | undefined;
|
|
1927
|
+
PingStatus?: PingStatus | undefined;
|
|
1928
|
+
LastPingDateTime?: Date | undefined;
|
|
1929
|
+
AgentVersion?: string | undefined;
|
|
1930
|
+
PlatformType?: PlatformType | undefined;
|
|
1931
|
+
PlatformName?: string | undefined;
|
|
1932
|
+
PlatformVersion?: string | undefined;
|
|
1933
|
+
ActivationId?: string | undefined;
|
|
1934
|
+
IamRole?: string | undefined;
|
|
1935
|
+
RegistrationDate?: Date | undefined;
|
|
1936
|
+
ResourceType?: string | undefined;
|
|
1937
|
+
ComputerName?: string | undefined;
|
|
1938
|
+
AssociationStatus?: string | undefined;
|
|
1939
|
+
LastAssociationExecutionDate?: Date | undefined;
|
|
1940
|
+
LastSuccessfulAssociationExecutionDate?: Date | undefined;
|
|
1941
|
+
AssociationOverview?: InstanceAggregatedAssociationOverview | undefined;
|
|
1942
|
+
SourceId?: string | undefined;
|
|
1943
|
+
SourceType?: SourceType | undefined;
|
|
1944
1944
|
}
|
|
1945
1945
|
export interface DescribeInstancePropertiesResult {
|
|
1946
|
-
InstanceProperties?: InstanceProperty[];
|
|
1947
|
-
NextToken?: string;
|
|
1946
|
+
InstanceProperties?: InstanceProperty[] | undefined;
|
|
1947
|
+
NextToken?: string | undefined;
|
|
1948
1948
|
}
|
|
1949
1949
|
export declare class InvalidInstancePropertyFilterValue extends __BaseException {
|
|
1950
1950
|
readonly name: "InvalidInstancePropertyFilterValue";
|
|
@@ -1957,9 +1957,9 @@ export declare class InvalidInstancePropertyFilterValue extends __BaseException
|
|
|
1957
1957
|
);
|
|
1958
1958
|
}
|
|
1959
1959
|
export interface DescribeInventoryDeletionsRequest {
|
|
1960
|
-
DeletionId?: string;
|
|
1961
|
-
NextToken?: string;
|
|
1962
|
-
MaxResults?: number;
|
|
1960
|
+
DeletionId?: string | undefined;
|
|
1961
|
+
NextToken?: string | undefined;
|
|
1962
|
+
MaxResults?: number | undefined;
|
|
1963
1963
|
}
|
|
1964
1964
|
export declare const InventoryDeletionStatus: {
|
|
1965
1965
|
readonly COMPLETE: "Complete";
|
|
@@ -1968,35 +1968,35 @@ export declare const InventoryDeletionStatus: {
|
|
|
1968
1968
|
export type InventoryDeletionStatus =
|
|
1969
1969
|
(typeof InventoryDeletionStatus)[keyof typeof InventoryDeletionStatus];
|
|
1970
1970
|
export interface InventoryDeletionStatusItem {
|
|
1971
|
-
DeletionId?: string;
|
|
1972
|
-
TypeName?: string;
|
|
1973
|
-
DeletionStartTime?: Date;
|
|
1974
|
-
LastStatus?: InventoryDeletionStatus;
|
|
1975
|
-
LastStatusMessage?: string;
|
|
1976
|
-
DeletionSummary?: InventoryDeletionSummary;
|
|
1977
|
-
LastStatusUpdateTime?: Date;
|
|
1971
|
+
DeletionId?: string | undefined;
|
|
1972
|
+
TypeName?: string | undefined;
|
|
1973
|
+
DeletionStartTime?: Date | undefined;
|
|
1974
|
+
LastStatus?: InventoryDeletionStatus | undefined;
|
|
1975
|
+
LastStatusMessage?: string | undefined;
|
|
1976
|
+
DeletionSummary?: InventoryDeletionSummary | undefined;
|
|
1977
|
+
LastStatusUpdateTime?: Date | undefined;
|
|
1978
1978
|
}
|
|
1979
1979
|
export interface DescribeInventoryDeletionsResult {
|
|
1980
|
-
InventoryDeletions?: InventoryDeletionStatusItem[];
|
|
1981
|
-
NextToken?: string;
|
|
1980
|
+
InventoryDeletions?: InventoryDeletionStatusItem[] | undefined;
|
|
1981
|
+
NextToken?: string | undefined;
|
|
1982
1982
|
}
|
|
1983
1983
|
export declare class InvalidDeletionIdException extends __BaseException {
|
|
1984
1984
|
readonly name: "InvalidDeletionIdException";
|
|
1985
1985
|
readonly $fault: "client";
|
|
1986
|
-
Message?: string;
|
|
1986
|
+
Message?: string | undefined;
|
|
1987
1987
|
constructor(
|
|
1988
1988
|
opts: __ExceptionOptionType<InvalidDeletionIdException, __BaseException>
|
|
1989
1989
|
);
|
|
1990
1990
|
}
|
|
1991
1991
|
export interface MaintenanceWindowFilter {
|
|
1992
|
-
Key?: string;
|
|
1993
|
-
Values?: string[];
|
|
1992
|
+
Key?: string | undefined;
|
|
1993
|
+
Values?: string[] | undefined;
|
|
1994
1994
|
}
|
|
1995
1995
|
export interface DescribeMaintenanceWindowExecutionsRequest {
|
|
1996
1996
|
WindowId: string | undefined;
|
|
1997
|
-
Filters?: MaintenanceWindowFilter[];
|
|
1998
|
-
MaxResults?: number;
|
|
1999
|
-
NextToken?: string;
|
|
1997
|
+
Filters?: MaintenanceWindowFilter[] | undefined;
|
|
1998
|
+
MaxResults?: number | undefined;
|
|
1999
|
+
NextToken?: string | undefined;
|
|
2000
2000
|
}
|
|
2001
2001
|
export declare const MaintenanceWindowExecutionStatus: {
|
|
2002
2002
|
readonly Cancelled: "CANCELLED";
|
|
@@ -2011,23 +2011,23 @@ export declare const MaintenanceWindowExecutionStatus: {
|
|
|
2011
2011
|
export type MaintenanceWindowExecutionStatus =
|
|
2012
2012
|
(typeof MaintenanceWindowExecutionStatus)[keyof typeof MaintenanceWindowExecutionStatus];
|
|
2013
2013
|
export interface MaintenanceWindowExecution {
|
|
2014
|
-
WindowId?: string;
|
|
2015
|
-
WindowExecutionId?: string;
|
|
2016
|
-
Status?: MaintenanceWindowExecutionStatus;
|
|
2017
|
-
StatusDetails?: string;
|
|
2018
|
-
StartTime?: Date;
|
|
2019
|
-
EndTime?: Date;
|
|
2014
|
+
WindowId?: string | undefined;
|
|
2015
|
+
WindowExecutionId?: string | undefined;
|
|
2016
|
+
Status?: MaintenanceWindowExecutionStatus | undefined;
|
|
2017
|
+
StatusDetails?: string | undefined;
|
|
2018
|
+
StartTime?: Date | undefined;
|
|
2019
|
+
EndTime?: Date | undefined;
|
|
2020
2020
|
}
|
|
2021
2021
|
export interface DescribeMaintenanceWindowExecutionsResult {
|
|
2022
|
-
WindowExecutions?: MaintenanceWindowExecution[];
|
|
2023
|
-
NextToken?: string;
|
|
2022
|
+
WindowExecutions?: MaintenanceWindowExecution[] | undefined;
|
|
2023
|
+
NextToken?: string | undefined;
|
|
2024
2024
|
}
|
|
2025
2025
|
export interface DescribeMaintenanceWindowExecutionTaskInvocationsRequest {
|
|
2026
2026
|
WindowExecutionId: string | undefined;
|
|
2027
2027
|
TaskId: string | undefined;
|
|
2028
|
-
Filters?: MaintenanceWindowFilter[];
|
|
2029
|
-
MaxResults?: number;
|
|
2030
|
-
NextToken?: string;
|
|
2028
|
+
Filters?: MaintenanceWindowFilter[] | undefined;
|
|
2029
|
+
MaxResults?: number | undefined;
|
|
2030
|
+
NextToken?: string | undefined;
|
|
2031
2031
|
}
|
|
2032
2032
|
export declare const MaintenanceWindowTaskType: {
|
|
2033
2033
|
readonly Automation: "AUTOMATION";
|
|
@@ -2038,67 +2038,71 @@ export declare const MaintenanceWindowTaskType: {
|
|
|
2038
2038
|
export type MaintenanceWindowTaskType =
|
|
2039
2039
|
(typeof MaintenanceWindowTaskType)[keyof typeof MaintenanceWindowTaskType];
|
|
2040
2040
|
export interface MaintenanceWindowExecutionTaskInvocationIdentity {
|
|
2041
|
-
WindowExecutionId?: string;
|
|
2042
|
-
TaskExecutionId?: string;
|
|
2043
|
-
InvocationId?: string;
|
|
2044
|
-
ExecutionId?: string;
|
|
2045
|
-
TaskType?: MaintenanceWindowTaskType;
|
|
2046
|
-
Parameters?: string;
|
|
2047
|
-
Status?: MaintenanceWindowExecutionStatus;
|
|
2048
|
-
StatusDetails?: string;
|
|
2049
|
-
StartTime?: Date;
|
|
2050
|
-
EndTime?: Date;
|
|
2051
|
-
OwnerInformation?: string;
|
|
2052
|
-
WindowTargetId?: string;
|
|
2041
|
+
WindowExecutionId?: string | undefined;
|
|
2042
|
+
TaskExecutionId?: string | undefined;
|
|
2043
|
+
InvocationId?: string | undefined;
|
|
2044
|
+
ExecutionId?: string | undefined;
|
|
2045
|
+
TaskType?: MaintenanceWindowTaskType | undefined;
|
|
2046
|
+
Parameters?: string | undefined;
|
|
2047
|
+
Status?: MaintenanceWindowExecutionStatus | undefined;
|
|
2048
|
+
StatusDetails?: string | undefined;
|
|
2049
|
+
StartTime?: Date | undefined;
|
|
2050
|
+
EndTime?: Date | undefined;
|
|
2051
|
+
OwnerInformation?: string | undefined;
|
|
2052
|
+
WindowTargetId?: string | undefined;
|
|
2053
2053
|
}
|
|
2054
2054
|
export interface DescribeMaintenanceWindowExecutionTaskInvocationsResult {
|
|
2055
|
-
WindowExecutionTaskInvocationIdentities?:
|
|
2056
|
-
|
|
2055
|
+
WindowExecutionTaskInvocationIdentities?:
|
|
2056
|
+
| MaintenanceWindowExecutionTaskInvocationIdentity[]
|
|
2057
|
+
| undefined;
|
|
2058
|
+
NextToken?: string | undefined;
|
|
2057
2059
|
}
|
|
2058
2060
|
export interface DescribeMaintenanceWindowExecutionTasksRequest {
|
|
2059
2061
|
WindowExecutionId: string | undefined;
|
|
2060
|
-
Filters?: MaintenanceWindowFilter[];
|
|
2061
|
-
MaxResults?: number;
|
|
2062
|
-
NextToken?: string;
|
|
2062
|
+
Filters?: MaintenanceWindowFilter[] | undefined;
|
|
2063
|
+
MaxResults?: number | undefined;
|
|
2064
|
+
NextToken?: string | undefined;
|
|
2063
2065
|
}
|
|
2064
2066
|
export interface MaintenanceWindowExecutionTaskIdentity {
|
|
2065
|
-
WindowExecutionId?: string;
|
|
2066
|
-
TaskExecutionId?: string;
|
|
2067
|
-
Status?: MaintenanceWindowExecutionStatus;
|
|
2068
|
-
StatusDetails?: string;
|
|
2069
|
-
StartTime?: Date;
|
|
2070
|
-
EndTime?: Date;
|
|
2071
|
-
TaskArn?: string;
|
|
2072
|
-
TaskType?: MaintenanceWindowTaskType;
|
|
2073
|
-
AlarmConfiguration?: AlarmConfiguration;
|
|
2074
|
-
TriggeredAlarms?: AlarmStateInformation[];
|
|
2067
|
+
WindowExecutionId?: string | undefined;
|
|
2068
|
+
TaskExecutionId?: string | undefined;
|
|
2069
|
+
Status?: MaintenanceWindowExecutionStatus | undefined;
|
|
2070
|
+
StatusDetails?: string | undefined;
|
|
2071
|
+
StartTime?: Date | undefined;
|
|
2072
|
+
EndTime?: Date | undefined;
|
|
2073
|
+
TaskArn?: string | undefined;
|
|
2074
|
+
TaskType?: MaintenanceWindowTaskType | undefined;
|
|
2075
|
+
AlarmConfiguration?: AlarmConfiguration | undefined;
|
|
2076
|
+
TriggeredAlarms?: AlarmStateInformation[] | undefined;
|
|
2075
2077
|
}
|
|
2076
2078
|
export interface DescribeMaintenanceWindowExecutionTasksResult {
|
|
2077
|
-
WindowExecutionTaskIdentities?:
|
|
2078
|
-
|
|
2079
|
+
WindowExecutionTaskIdentities?:
|
|
2080
|
+
| MaintenanceWindowExecutionTaskIdentity[]
|
|
2081
|
+
| undefined;
|
|
2082
|
+
NextToken?: string | undefined;
|
|
2079
2083
|
}
|
|
2080
2084
|
export interface DescribeMaintenanceWindowsRequest {
|
|
2081
|
-
Filters?: MaintenanceWindowFilter[];
|
|
2082
|
-
MaxResults?: number;
|
|
2083
|
-
NextToken?: string;
|
|
2085
|
+
Filters?: MaintenanceWindowFilter[] | undefined;
|
|
2086
|
+
MaxResults?: number | undefined;
|
|
2087
|
+
NextToken?: string | undefined;
|
|
2084
2088
|
}
|
|
2085
2089
|
export interface MaintenanceWindowIdentity {
|
|
2086
|
-
WindowId?: string;
|
|
2087
|
-
Name?: string;
|
|
2088
|
-
Description?: string;
|
|
2089
|
-
Enabled?: boolean;
|
|
2090
|
-
Duration?: number;
|
|
2091
|
-
Cutoff?: number;
|
|
2092
|
-
Schedule?: string;
|
|
2093
|
-
ScheduleTimezone?: string;
|
|
2094
|
-
ScheduleOffset?: number;
|
|
2095
|
-
EndDate?: string;
|
|
2096
|
-
StartDate?: string;
|
|
2097
|
-
NextExecutionTime?: string;
|
|
2090
|
+
WindowId?: string | undefined;
|
|
2091
|
+
Name?: string | undefined;
|
|
2092
|
+
Description?: string | undefined;
|
|
2093
|
+
Enabled?: boolean | undefined;
|
|
2094
|
+
Duration?: number | undefined;
|
|
2095
|
+
Cutoff?: number | undefined;
|
|
2096
|
+
Schedule?: string | undefined;
|
|
2097
|
+
ScheduleTimezone?: string | undefined;
|
|
2098
|
+
ScheduleOffset?: number | undefined;
|
|
2099
|
+
EndDate?: string | undefined;
|
|
2100
|
+
StartDate?: string | undefined;
|
|
2101
|
+
NextExecutionTime?: string | undefined;
|
|
2098
2102
|
}
|
|
2099
2103
|
export interface DescribeMaintenanceWindowsResult {
|
|
2100
|
-
WindowIdentities?: MaintenanceWindowIdentity[];
|
|
2101
|
-
NextToken?: string;
|
|
2104
|
+
WindowIdentities?: MaintenanceWindowIdentity[] | undefined;
|
|
2105
|
+
NextToken?: string | undefined;
|
|
2102
2106
|
}
|
|
2103
2107
|
export declare const MaintenanceWindowResourceType: {
|
|
2104
2108
|
readonly Instance: "INSTANCE";
|
|
@@ -2107,17 +2111,17 @@ export declare const MaintenanceWindowResourceType: {
|
|
|
2107
2111
|
export type MaintenanceWindowResourceType =
|
|
2108
2112
|
(typeof MaintenanceWindowResourceType)[keyof typeof MaintenanceWindowResourceType];
|
|
2109
2113
|
export interface DescribeMaintenanceWindowScheduleRequest {
|
|
2110
|
-
WindowId?: string;
|
|
2111
|
-
Targets?: Target[];
|
|
2112
|
-
ResourceType?: MaintenanceWindowResourceType;
|
|
2113
|
-
Filters?: PatchOrchestratorFilter[];
|
|
2114
|
-
MaxResults?: number;
|
|
2115
|
-
NextToken?: string;
|
|
2114
|
+
WindowId?: string | undefined;
|
|
2115
|
+
Targets?: Target[] | undefined;
|
|
2116
|
+
ResourceType?: MaintenanceWindowResourceType | undefined;
|
|
2117
|
+
Filters?: PatchOrchestratorFilter[] | undefined;
|
|
2118
|
+
MaxResults?: number | undefined;
|
|
2119
|
+
NextToken?: string | undefined;
|
|
2116
2120
|
}
|
|
2117
2121
|
export interface ScheduledWindowExecution {
|
|
2118
|
-
WindowId?: string;
|
|
2119
|
-
Name?: string;
|
|
2120
|
-
ExecutionTime?: string;
|
|
2122
|
+
WindowId?: string | undefined;
|
|
2123
|
+
Name?: string | undefined;
|
|
2124
|
+
ExecutionTime?: string | undefined;
|
|
2121
2125
|
}
|
|
2122
2126
|
export declare const CreateAssociationRequestFilterSensitiveLog: (
|
|
2123
2127
|
obj: CreateAssociationRequest
|