aws-sdk 2.1623.0 → 2.1625.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.
Files changed (36) hide show
  1. package/README.md +1 -1
  2. package/apis/bedrock-agent-2023-06-05.min.json +115 -90
  3. package/apis/bedrock-agent-runtime-2023-07-26.min.json +168 -43
  4. package/apis/cloudfront-2020-05-31.min.json +3 -0
  5. package/apis/controltower-2018-05-10.min.json +97 -4
  6. package/apis/controltower-2018-05-10.paginators.json +6 -0
  7. package/apis/glue-2017-03-31.min.json +350 -343
  8. package/apis/lightsail-2016-11-28.min.json +7 -1
  9. package/apis/mailmanager-2023-10-17.examples.json +5 -0
  10. package/apis/mailmanager-2023-10-17.min.json +1836 -0
  11. package/apis/mailmanager-2023-10-17.paginators.json +58 -0
  12. package/apis/metadata.json +3 -0
  13. package/apis/osis-2022-01-01.min.json +70 -26
  14. package/apis/pi-2018-02-27.min.json +24 -17
  15. package/apis/rds-2014-10-31.min.json +21 -9
  16. package/clients/all.d.ts +1 -0
  17. package/clients/all.js +2 -1
  18. package/clients/bedrockagent.d.ts +38 -2
  19. package/clients/bedrockagentruntime.d.ts +173 -0
  20. package/clients/controltower.d.ts +158 -22
  21. package/clients/glue.d.ts +20 -3
  22. package/clients/lightsail.d.ts +29 -25
  23. package/clients/mailmanager.d.ts +2320 -0
  24. package/clients/mailmanager.js +18 -0
  25. package/clients/osis.d.ts +80 -5
  26. package/clients/pi.d.ts +15 -8
  27. package/clients/rds.d.ts +58 -10
  28. package/clients/secretsmanager.d.ts +3 -3
  29. package/clients/storagegateway.d.ts +7 -7
  30. package/dist/aws-sdk-core-react-native.js +2 -2
  31. package/dist/aws-sdk-react-native.js +51 -14
  32. package/dist/aws-sdk.js +30 -12
  33. package/dist/aws-sdk.min.js +40 -40
  34. package/lib/config_service_placeholders.d.ts +2 -0
  35. package/lib/core.js +1 -1
  36. package/package.json +1 -1
@@ -366,6 +366,26 @@ declare namespace BedrockAgentRuntime {
366
366
  promptTemplate?: PromptTemplate;
367
367
  }
368
368
  export type GuadrailAction = "INTERVENED"|"NONE"|string;
369
+ export type GuardrailAction = "INTERVENED"|"NONE"|string;
370
+ export interface GuardrailAssessment {
371
+ /**
372
+ * Content policy details of the Guardrail.
373
+ */
374
+ contentPolicy?: GuardrailContentPolicyAssessment;
375
+ /**
376
+ * Sensitive Information policy details of Guardrail.
377
+ */
378
+ sensitiveInformationPolicy?: GuardrailSensitiveInformationPolicyAssessment;
379
+ /**
380
+ * Topic policy details of the Guardrail.
381
+ */
382
+ topicPolicy?: GuardrailTopicPolicyAssessment;
383
+ /**
384
+ * Word policy details of the Guardrail.
385
+ */
386
+ wordPolicy?: GuardrailWordPolicyAssessment;
387
+ }
388
+ export type GuardrailAssessmentList = GuardrailAssessment[];
369
389
  export interface GuardrailConfiguration {
370
390
  /**
371
391
  * The unique identifier for the guardrail.
@@ -378,6 +398,155 @@ declare namespace BedrockAgentRuntime {
378
398
  }
379
399
  export type GuardrailConfigurationGuardrailIdString = string;
380
400
  export type GuardrailConfigurationGuardrailVersionString = string;
401
+ export interface GuardrailContentFilter {
402
+ /**
403
+ * The action placed on the content by the Guardrail filter.
404
+ */
405
+ action?: GuardrailContentPolicyAction;
406
+ /**
407
+ * The confidence level regarding the content detected in the filter by the Guardrail.
408
+ */
409
+ confidence?: GuardrailContentFilterConfidence;
410
+ /**
411
+ * The type of content detected in the filter by the Guardrail.
412
+ */
413
+ type?: GuardrailContentFilterType;
414
+ }
415
+ export type GuardrailContentFilterConfidence = "NONE"|"LOW"|"MEDIUM"|"HIGH"|string;
416
+ export type GuardrailContentFilterList = GuardrailContentFilter[];
417
+ export type GuardrailContentFilterType = "INSULTS"|"HATE"|"SEXUAL"|"VIOLENCE"|"MISCONDUCT"|"PROMPT_ATTACK"|string;
418
+ export type GuardrailContentPolicyAction = "BLOCKED"|string;
419
+ export interface GuardrailContentPolicyAssessment {
420
+ /**
421
+ * The filter details of the policy assessment used in the Guardrails filter.
422
+ */
423
+ filters?: GuardrailContentFilterList;
424
+ }
425
+ export interface GuardrailCustomWord {
426
+ /**
427
+ * The action details for the custom word filter in the Guardrail.
428
+ */
429
+ action?: GuardrailWordPolicyAction;
430
+ /**
431
+ * The match details for the custom word filter in the Guardrail.
432
+ */
433
+ match?: String;
434
+ }
435
+ export type GuardrailCustomWordList = GuardrailCustomWord[];
436
+ export interface GuardrailManagedWord {
437
+ /**
438
+ * The action details for the managed word filter in the Guardrail.
439
+ */
440
+ action?: GuardrailWordPolicyAction;
441
+ /**
442
+ * The match details for the managed word filter in the Guardrail.
443
+ */
444
+ match?: String;
445
+ /**
446
+ * The type details for the managed word filter in the Guardrail.
447
+ */
448
+ type?: GuardrailManagedWordType;
449
+ }
450
+ export type GuardrailManagedWordList = GuardrailManagedWord[];
451
+ export type GuardrailManagedWordType = "PROFANITY"|string;
452
+ export interface GuardrailPiiEntityFilter {
453
+ /**
454
+ * The action of the Guardrail filter to identify and remove PII.
455
+ */
456
+ action?: GuardrailSensitiveInformationPolicyAction;
457
+ /**
458
+ * The match to settings in the Guardrail filter to identify and remove PII.
459
+ */
460
+ match?: String;
461
+ /**
462
+ * The type of PII the Guardrail filter has identified and removed.
463
+ */
464
+ type?: GuardrailPiiEntityType;
465
+ }
466
+ export type GuardrailPiiEntityFilterList = GuardrailPiiEntityFilter[];
467
+ export type GuardrailPiiEntityType = "ADDRESS"|"AGE"|"AWS_ACCESS_KEY"|"AWS_SECRET_KEY"|"CA_HEALTH_NUMBER"|"CA_SOCIAL_INSURANCE_NUMBER"|"CREDIT_DEBIT_CARD_CVV"|"CREDIT_DEBIT_CARD_EXPIRY"|"CREDIT_DEBIT_CARD_NUMBER"|"DRIVER_ID"|"EMAIL"|"INTERNATIONAL_BANK_ACCOUNT_NUMBER"|"IP_ADDRESS"|"LICENSE_PLATE"|"MAC_ADDRESS"|"NAME"|"PASSWORD"|"PHONE"|"PIN"|"SWIFT_CODE"|"UK_NATIONAL_HEALTH_SERVICE_NUMBER"|"UK_NATIONAL_INSURANCE_NUMBER"|"UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER"|"URL"|"USERNAME"|"US_BANK_ACCOUNT_NUMBER"|"US_BANK_ROUTING_NUMBER"|"US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER"|"US_PASSPORT_NUMBER"|"US_SOCIAL_SECURITY_NUMBER"|"VEHICLE_IDENTIFICATION_NUMBER"|string;
468
+ export interface GuardrailRegexFilter {
469
+ /**
470
+ * The action details for the regex filter used in the Guardrail.
471
+ */
472
+ action?: GuardrailSensitiveInformationPolicyAction;
473
+ /**
474
+ * The match details for the regex filter used in the Guardrail.
475
+ */
476
+ match?: String;
477
+ /**
478
+ * The name details for the regex filter used in the Guardrail.
479
+ */
480
+ name?: String;
481
+ /**
482
+ * The regex details for the regex filter used in the Guardrail.
483
+ */
484
+ regex?: String;
485
+ }
486
+ export type GuardrailRegexFilterList = GuardrailRegexFilter[];
487
+ export type GuardrailSensitiveInformationPolicyAction = "BLOCKED"|"ANONYMIZED"|string;
488
+ export interface GuardrailSensitiveInformationPolicyAssessment {
489
+ /**
490
+ * The details of the PII entities used in the sensitive policy assessment for the Guardrail.
491
+ */
492
+ piiEntities?: GuardrailPiiEntityFilterList;
493
+ /**
494
+ * The details of the regexes used in the sensitive policy assessment for the Guardrail.
495
+ */
496
+ regexes?: GuardrailRegexFilterList;
497
+ }
498
+ export interface GuardrailTopic {
499
+ /**
500
+ * The action details on a specific topic in the Guardrail.
501
+ */
502
+ action?: GuardrailTopicPolicyAction;
503
+ /**
504
+ * The name details on a specific topic in the Guardrail.
505
+ */
506
+ name?: String;
507
+ /**
508
+ * The type details on a specific topic in the Guardrail.
509
+ */
510
+ type?: GuardrailTopicType;
511
+ }
512
+ export type GuardrailTopicList = GuardrailTopic[];
513
+ export type GuardrailTopicPolicyAction = "BLOCKED"|string;
514
+ export interface GuardrailTopicPolicyAssessment {
515
+ /**
516
+ * The topic details of the policy assessment used in the Guardrail.
517
+ */
518
+ topics?: GuardrailTopicList;
519
+ }
520
+ export type GuardrailTopicType = "DENY"|string;
521
+ export interface GuardrailTrace {
522
+ /**
523
+ * The trace action details used with the Guardrail.
524
+ */
525
+ action?: GuardrailAction;
526
+ /**
527
+ * The details of the input assessments used in the Guardrail Trace.
528
+ */
529
+ inputAssessments?: GuardrailAssessmentList;
530
+ /**
531
+ * The details of the output assessments used in the Guardrail Trace.
532
+ */
533
+ outputAssessments?: GuardrailAssessmentList;
534
+ /**
535
+ * The details of the trace Id used in the Guardrail Trace.
536
+ */
537
+ traceId?: TraceId;
538
+ }
539
+ export type GuardrailWordPolicyAction = "BLOCKED"|string;
540
+ export interface GuardrailWordPolicyAssessment {
541
+ /**
542
+ * The custom word details for words defined in the Guardrail filter.
543
+ */
544
+ customWords?: GuardrailCustomWordList;
545
+ /**
546
+ * The managed word lists for words defined in the Guardrail filter.
547
+ */
548
+ managedWordLists?: GuardrailManagedWordList;
549
+ }
381
550
  export type Identifier = string;
382
551
  export interface InferenceConfig {
383
552
  /**
@@ -1086,6 +1255,10 @@ declare namespace BedrockAgentRuntime {
1086
1255
  * Contains information about the failure of the interaction.
1087
1256
  */
1088
1257
  failureTrace?: FailureTrace;
1258
+ /**
1259
+ * The trace details for a trace defined in the Guardrail filter.
1260
+ */
1261
+ guardrailTrace?: GuardrailTrace;
1089
1262
  /**
1090
1263
  * Details about the orchestration step, in which the agent determines the order in which actions are executed and which knowledge bases are retrieved.
1091
1264
  */
@@ -28,11 +28,11 @@ declare class ControlTower extends Service {
28
28
  */
29
29
  deleteLandingZone(callback?: (err: AWSError, data: ControlTower.Types.DeleteLandingZoneOutput) => void): Request<ControlTower.Types.DeleteLandingZoneOutput, AWSError>;
30
30
  /**
31
- * Disable an EnabledBaseline resource on the specified Target. This API starts an asynchronous operation to remove all resources deployed as part of the baseline enablement. The resource will vary depending on the enabled baseline.
31
+ * Disable an EnabledBaseline resource on the specified Target. This API starts an asynchronous operation to remove all resources deployed as part of the baseline enablement. The resource will vary depending on the enabled baseline. For usage examples, see the Amazon Web Services Control Tower User Guide .
32
32
  */
33
33
  disableBaseline(params: ControlTower.Types.DisableBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.DisableBaselineOutput) => void): Request<ControlTower.Types.DisableBaselineOutput, AWSError>;
34
34
  /**
35
- * Disable an EnabledBaseline resource on the specified Target. This API starts an asynchronous operation to remove all resources deployed as part of the baseline enablement. The resource will vary depending on the enabled baseline.
35
+ * Disable an EnabledBaseline resource on the specified Target. This API starts an asynchronous operation to remove all resources deployed as part of the baseline enablement. The resource will vary depending on the enabled baseline. For usage examples, see the Amazon Web Services Control Tower User Guide .
36
36
  */
37
37
  disableBaseline(callback?: (err: AWSError, data: ControlTower.Types.DisableBaselineOutput) => void): Request<ControlTower.Types.DisableBaselineOutput, AWSError>;
38
38
  /**
@@ -44,11 +44,11 @@ declare class ControlTower extends Service {
44
44
  */
45
45
  disableControl(callback?: (err: AWSError, data: ControlTower.Types.DisableControlOutput) => void): Request<ControlTower.Types.DisableControlOutput, AWSError>;
46
46
  /**
47
- * Enable (apply) a Baseline to a Target. This API starts an asynchronous operation to deploy resources specified by the Baseline to the specified Target.
47
+ * Enable (apply) a Baseline to a Target. This API starts an asynchronous operation to deploy resources specified by the Baseline to the specified Target. For usage examples, see the Amazon Web Services Control Tower User Guide .
48
48
  */
49
49
  enableBaseline(params: ControlTower.Types.EnableBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.EnableBaselineOutput) => void): Request<ControlTower.Types.EnableBaselineOutput, AWSError>;
50
50
  /**
51
- * Enable (apply) a Baseline to a Target. This API starts an asynchronous operation to deploy resources specified by the Baseline to the specified Target.
51
+ * Enable (apply) a Baseline to a Target. This API starts an asynchronous operation to deploy resources specified by the Baseline to the specified Target. For usage examples, see the Amazon Web Services Control Tower User Guide .
52
52
  */
53
53
  enableBaseline(callback?: (err: AWSError, data: ControlTower.Types.EnableBaselineOutput) => void): Request<ControlTower.Types.EnableBaselineOutput, AWSError>;
54
54
  /**
@@ -60,19 +60,19 @@ declare class ControlTower extends Service {
60
60
  */
61
61
  enableControl(callback?: (err: AWSError, data: ControlTower.Types.EnableControlOutput) => void): Request<ControlTower.Types.EnableControlOutput, AWSError>;
62
62
  /**
63
- * Retrieve details about an existing Baseline resource by specifying its identifier.
63
+ * Retrieve details about an existing Baseline resource by specifying its identifier. For usage examples, see the Amazon Web Services Control Tower User Guide .
64
64
  */
65
65
  getBaseline(params: ControlTower.Types.GetBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.GetBaselineOutput) => void): Request<ControlTower.Types.GetBaselineOutput, AWSError>;
66
66
  /**
67
- * Retrieve details about an existing Baseline resource by specifying its identifier.
67
+ * Retrieve details about an existing Baseline resource by specifying its identifier. For usage examples, see the Amazon Web Services Control Tower User Guide .
68
68
  */
69
69
  getBaseline(callback?: (err: AWSError, data: ControlTower.Types.GetBaselineOutput) => void): Request<ControlTower.Types.GetBaselineOutput, AWSError>;
70
70
  /**
71
- * Returns the details of an asynchronous baseline operation, as initiated by any of these APIs: EnableBaseline, DisableBaseline, UpdateEnabledBaseline, ResetEnabledBaseline. A status message is displayed in case of operation failure.
71
+ * Returns the details of an asynchronous baseline operation, as initiated by any of these APIs: EnableBaseline, DisableBaseline, UpdateEnabledBaseline, ResetEnabledBaseline. A status message is displayed in case of operation failure. For usage examples, see the Amazon Web Services Control Tower User Guide .
72
72
  */
73
73
  getBaselineOperation(params: ControlTower.Types.GetBaselineOperationInput, callback?: (err: AWSError, data: ControlTower.Types.GetBaselineOperationOutput) => void): Request<ControlTower.Types.GetBaselineOperationOutput, AWSError>;
74
74
  /**
75
- * Returns the details of an asynchronous baseline operation, as initiated by any of these APIs: EnableBaseline, DisableBaseline, UpdateEnabledBaseline, ResetEnabledBaseline. A status message is displayed in case of operation failure.
75
+ * Returns the details of an asynchronous baseline operation, as initiated by any of these APIs: EnableBaseline, DisableBaseline, UpdateEnabledBaseline, ResetEnabledBaseline. A status message is displayed in case of operation failure. For usage examples, see the Amazon Web Services Control Tower User Guide .
76
76
  */
77
77
  getBaselineOperation(callback?: (err: AWSError, data: ControlTower.Types.GetBaselineOperationOutput) => void): Request<ControlTower.Types.GetBaselineOperationOutput, AWSError>;
78
78
  /**
@@ -108,27 +108,35 @@ declare class ControlTower extends Service {
108
108
  */
109
109
  getLandingZone(callback?: (err: AWSError, data: ControlTower.Types.GetLandingZoneOutput) => void): Request<ControlTower.Types.GetLandingZoneOutput, AWSError>;
110
110
  /**
111
- * Returns the status of the specified landing zone operation. Details for an operation are available for 60 days.
111
+ * Returns the status of the specified landing zone operation. Details for an operation are available for 90 days.
112
112
  */
113
113
  getLandingZoneOperation(params: ControlTower.Types.GetLandingZoneOperationInput, callback?: (err: AWSError, data: ControlTower.Types.GetLandingZoneOperationOutput) => void): Request<ControlTower.Types.GetLandingZoneOperationOutput, AWSError>;
114
114
  /**
115
- * Returns the status of the specified landing zone operation. Details for an operation are available for 60 days.
115
+ * Returns the status of the specified landing zone operation. Details for an operation are available for 90 days.
116
116
  */
117
117
  getLandingZoneOperation(callback?: (err: AWSError, data: ControlTower.Types.GetLandingZoneOperationOutput) => void): Request<ControlTower.Types.GetLandingZoneOperationOutput, AWSError>;
118
118
  /**
119
- * Returns a summary list of all available baselines.
119
+ * Returns a summary list of all available baselines. For usage examples, see the Amazon Web Services Control Tower User Guide .
120
120
  */
121
121
  listBaselines(params: ControlTower.Types.ListBaselinesInput, callback?: (err: AWSError, data: ControlTower.Types.ListBaselinesOutput) => void): Request<ControlTower.Types.ListBaselinesOutput, AWSError>;
122
122
  /**
123
- * Returns a summary list of all available baselines.
123
+ * Returns a summary list of all available baselines. For usage examples, see the Amazon Web Services Control Tower User Guide .
124
124
  */
125
125
  listBaselines(callback?: (err: AWSError, data: ControlTower.Types.ListBaselinesOutput) => void): Request<ControlTower.Types.ListBaselinesOutput, AWSError>;
126
126
  /**
127
- * Returns a list of summaries describing EnabledBaseline resources. You can filter the list by the corresponding Baseline or Target of the EnabledBaseline resources.
127
+ * Provides a list of operations in progress or queued.
128
+ */
129
+ listControlOperations(params: ControlTower.Types.ListControlOperationsInput, callback?: (err: AWSError, data: ControlTower.Types.ListControlOperationsOutput) => void): Request<ControlTower.Types.ListControlOperationsOutput, AWSError>;
130
+ /**
131
+ * Provides a list of operations in progress or queued.
132
+ */
133
+ listControlOperations(callback?: (err: AWSError, data: ControlTower.Types.ListControlOperationsOutput) => void): Request<ControlTower.Types.ListControlOperationsOutput, AWSError>;
134
+ /**
135
+ * Returns a list of summaries describing EnabledBaseline resources. You can filter the list by the corresponding Baseline or Target of the EnabledBaseline resources. For usage examples, see the Amazon Web Services Control Tower User Guide .
128
136
  */
129
137
  listEnabledBaselines(params: ControlTower.Types.ListEnabledBaselinesInput, callback?: (err: AWSError, data: ControlTower.Types.ListEnabledBaselinesOutput) => void): Request<ControlTower.Types.ListEnabledBaselinesOutput, AWSError>;
130
138
  /**
131
- * Returns a list of summaries describing EnabledBaseline resources. You can filter the list by the corresponding Baseline or Target of the EnabledBaseline resources.
139
+ * Returns a list of summaries describing EnabledBaseline resources. You can filter the list by the corresponding Baseline or Target of the EnabledBaseline resources. For usage examples, see the Amazon Web Services Control Tower User Guide .
132
140
  */
133
141
  listEnabledBaselines(callback?: (err: AWSError, data: ControlTower.Types.ListEnabledBaselinesOutput) => void): Request<ControlTower.Types.ListEnabledBaselinesOutput, AWSError>;
134
142
  /**
@@ -156,11 +164,11 @@ declare class ControlTower extends Service {
156
164
  */
157
165
  listTagsForResource(callback?: (err: AWSError, data: ControlTower.Types.ListTagsForResourceOutput) => void): Request<ControlTower.Types.ListTagsForResourceOutput, AWSError>;
158
166
  /**
159
- * Re-enables an EnabledBaseline resource. For example, this API can re-apply the existing Baseline after a new member account is moved to the target OU.
167
+ * Re-enables an EnabledBaseline resource. For example, this API can re-apply the existing Baseline after a new member account is moved to the target OU. For usage examples, see the Amazon Web Services Control Tower User Guide .
160
168
  */
161
169
  resetEnabledBaseline(params: ControlTower.Types.ResetEnabledBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.ResetEnabledBaselineOutput) => void): Request<ControlTower.Types.ResetEnabledBaselineOutput, AWSError>;
162
170
  /**
163
- * Re-enables an EnabledBaseline resource. For example, this API can re-apply the existing Baseline after a new member account is moved to the target OU.
171
+ * Re-enables an EnabledBaseline resource. For example, this API can re-apply the existing Baseline after a new member account is moved to the target OU. For usage examples, see the Amazon Web Services Control Tower User Guide .
164
172
  */
165
173
  resetEnabledBaseline(callback?: (err: AWSError, data: ControlTower.Types.ResetEnabledBaselineOutput) => void): Request<ControlTower.Types.ResetEnabledBaselineOutput, AWSError>;
166
174
  /**
@@ -188,11 +196,11 @@ declare class ControlTower extends Service {
188
196
  */
189
197
  untagResource(callback?: (err: AWSError, data: ControlTower.Types.UntagResourceOutput) => void): Request<ControlTower.Types.UntagResourceOutput, AWSError>;
190
198
  /**
191
- * Updates an EnabledBaseline resource's applied parameters or version.
199
+ * Updates an EnabledBaseline resource's applied parameters or version. For usage examples, see the Amazon Web Services Control Tower User Guide .
192
200
  */
193
201
  updateEnabledBaseline(params: ControlTower.Types.UpdateEnabledBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.UpdateEnabledBaselineOutput) => void): Request<ControlTower.Types.UpdateEnabledBaselineOutput, AWSError>;
194
202
  /**
195
- * Updates an EnabledBaseline resource's applied parameters or version.
203
+ * Updates an EnabledBaseline resource's applied parameters or version. For usage examples, see the Amazon Web Services Control Tower User Guide .
196
204
  */
197
205
  updateEnabledBaseline(callback?: (err: AWSError, data: ControlTower.Types.UpdateEnabledBaselineOutput) => void): Request<ControlTower.Types.UpdateEnabledBaselineOutput, AWSError>;
198
206
  /**
@@ -260,11 +268,24 @@ declare namespace ControlTower {
260
268
  export type BaselineVersion = string;
261
269
  export type Baselines = BaselineSummary[];
262
270
  export type ControlIdentifier = string;
271
+ export type ControlIdentifiers = ControlIdentifier[];
263
272
  export interface ControlOperation {
273
+ /**
274
+ * The controlIdentifier of the control for the operation.
275
+ */
276
+ controlIdentifier?: ControlIdentifier;
277
+ /**
278
+ * The controlIdentifier of the enabled control.
279
+ */
280
+ enabledControlIdentifier?: Arn;
264
281
  /**
265
282
  * The time that the operation finished.
266
283
  */
267
284
  endTime?: SyntheticTimestamp_date_time;
285
+ /**
286
+ * The identifier of the specified operation.
287
+ */
288
+ operationIdentifier?: OperationIdentifier;
268
289
  /**
269
290
  * One of ENABLE_CONTROL or DISABLE_CONTROL.
270
291
  */
@@ -281,12 +302,79 @@ declare namespace ControlTower {
281
302
  * If the operation result is FAILED, this string contains a message explaining why the operation failed.
282
303
  */
283
304
  statusMessage?: String;
305
+ /**
306
+ * The target upon which the control operation is working.
307
+ */
308
+ targetIdentifier?: TargetIdentifier;
309
+ }
310
+ export interface ControlOperationFilter {
311
+ /**
312
+ * The set of controlIdentifier returned by the filter.
313
+ */
314
+ controlIdentifiers?: ControlIdentifiers;
315
+ /**
316
+ * The set of ControlOperation objects returned by the filter.
317
+ */
318
+ controlOperationTypes?: ControlOperationTypes;
319
+ /**
320
+ * The set controlIdentifier of enabled controls selected by the filter.
321
+ */
322
+ enabledControlIdentifiers?: EnabledControlIdentifiers;
323
+ /**
324
+ * Lists the status of control operations.
325
+ */
326
+ statuses?: ControlOperationStatuses;
327
+ /**
328
+ * The set of targetIdentifier objects returned by the filter.
329
+ */
330
+ targetIdentifiers?: TargetIdentifiers;
284
331
  }
285
332
  export type ControlOperationStatus = "SUCCEEDED"|"FAILED"|"IN_PROGRESS"|string;
333
+ export type ControlOperationStatuses = ControlOperationStatus[];
334
+ export interface ControlOperationSummary {
335
+ /**
336
+ * The controlIdentifier of a control.
337
+ */
338
+ controlIdentifier?: ControlIdentifier;
339
+ /**
340
+ * The controlIdentifier of an enabled control.
341
+ */
342
+ enabledControlIdentifier?: Arn;
343
+ /**
344
+ * The time at which the control operation was completed.
345
+ */
346
+ endTime?: SyntheticTimestamp_date_time;
347
+ /**
348
+ * The unique identifier of a control operation.
349
+ */
350
+ operationIdentifier?: OperationIdentifier;
351
+ /**
352
+ * The type of operation.
353
+ */
354
+ operationType?: ControlOperationType;
355
+ /**
356
+ * The time at which a control operation began.
357
+ */
358
+ startTime?: SyntheticTimestamp_date_time;
359
+ /**
360
+ * The status of the specified control operation.
361
+ */
362
+ status?: ControlOperationStatus;
363
+ /**
364
+ * A speficic message displayed as part of the control status.
365
+ */
366
+ statusMessage?: String;
367
+ /**
368
+ * The unique identifier of the target of a control operation.
369
+ */
370
+ targetIdentifier?: TargetIdentifier;
371
+ }
286
372
  export type ControlOperationType = "ENABLE_CONTROL"|"DISABLE_CONTROL"|"UPDATE_ENABLED_CONTROL"|string;
373
+ export type ControlOperationTypes = ControlOperationType[];
374
+ export type ControlOperations = ControlOperationSummary[];
287
375
  export interface CreateLandingZoneInput {
288
376
  /**
289
- * The manifest.yaml file is a text file that describes your Amazon Web Services resources. For examples, review The manifest file.
377
+ * The manifest JSON file is a text file that describes your Amazon Web Services resources. For examples, review Launch your landing zone.
290
378
  */
291
379
  manifest: Manifest;
292
380
  /**
@@ -357,6 +445,7 @@ declare namespace ControlTower {
357
445
  */
358
446
  driftStatus?: DriftStatus;
359
447
  }
448
+ export type DriftStatuses = DriftStatus[];
360
449
  export interface EnableBaselineInput {
361
450
  /**
362
451
  * The ARN of the baseline to be enabled.
@@ -526,6 +615,21 @@ declare namespace ControlTower {
526
615
  */
527
616
  targetRegions?: TargetRegions;
528
617
  }
618
+ export interface EnabledControlFilter {
619
+ /**
620
+ * The set of controlIdentifier returned by the filter.
621
+ */
622
+ controlIdentifiers?: ControlIdentifiers;
623
+ /**
624
+ * A list of DriftStatus items.
625
+ */
626
+ driftStatuses?: DriftStatuses;
627
+ /**
628
+ * A list of EnablementStatus items.
629
+ */
630
+ statuses?: EnablementStatuses;
631
+ }
632
+ export type EnabledControlIdentifiers = Arn[];
529
633
  export interface EnabledControlParameter {
530
634
  /**
531
635
  * The key of a key/value pair.
@@ -582,6 +686,7 @@ declare namespace ControlTower {
582
686
  */
583
687
  status?: EnablementStatus;
584
688
  }
689
+ export type EnablementStatuses = EnablementStatus[];
585
690
  export interface GetBaselineInput {
586
691
  /**
587
692
  * The ARN of the Baseline resource to be retrieved.
@@ -688,7 +793,7 @@ declare namespace ControlTower {
688
793
  */
689
794
  latestAvailableVersion?: LandingZoneVersion;
690
795
  /**
691
- * The landing zone manifest.yaml text file that specifies the landing zone configurations.
796
+ * The landing zone manifest JSON text file that specifies the landing zone configurations.
692
797
  */
693
798
  manifest: Manifest;
694
799
  /**
@@ -760,6 +865,32 @@ declare namespace ControlTower {
760
865
  */
761
866
  nextToken?: String;
762
867
  }
868
+ export interface ListControlOperationsInput {
869
+ /**
870
+ * An input filter for the ListControlOperations API that lets you select the types of control operations to view.
871
+ */
872
+ filter?: ControlOperationFilter;
873
+ /**
874
+ * The maximum number of results to be shown.
875
+ */
876
+ maxResults?: ListControlOperationsMaxResults;
877
+ /**
878
+ * A pagination token.
879
+ */
880
+ nextToken?: ListControlOperationsNextToken;
881
+ }
882
+ export type ListControlOperationsMaxResults = number;
883
+ export type ListControlOperationsNextToken = string;
884
+ export interface ListControlOperationsOutput {
885
+ /**
886
+ * Returns a list of output from control operations. PLACEHOLDER
887
+ */
888
+ controlOperations: ControlOperations;
889
+ /**
890
+ * A pagination token.
891
+ */
892
+ nextToken?: ListControlOperationsNextToken;
893
+ }
763
894
  export interface ListEnabledBaselinesInput {
764
895
  /**
765
896
  * A filter applied on the ListEnabledBaseline operation. Allowed filters are baselineIdentifiers and targetIdentifiers. The filter can be applied for either, or both.
@@ -787,6 +918,10 @@ declare namespace ControlTower {
787
918
  nextToken?: ListEnabledBaselinesNextToken;
788
919
  }
789
920
  export interface ListEnabledControlsInput {
921
+ /**
922
+ * An input filter for the ListCEnabledControls API that lets you select the types of control operations to view.
923
+ */
924
+ filter?: EnabledControlFilter;
790
925
  /**
791
926
  * How many results to return per API call.
792
927
  */
@@ -798,7 +933,7 @@ declare namespace ControlTower {
798
933
  /**
799
934
  * The ARN of the organizational unit. For information on how to find the targetIdentifier, see the overview page.
800
935
  */
801
- targetIdentifier: TargetIdentifier;
936
+ targetIdentifier?: TargetIdentifier;
802
937
  }
803
938
  export interface ListEnabledControlsOutput {
804
939
  /**
@@ -898,6 +1033,7 @@ declare namespace ControlTower {
898
1033
  }
899
1034
  export type TagValue = string;
900
1035
  export type TargetIdentifier = string;
1036
+ export type TargetIdentifiers = TargetIdentifier[];
901
1037
  export type TargetRegions = Region[];
902
1038
  export type Timestamp = Date;
903
1039
  export interface UntagResourceInput {
@@ -954,7 +1090,7 @@ declare namespace ControlTower {
954
1090
  */
955
1091
  landingZoneIdentifier: String;
956
1092
  /**
957
- * The manifest.yaml file is a text file that describes your Amazon Web Services resources. For examples, review The manifest file.
1093
+ * The manifest JSON file is a text file that describes your Amazon Web Services resources. For examples, review Launch your landing zone.
958
1094
  */
959
1095
  manifest: Manifest;
960
1096
  /**
package/clients/glue.d.ts CHANGED
@@ -4344,6 +4344,10 @@ declare namespace Glue {
4344
4344
  * The details for a source control configuration for a job, allowing synchronization of job artifacts to or from a remote repository.
4345
4345
  */
4346
4346
  SourceControlDetails?: SourceControlDetails;
4347
+ /**
4348
+ * This field specifies a day of the week and hour for a maintenance window for streaming jobs. Glue periodically performs maintenance activities. During these maintenance windows, Glue will need to restart your streaming jobs. Glue will restart the job within 3 hours of the specified maintenance window. For instance, if you set up the maintenance window for Monday at 10:00AM GMT, your jobs will be restarted between 10:00AM GMT to 1:00PM GMT.
4349
+ */
4350
+ MaintenanceWindow?: MaintenanceWindow;
4347
4351
  }
4348
4352
  export interface CreateJobResponse {
4349
4353
  /**
@@ -8928,6 +8932,10 @@ declare namespace Glue {
8928
8932
  * The details for a source control configuration for a job, allowing synchronization of job artifacts to or from a remote repository.
8929
8933
  */
8930
8934
  SourceControlDetails?: SourceControlDetails;
8935
+ /**
8936
+ * This field specifies a day of the week and hour for a maintenance window for streaming jobs. Glue periodically performs maintenance activities. During these maintenance windows, Glue will need to restart your streaming jobs. Glue will restart the job within 3 hours of the specified maintenance window. For instance, if you set up the maintenance window for Monday at 10:00AM GMT, your jobs will be restarted between 10:00AM GMT to 1:00PM GMT.
8937
+ */
8938
+ MaintenanceWindow?: MaintenanceWindow;
8931
8939
  }
8932
8940
  export interface JobBookmarkEntry {
8933
8941
  /**
@@ -9055,7 +9063,7 @@ declare namespace Glue {
9055
9063
  */
9056
9064
  ExecutionTime?: ExecutionTime;
9057
9065
  /**
9058
- * The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job. Streaming jobs do not have a timeout. The default for non-streaming jobs is 2,880 minutes (48 hours).
9066
+ * The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job. The maximum value for timeout for batch jobs is 7 days or 10080 minutes. The default is 2880 minutes (48 hours) for batch jobs. Any existing Glue jobs that have a greater timeout value are defaulted to 7 days. For instance you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day. Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.
9059
9067
  */
9060
9068
  Timeout?: Timeout;
9061
9069
  /**
@@ -9087,16 +9095,20 @@ declare namespace Glue {
9087
9095
  */
9088
9096
  GlueVersion?: GlueVersionString;
9089
9097
  /**
9090
- * This field populates only for Auto Scaling job runs, and represents the total time each executor ran during the lifecycle of a job run in seconds, multiplied by a DPU factor (1 for G.1X, 2 for G.2X, or 0.25 for G.025X workers). This value may be different than the executionEngineRuntime * MaxCapacity as in the case of Auto Scaling jobs, as the number of executors running at a given time may be less than the MaxCapacity. Therefore, it is possible that the value of DPUSeconds is less than executionEngineRuntime * MaxCapacity.
9098
+ * This field can be set for either job runs with execution class FLEX or when Auto Scaling is enabled, and represents the total time each executor ran during the lifecycle of a job run in seconds, multiplied by a DPU factor (1 for G.1X, 2 for G.2X, or 0.25 for G.025X workers). This value may be different than the executionEngineRuntime * MaxCapacity as in the case of Auto Scaling jobs, as the number of executors running at a given time may be less than the MaxCapacity. Therefore, it is possible that the value of DPUSeconds is less than executionEngineRuntime * MaxCapacity.
9091
9099
  */
9092
9100
  DPUSeconds?: NullableDouble;
9093
9101
  /**
9094
9102
  * Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources. The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. Only jobs with Glue version 3.0 and above and command type glueetl will be allowed to set ExecutionClass to FLEX. The flexible execution class is available for Spark jobs.
9095
9103
  */
9096
9104
  ExecutionClass?: ExecutionClass;
9105
+ /**
9106
+ * This field specifies a day of the week and hour for a maintenance window for streaming jobs. Glue periodically performs maintenance activities. During these maintenance windows, Glue will need to restart your streaming jobs. Glue will restart the job within 3 hours of the specified maintenance window. For instance, if you set up the maintenance window for Monday at 10:00AM GMT, your jobs will be restarted between 10:00AM GMT to 1:00PM GMT.
9107
+ */
9108
+ MaintenanceWindow?: MaintenanceWindow;
9097
9109
  }
9098
9110
  export type JobRunList = JobRun[];
9099
- export type JobRunState = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT"|"ERROR"|"WAITING"|string;
9111
+ export type JobRunState = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT"|"ERROR"|"WAITING"|"EXPIRED"|string;
9100
9112
  export interface JobUpdate {
9101
9113
  /**
9102
9114
  * Description of the job being defined.
@@ -9178,6 +9190,10 @@ declare namespace Glue {
9178
9190
  * The details for a source control configuration for a job, allowing synchronization of job artifacts to or from a remote repository.
9179
9191
  */
9180
9192
  SourceControlDetails?: SourceControlDetails;
9193
+ /**
9194
+ * This field specifies a day of the week and hour for a maintenance window for streaming jobs. Glue periodically performs maintenance activities. During these maintenance windows, Glue will need to restart your streaming jobs. Glue will restart the job within 3 hours of the specified maintenance window. For instance, if you set up the maintenance window for Monday at 10:00AM GMT, your jobs will be restarted between 10:00AM GMT to 1:00PM GMT.
9195
+ */
9196
+ MaintenanceWindow?: MaintenanceWindow;
9181
9197
  }
9182
9198
  export interface Join {
9183
9199
  /**
@@ -10138,6 +10154,7 @@ declare namespace Glue {
10138
10154
  KmsKeyId?: NameString;
10139
10155
  }
10140
10156
  export type MLUserDataEncryptionModeString = "DISABLED"|"SSE-KMS"|string;
10157
+ export type MaintenanceWindow = string;
10141
10158
  export type ManyInputs = NodeId[];
10142
10159
  export type MapValue = {[key: string]: GenericString};
10143
10160
  export interface Mapping {