aws-sdk 2.1547.0 → 2.1549.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.
@@ -12,11 +12,11 @@ declare class ManagedBlockchainQuery extends Service {
12
12
  constructor(options?: ManagedBlockchainQuery.Types.ClientConfiguration)
13
13
  config: Config & ManagedBlockchainQuery.Types.ClientConfiguration;
14
14
  /**
15
- * Gets the token balance for a batch of tokens by using the BatchGetTokenBalance action for every token in the request. Only the native tokens BTC,ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
15
+ * Gets the token balance for a batch of tokens by using the BatchGetTokenBalance action for every token in the request. Only the native tokens BTC and ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
16
16
  */
17
17
  batchGetTokenBalance(params: ManagedBlockchainQuery.Types.BatchGetTokenBalanceInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.BatchGetTokenBalanceOutput) => void): Request<ManagedBlockchainQuery.Types.BatchGetTokenBalanceOutput, AWSError>;
18
18
  /**
19
- * Gets the token balance for a batch of tokens by using the BatchGetTokenBalance action for every token in the request. Only the native tokens BTC,ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
19
+ * Gets the token balance for a batch of tokens by using the BatchGetTokenBalance action for every token in the request. Only the native tokens BTC and ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
20
20
  */
21
21
  batchGetTokenBalance(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.BatchGetTokenBalanceOutput) => void): Request<ManagedBlockchainQuery.Types.BatchGetTokenBalanceOutput, AWSError>;
22
22
  /**
@@ -28,19 +28,19 @@ declare class ManagedBlockchainQuery extends Service {
28
28
  */
29
29
  getAssetContract(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.GetAssetContractOutput) => void): Request<ManagedBlockchainQuery.Types.GetAssetContractOutput, AWSError>;
30
30
  /**
31
- * Gets the balance of a specific token, including native tokens, for a given address (wallet or contract) on the blockchain. Only the native tokens BTC,ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
31
+ * Gets the balance of a specific token, including native tokens, for a given address (wallet or contract) on the blockchain. Only the native tokens BTC and ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
32
32
  */
33
33
  getTokenBalance(params: ManagedBlockchainQuery.Types.GetTokenBalanceInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.GetTokenBalanceOutput) => void): Request<ManagedBlockchainQuery.Types.GetTokenBalanceOutput, AWSError>;
34
34
  /**
35
- * Gets the balance of a specific token, including native tokens, for a given address (wallet or contract) on the blockchain. Only the native tokens BTC,ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
35
+ * Gets the balance of a specific token, including native tokens, for a given address (wallet or contract) on the blockchain. Only the native tokens BTC and ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
36
36
  */
37
37
  getTokenBalance(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.GetTokenBalanceOutput) => void): Request<ManagedBlockchainQuery.Types.GetTokenBalanceOutput, AWSError>;
38
38
  /**
39
- * Get the details of a transaction.
39
+ * Gets the details of a transaction. This action will return transaction details for all transactions that are confirmed on the blockchain, even if they have not reached finality.
40
40
  */
41
41
  getTransaction(params: ManagedBlockchainQuery.Types.GetTransactionInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.GetTransactionOutput) => void): Request<ManagedBlockchainQuery.Types.GetTransactionOutput, AWSError>;
42
42
  /**
43
- * Get the details of a transaction.
43
+ * Gets the details of a transaction. This action will return transaction details for all transactions that are confirmed on the blockchain, even if they have not reached finality.
44
44
  */
45
45
  getTransaction(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.GetTransactionOutput) => void): Request<ManagedBlockchainQuery.Types.GetTransactionOutput, AWSError>;
46
46
  /**
@@ -60,11 +60,11 @@ declare class ManagedBlockchainQuery extends Service {
60
60
  */
61
61
  listTokenBalances(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTokenBalancesOutput) => void): Request<ManagedBlockchainQuery.Types.ListTokenBalancesOutput, AWSError>;
62
62
  /**
63
- * An array of TransactionEvent objects. Each object contains details about the transaction event.
63
+ * An array of TransactionEvent objects. Each object contains details about the transaction event. This action will return transaction details for all transactions that are confirmed on the blockchain, even if they have not reached finality.
64
64
  */
65
65
  listTransactionEvents(params: ManagedBlockchainQuery.Types.ListTransactionEventsInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTransactionEventsOutput) => void): Request<ManagedBlockchainQuery.Types.ListTransactionEventsOutput, AWSError>;
66
66
  /**
67
- * An array of TransactionEvent objects. Each object contains details about the transaction event.
67
+ * An array of TransactionEvent objects. Each object contains details about the transaction event. This action will return transaction details for all transactions that are confirmed on the blockchain, even if they have not reached finality.
68
68
  */
69
69
  listTransactionEvents(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTransactionEventsOutput) => void): Request<ManagedBlockchainQuery.Types.ListTransactionEventsOutput, AWSError>;
70
70
  /**
@@ -150,7 +150,14 @@ declare namespace ManagedBlockchainQuery {
150
150
  time?: Timestamp;
151
151
  }
152
152
  export type ChainAddress = string;
153
- export type ConfirmationStatus = "FINAL"|string;
153
+ export type ConfirmationStatus = "FINAL"|"NONFINAL"|string;
154
+ export interface ConfirmationStatusFilter {
155
+ /**
156
+ * The container to determine whether to list results that have only reached finality . Transactions that have reached finality are always part of the response.
157
+ */
158
+ include: ConfirmationStatusIncludeList;
159
+ }
160
+ export type ConfirmationStatusIncludeList = ConfirmationStatus[];
154
161
  export interface ContractFilter {
155
162
  /**
156
163
  * The blockchain network of the contract.
@@ -264,7 +271,7 @@ declare namespace ManagedBlockchainQuery {
264
271
  */
265
272
  nextToken?: NextToken;
266
273
  /**
267
- * The maximum number of contracts to list.
274
+ * The maximum number of contracts to list. Default:100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
268
275
  */
269
276
  maxResults?: ListAssetContractsInputMaxResultsInteger;
270
277
  }
@@ -293,7 +300,7 @@ declare namespace ManagedBlockchainQuery {
293
300
  */
294
301
  nextToken?: NextToken;
295
302
  /**
296
- * The maximum number of token balances to return.
303
+ * The maximum number of token balances to return. Default:100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
297
304
  */
298
305
  maxResults?: ListTokenBalancesInputMaxResultsInteger;
299
306
  }
@@ -322,7 +329,7 @@ declare namespace ManagedBlockchainQuery {
322
329
  */
323
330
  nextToken?: NextToken;
324
331
  /**
325
- * The maximum number of transaction events to list. Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
332
+ * The maximum number of transaction events to list. Default:100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
326
333
  */
327
334
  maxResults?: ListTransactionEventsInputMaxResultsInteger;
328
335
  }
@@ -349,7 +356,7 @@ declare namespace ManagedBlockchainQuery {
349
356
  fromBlockchainInstant?: BlockchainInstant;
350
357
  toBlockchainInstant?: BlockchainInstant;
351
358
  /**
352
- * Sorts items in an ascending order if the first page starts at fromTime. Sorts items in a descending order if the first page starts at toTime.
359
+ * The order by which the results will be sorted. If ASCENNDING is selected, the results will be ordered by fromTime.
353
360
  */
354
361
  sort?: ListTransactionsSort;
355
362
  /**
@@ -357,9 +364,13 @@ declare namespace ManagedBlockchainQuery {
357
364
  */
358
365
  nextToken?: NextToken;
359
366
  /**
360
- * The maximum number of transactions to list. Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
367
+ * The maximum number of transactions to list. Default:100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
361
368
  */
362
369
  maxResults?: ListTransactionsInputMaxResultsInteger;
370
+ /**
371
+ * This filter is used to include transactions in the response that haven't reached finality . Transactions that have reached finiality are always part of the response.
372
+ */
373
+ confirmationStatusFilter?: ConfirmationStatusFilter;
363
374
  }
364
375
  export type ListTransactionsInputMaxResultsInteger = number;
365
376
  export interface ListTransactionsOutput {
@@ -402,7 +413,6 @@ declare namespace ManagedBlockchainQuery {
402
413
  export type QueryTokenStandard = "ERC20"|"ERC721"|"ERC1155"|string;
403
414
  export type QueryTransactionEventType = "ERC20_TRANSFER"|"ERC20_MINT"|"ERC20_BURN"|"ERC20_DEPOSIT"|"ERC20_WITHDRAWAL"|"ERC721_TRANSFER"|"ERC1155_TRANSFER"|"BITCOIN_VIN"|"BITCOIN_VOUT"|"INTERNAL_ETH_TRANSFER"|"ETH_TRANSFER"|string;
404
415
  export type QueryTransactionHash = string;
405
- export type QueryTransactionStatus = "FINAL"|"FAILED"|string;
406
416
  export type SortOrder = "ASCENDING"|"DESCENDING"|string;
407
417
  export type String = string;
408
418
  export type Timestamp = Date;
@@ -453,7 +463,7 @@ declare namespace ManagedBlockchainQuery {
453
463
  */
454
464
  contractAddress?: ChainAddress;
455
465
  /**
456
- * The unique identifier of the token. You must specify this container with btc for the native BTC token, and eth for the native ETH token. For all other token types you must specify the tokenId in the 64 character hexadecimal tokenid format.
466
+ * The unique identifier of the token. For native tokens, use the 3 character abbreviation that best matches your token. For example, btc for Bitcoin, eth for Ether, etc. For all other token types you must specify the tokenId in the 64 character hexadecimal tokenid format.
457
467
  */
458
468
  tokenId?: QueryTokenId;
459
469
  }
@@ -486,10 +496,6 @@ declare namespace ManagedBlockchainQuery {
486
496
  * The number of transactions in the block.
487
497
  */
488
498
  numberOfTransactions: Long;
489
- /**
490
- * The status of the transaction. This property is deprecated. You must use the confirmationStatus and the executionStatus properties to determine if the status of the transaction is FINAL or FAILED. Transactions with a status of FINAL will now have the confirmationStatus set to FINAL and the executionStatus set to SUCCEEDED. Transactions with a status of FAILED will now have the confirmationStatus set to FINAL and the executionStatus set to FAILED.
491
- */
492
- status?: QueryTransactionStatus;
493
499
  /**
494
500
  * The identifier of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
495
501
  */
@@ -599,6 +605,10 @@ declare namespace ManagedBlockchainQuery {
599
605
  * The time when the transaction occurred.
600
606
  */
601
607
  transactionTimestamp: Timestamp;
608
+ /**
609
+ * Specifies whether to list transactions that have not reached Finality.
610
+ */
611
+ confirmationStatus?: ConfirmationStatus;
602
612
  }
603
613
  export type TransactionOutputList = TransactionOutputItem[];
604
614
  /**
@@ -252,7 +252,7 @@ declare namespace MediaConvert {
252
252
  */
253
253
  Bitrate?: __integerMin6000Max1024000;
254
254
  /**
255
- * Specify the AAC profile. For the widest player compatibility and where higher bitrates are acceptable: Keep the default profile, LC (AAC-LC) For improved audio performance at lower bitrates: Choose HEV1 or HEV2. HEV1 (AAC-HE v1) adds spectral band replication to improve speech audio at low bitrates. HEV2 (AAC-HE v2) adds parametric stereo, which optimizes for encoding stereo audio at very low bitrates.
255
+ * AAC Profile.
256
256
  */
257
257
  CodecProfile?: AacCodecProfile;
258
258
  /**
@@ -260,7 +260,7 @@ declare namespace MediaConvert {
260
260
  */
261
261
  CodingMode?: AacCodingMode;
262
262
  /**
263
- * Specify the AAC rate control mode. For a constant bitrate: Choose CBR. Your AAC output bitrate will be equal to the value that you choose for Bitrate. For a variable bitrate: Choose VBR. Your AAC output bitrate will vary according to your audio content and the value that you choose for Bitrate quality.
263
+ * Rate Control Mode.
264
264
  */
265
265
  RateControlMode?: AacRateControlMode;
266
266
  /**
@@ -268,7 +268,7 @@ declare namespace MediaConvert {
268
268
  */
269
269
  RawFormat?: AacRawFormat;
270
270
  /**
271
- * Specify the AAC sample rate in samples per second (Hz). Valid sample rates depend on the AAC profile and Coding mode that you select. For a list of supported sample rates, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/aac-support.html
271
+ * Specify the Sample rate in Hz. Valid sample rates depend on the Profile and Coding mode that you select. The following list shows valid sample rates for each Profile and Coding mode. * LC Profile, Coding mode 1.0, 2.0, and Receiver Mix: 8000, 12000, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000. * LC Profile, Coding mode 5.1: 32000, 44100, 48000, 96000. * HEV1 Profile, Coding mode 1.0 and Receiver Mix: 22050, 24000, 32000, 44100, 48000. * HEV1 Profile, Coding mode 2.0 and 5.1: 32000, 44100, 48000, 96000. * HEV2 Profile, Coding mode 2.0: 22050, 24000, 32000, 44100, 48000.
272
272
  */
273
273
  SampleRate?: __integerMin8000Max96000;
274
274
  /**
@@ -276,7 +276,7 @@ declare namespace MediaConvert {
276
276
  */
277
277
  Specification?: AacSpecification;
278
278
  /**
279
- * Specify the quality of your variable bitrate (VBR) AAC audio. For a list of approximate VBR bitrates, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/aac-support.html#aac_vbr
279
+ * VBR Quality Level - Only used if rate_control_mode is VBR.
280
280
  */
281
281
  VbrQuality?: AacVbrQuality;
282
282
  }
@@ -498,7 +498,7 @@ declare namespace MediaConvert {
498
498
  /**
499
499
  * Specify the language for this audio output track. The service puts this language code into your output audio track when you set Language code control to Use configured. The service also uses your specified custom language code when you set Language code control to Follow input, but your input file doesn't specify a language code. For all outputs, you can use an ISO 639-2 or ISO 639-3 code. For streaming outputs, you can also use any other code in the full RFC-5646 specification. Streaming outputs are those that are in one of the following output groups: CMAF, DASH ISO, Apple HLS, or Microsoft Smooth Streaming.
500
500
  */
501
- CustomLanguageCode?: __stringPatternAZaZ23AZaZ;
501
+ CustomLanguageCode?: __stringPatternAZaZ23AZaZ09;
502
502
  /**
503
503
  * Indicates the language of the audio output track. The ISO 639 language specified in the 'Language Code' drop down will be used when 'Follow Input Language Code' is not selected or when 'Follow Input Language Code' is selected but there is no ISO 639 language code specified by the input.
504
504
  */
@@ -1361,7 +1361,6 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
1361
1361
  */
1362
1362
  OutputMasteringLuminance?: __integerMin0Max2147483647;
1363
1363
  }
1364
- export type ColorConversion3DLUTSettings = ColorConversion3DLUTSetting[];
1365
1364
  export interface ColorCorrector {
1366
1365
  /**
1367
1366
  * Brightness level.
@@ -3688,7 +3687,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
3688
3687
  /**
3689
3688
  * Use 3D LUTs to specify custom color mapping behavior when you convert from one color space into another. You can include up to 8 different 3D LUTs.
3690
3689
  */
3691
- ColorConversion3DLUTSettings?: ColorConversion3DLUTSettings;
3690
+ ColorConversion3DLUTSettings?: __listOfColorConversion3DLUTSetting;
3692
3691
  /**
3693
3692
  * Settings for Event Signaling And Messaging (ESAM). If you don't do ad insertion, you can ignore these settings.
3694
3693
  */
@@ -3802,7 +3801,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
3802
3801
  /**
3803
3802
  * Use 3D LUTs to specify custom color mapping behavior when you convert from one color space into another. You can include up to 8 different 3D LUTs.
3804
3803
  */
3805
- ColorConversion3DLUTSettings?: ColorConversion3DLUTSettings;
3804
+ ColorConversion3DLUTSettings?: __listOfColorConversion3DLUTSetting;
3806
3805
  /**
3807
3806
  * Settings for Event Signaling And Messaging (ESAM). If you don't do ad insertion, you can ignore these settings.
3808
3807
  */
@@ -5271,6 +5270,14 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
5271
5270
  Y?: __integerMin0Max2147483647;
5272
5271
  }
5273
5272
  export interface RemixSettings {
5273
+ /**
5274
+ * Optionally specify the channel in your input that contains your audio description audio signal. MediaConvert mixes your audio signal across all output channels, while reducing their volume according to your data stream. When you specify an audio description audio channel, you must also specify an audio description data channel. For more information about audio description signals, see the BBC WHP 198 and 051 white papers.
5275
+ */
5276
+ AudioDescriptionAudioChannel?: __integerMin1Max64;
5277
+ /**
5278
+ * Optionally specify the channel in your input that contains your audio description data stream. MediaConvert mixes your audio signal across all output channels, while reducing their volume according to your data stream. When you specify an audio description data channel, you must also specify an audio description audio channel. For more information about audio description signals, see the BBC WHP 198 and 051 white papers.
5279
+ */
5280
+ AudioDescriptionDataChannel?: __integerMin1Max64;
5274
5281
  /**
5275
5282
  * Channel mapping contains the group of fields that hold the remixing value for each channel, in dB. Specify remix values to indicate how much of the content from your input audio channel you want in your output audio channels. Each instance of the InputChannels or InputChannelsFineTune array specifies these values for one output channel. Use one instance of this array for each output channel. In the console, each array corresponds to a column in the graphical depiction of the mapping matrix. The rows of the graphical matrix correspond to input channels. Valid values are within the range from -60 (mute) through 6. A setting of 0 passes the input channel unchanged to the output channel (no attenuation or amplification). Use InputChannels or InputChannelsFineTune to specify your remix values. Don't use both.
5276
5283
  */
@@ -6483,6 +6490,7 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
6483
6490
  export type __listOfCaptionDescription = CaptionDescription[];
6484
6491
  export type __listOfCaptionDescriptionPreset = CaptionDescriptionPreset[];
6485
6492
  export type __listOfCmafAdditionalManifest = CmafAdditionalManifest[];
6493
+ export type __listOfColorConversion3DLUTSetting = ColorConversion3DLUTSetting[];
6486
6494
  export type __listOfDashAdditionalManifest = DashAdditionalManifest[];
6487
6495
  export type __listOfEndpoint = Endpoint[];
6488
6496
  export type __listOfForceIncludeRenditionSize = ForceIncludeRenditionSize[];
@@ -6557,6 +6565,7 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough.
6557
6565
  export type __stringPatternAZaZ0902 = string;
6558
6566
  export type __stringPatternAZaZ0932 = string;
6559
6567
  export type __stringPatternAZaZ23AZaZ = string;
6568
+ export type __stringPatternAZaZ23AZaZ09 = string;
6560
6569
  export type __stringPatternArnAwsUsGovAcm = string;
6561
6570
  export type __stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932 = string;
6562
6571
  export type __stringPatternDD = string;
package/clients/ssm.d.ts CHANGED
@@ -293,11 +293,11 @@ declare class SSM extends Service {
293
293
  */
294
294
  describeAutomationStepExecutions(callback?: (err: AWSError, data: SSM.Types.DescribeAutomationStepExecutionsResult) => void): Request<SSM.Types.DescribeAutomationStepExecutionsResult, AWSError>;
295
295
  /**
296
- * Lists all patches eligible to be included in a patch baseline.
296
+ * Lists all patches eligible to be included in a patch baseline. Currently, DescribeAvailablePatches supports only the Amazon Linux 1, Amazon Linux 2, and Windows Server operating systems.
297
297
  */
298
298
  describeAvailablePatches(params: SSM.Types.DescribeAvailablePatchesRequest, callback?: (err: AWSError, data: SSM.Types.DescribeAvailablePatchesResult) => void): Request<SSM.Types.DescribeAvailablePatchesResult, AWSError>;
299
299
  /**
300
- * Lists all patches eligible to be included in a patch baseline.
300
+ * Lists all patches eligible to be included in a patch baseline. Currently, DescribeAvailablePatches supports only the Amazon Linux 1, Amazon Linux 2, and Windows Server operating systems.
301
301
  */
302
302
  describeAvailablePatches(callback?: (err: AWSError, data: SSM.Types.DescribeAvailablePatchesResult) => void): Request<SSM.Types.DescribeAvailablePatchesResult, AWSError>;
303
303
  /**
@@ -1314,6 +1314,10 @@ declare namespace SSM {
1314
1314
  * Number of days to wait after the scheduled day to run an association.
1315
1315
  */
1316
1316
  ScheduleOffset?: ScheduleOffset;
1317
+ /**
1318
+ * The number of hours that an association can run on specified targets. After the resulting cutoff time passes, associations that are currently running are cancelled, and no pending executions are started on remaining targets.
1319
+ */
1320
+ Duration?: Duration;
1317
1321
  /**
1318
1322
  * A key-value mapping of document parameters to target resources. Both Targets and TargetMaps can't be specified together.
1319
1323
  */
@@ -1421,6 +1425,10 @@ declare namespace SSM {
1421
1425
  * Number of days to wait after the scheduled day to run an association.
1422
1426
  */
1423
1427
  ScheduleOffset?: ScheduleOffset;
1428
+ /**
1429
+ * The number of hours that an association can run on specified targets. After the resulting cutoff time passes, associations that are currently running are cancelled, and no pending executions are started on remaining targets.
1430
+ */
1431
+ Duration?: Duration;
1424
1432
  /**
1425
1433
  * A key-value mapping of document parameters to target resources. Both Targets and TargetMaps can't be specified together.
1426
1434
  */
@@ -1671,6 +1679,10 @@ declare namespace SSM {
1671
1679
  * Number of days to wait after the scheduled day to run an association.
1672
1680
  */
1673
1681
  ScheduleOffset?: ScheduleOffset;
1682
+ /**
1683
+ * The number of hours that an association can run on specified targets. After the resulting cutoff time passes, associations that are currently running are cancelled, and no pending executions are started on remaining targets.
1684
+ */
1685
+ Duration?: Duration;
1674
1686
  /**
1675
1687
  * A key-value mapping of document parameters to target resources. Both Targets and TargetMaps can't be specified together.
1676
1688
  */
@@ -2600,6 +2612,10 @@ declare namespace SSM {
2600
2612
  * Number of days to wait after the scheduled day to run an association.
2601
2613
  */
2602
2614
  ScheduleOffset?: ScheduleOffset;
2615
+ /**
2616
+ * The number of hours the association can run before it is canceled. Duration applies to associations that are currently running, and any pending and in progress commands on all targets. If a target was taken offline for the association to run, it is made available again immediately, without a reboot. The Duration parameter applies only when both these conditions are true: The association for which you specify a duration is cancelable according to the parameters of the SSM command document or Automation runbook associated with this execution. The command specifies the ApplyOnlyAtCronInterval parameter, which means that the association doesn't run immediately after it is created, but only according to the specified schedule.
2617
+ */
2618
+ Duration?: Duration;
2603
2619
  /**
2604
2620
  * A key-value mapping of document parameters to target resources. Both Targets and TargetMaps can't be specified together.
2605
2621
  */
@@ -2685,6 +2701,10 @@ declare namespace SSM {
2685
2701
  * Number of days to wait after the scheduled day to run an association. For example, if you specified a cron schedule of cron(0 0 ? * THU#2 *), you could specify an offset of 3 to run the association each Sunday after the second Thursday of the month. For more information about cron schedules for associations, see Reference: Cron and rate expressions for Systems Manager in the Amazon Web Services Systems Manager User Guide. To use offsets, you must specify the ApplyOnlyAtCronInterval parameter. This option tells the system not to run an association immediately after you create it.
2686
2702
  */
2687
2703
  ScheduleOffset?: ScheduleOffset;
2704
+ /**
2705
+ * The number of hours the association can run before it is canceled. Duration applies to associations that are currently running, and any pending and in progress commands on all targets. If a target was taken offline for the association to run, it is made available again immediately, without a reboot. The Duration parameter applies only when both these conditions are true: The association for which you specify a duration is cancelable according to the parameters of the SSM command document or Automation runbook associated with this execution. The command specifies the ApplyOnlyAtCronInterval parameter, which means that the association doesn't run immediately after it is created, but only according to the specified schedule.
2706
+ */
2707
+ Duration?: Duration;
2688
2708
  /**
2689
2709
  * A key-value mapping of document parameters to target resources. Both Targets and TargetMaps can't be specified together.
2690
2710
  */
@@ -3468,7 +3488,7 @@ declare namespace SSM {
3468
3488
  */
3469
3489
  DocumentVersion?: DocumentVersion;
3470
3490
  /**
3471
- * An optional field specifying the version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.
3491
+ * An optional field specifying the version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.
3472
3492
  */
3473
3493
  VersionName?: DocumentVersionName;
3474
3494
  }
@@ -4317,7 +4337,7 @@ declare namespace SSM {
4317
4337
  */
4318
4338
  Owner?: DocumentOwner;
4319
4339
  /**
4320
- * An optional field specifying the version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.
4340
+ * An optional field specifying the version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.
4321
4341
  */
4322
4342
  VersionName?: DocumentVersionName;
4323
4343
  /**
@@ -4424,7 +4444,7 @@ declare namespace SSM {
4424
4444
  */
4425
4445
  RequireType?: RequireType;
4426
4446
  /**
4427
- * An optional field specifying the version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.
4447
+ * An optional field specifying the version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.
4428
4448
  */
4429
4449
  VersionName?: DocumentVersionName;
4430
4450
  }
@@ -4496,7 +4516,7 @@ declare namespace SSM {
4496
4516
  */
4497
4517
  DocumentVersion?: DocumentVersion;
4498
4518
  /**
4499
- * The version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.
4519
+ * The version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.
4500
4520
  */
4501
4521
  VersionName?: DocumentVersionName;
4502
4522
  /**
@@ -4528,6 +4548,7 @@ declare namespace SSM {
4528
4548
  export type DocumentVersionName = string;
4529
4549
  export type DocumentVersionNumber = string;
4530
4550
  export type DryRun = boolean;
4551
+ export type Duration = number;
4531
4552
  export type EffectiveInstanceAssociationMaxResults = number;
4532
4553
  export interface EffectivePatch {
4533
4554
  /**
@@ -4707,7 +4728,7 @@ declare namespace SSM {
4707
4728
  */
4708
4729
  Target?: SessionTarget;
4709
4730
  /**
4710
- * The status of the connection to the managed node. For example, 'Connected' or 'Not Connected'.
4731
+ * The status of the connection to the managed node.
4711
4732
  */
4712
4733
  Status?: ConnectionStatus;
4713
4734
  }
@@ -4765,7 +4786,7 @@ declare namespace SSM {
4765
4786
  */
4766
4787
  Name: DocumentARN;
4767
4788
  /**
4768
- * An optional field specifying the version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document and can't be changed.
4789
+ * An optional field specifying the version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document and can't be changed.
4769
4790
  */
4770
4791
  VersionName?: DocumentVersionName;
4771
4792
  /**
@@ -4791,7 +4812,7 @@ declare namespace SSM {
4791
4812
  */
4792
4813
  DisplayName?: DocumentDisplayName;
4793
4814
  /**
4794
- * The version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.
4815
+ * The version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.
4795
4816
  */
4796
4817
  VersionName?: DocumentVersionName;
4797
4818
  /**
@@ -7603,7 +7624,7 @@ declare namespace SSM {
7603
7624
  */
7604
7625
  Type?: ParameterType;
7605
7626
  /**
7606
- * The ID of the query key used for this parameter.
7627
+ * The alias of the Key Management Service (KMS) key used to encrypt the parameter. Applies to SecureString parameters only
7607
7628
  */
7608
7629
  KeyId?: ParameterKeyId;
7609
7630
  /**
@@ -7676,7 +7697,7 @@ declare namespace SSM {
7676
7697
  */
7677
7698
  Type?: ParameterType;
7678
7699
  /**
7679
- * The ID of the query key used for this parameter.
7700
+ * The alias of the Key Management Service (KMS) key used to encrypt the parameter. Applies to SecureString parameters only.
7680
7701
  */
7681
7702
  KeyId?: ParameterKeyId;
7682
7703
  /**
@@ -7931,7 +7952,7 @@ declare namespace SSM {
7931
7952
  */
7932
7953
  InstalledTime: DateTime;
7933
7954
  /**
7934
- * The IDs of one or more Common Vulnerabilities and Exposure (CVE) issues that are resolved by the patch.
7955
+ * The IDs of one or more Common Vulnerabilities and Exposure (CVE) issues that are resolved by the patch. Currently, CVE ID values are reported only for patches with a status of Missing or Failed.
7935
7956
  */
7936
7957
  CVEIds?: PatchCVEIds;
7937
7958
  }
@@ -9477,6 +9498,10 @@ declare namespace SSM {
9477
9498
  * Number of days to wait after the scheduled day to run an association. For example, if you specified a cron schedule of cron(0 0 ? * THU#2 *), you could specify an offset of 3 to run the association each Sunday after the second Thursday of the month. For more information about cron schedules for associations, see Reference: Cron and rate expressions for Systems Manager in the Amazon Web Services Systems Manager User Guide. To use offsets, you must specify the ApplyOnlyAtCronInterval parameter. This option tells the system not to run an association immediately after you create it.
9478
9499
  */
9479
9500
  ScheduleOffset?: ScheduleOffset;
9501
+ /**
9502
+ * The number of hours the association can run before it is canceled. Duration applies to associations that are currently running, and any pending and in progress commands on all targets. If a target was taken offline for the association to run, it is made available again immediately, without a reboot. The Duration parameter applies only when both these conditions are true: The association for which you specify a duration is cancelable according to the parameters of the SSM command document or Automation runbook associated with this execution. The command specifies the ApplyOnlyAtCronInterval parameter, which means that the association doesn't run immediately after it is updated, but only according to the specified schedule.
9503
+ */
9504
+ Duration?: Duration;
9480
9505
  /**
9481
9506
  * A key-value mapping of document parameters to target resources. Both Targets and TargetMaps can't be specified together.
9482
9507
  */
@@ -9559,7 +9584,7 @@ declare namespace SSM {
9559
9584
  */
9560
9585
  DisplayName?: DocumentDisplayName;
9561
9586
  /**
9562
- * An optional field specifying the version of the artifact you are updating with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.
9587
+ * An optional field specifying the version of the artifact you are updating with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.
9563
9588
  */
9564
9589
  VersionName?: DocumentVersionName;
9565
9590
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1547.0',
86
+ VERSION: '2.1549.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -9415,6 +9415,7 @@ return /******/ (function(modules) { // webpackBootstrap
9415
9415
 
9416
9416
  var hasSymbols = __webpack_require__(56);
9417
9417
 
9418
+ /** @type {import('.')} */
9418
9419
  module.exports = function hasToStringTagShams() {
9419
9420
  return hasSymbols() && !!Symbol.toStringTag;
9420
9421
  };
@@ -10297,7 +10298,7 @@ return /******/ (function(modules) { // webpackBootstrap
10297
10298
  var $slice = callBound('String.prototype.slice');
10298
10299
  var getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');
10299
10300
 
10300
- var $indexOf = callBound('Array.prototype.indexOf', true) || function indexOf(array, value) {
10301
+ var $indexOf = callBound('Array.prototype.indexOf', true) || /** @type {(array: readonly unknown[], value: unknown) => keyof array} */ function indexOf(array, value) {
10301
10302
  for (var i = 0; i < array.length; i += 1) {
10302
10303
  if (array[i] === value) {
10303
10304
  return i;
@@ -10305,17 +10306,24 @@ return /******/ (function(modules) { // webpackBootstrap
10305
10306
  }
10306
10307
  return -1;
10307
10308
  };
10309
+
10310
+ /** @typedef {Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array} TypedArray */
10311
+ /** @typedef {'Int8Array' | 'Uint8Array' | 'Uint8ClampedArray' | 'Int16Array' | 'Uint16Array' | 'Int32Array' | 'Uint32Array' | 'Float32Array' | 'Float64Array' | 'BigInt64Array' | 'BigUint64Array'} TypedArrayName */
10312
+ /** @type {{ [k in `\$${TypedArrayName}`]?: (receiver: TypedArray) => string | typeof Uint8Array.prototype.slice.call | typeof Uint8Array.prototype.set.call } & { __proto__: null }} */
10308
10313
  var cache = { __proto__: null };
10309
10314
  if (hasToStringTag && gOPD && getPrototypeOf) {
10310
10315
  forEach(typedArrays, function (typedArray) {
10311
10316
  var arr = new g[typedArray]();
10312
10317
  if (Symbol.toStringTag in arr) {
10313
10318
  var proto = getPrototypeOf(arr);
10319
+ // @ts-expect-error TS won't narrow inside a closure
10314
10320
  var descriptor = gOPD(proto, Symbol.toStringTag);
10315
10321
  if (!descriptor) {
10316
10322
  var superProto = getPrototypeOf(proto);
10323
+ // @ts-expect-error TS won't narrow inside a closure
10317
10324
  descriptor = gOPD(superProto, Symbol.toStringTag);
10318
10325
  }
10326
+ // @ts-expect-error TODO: fix
10319
10327
  cache['$' + typedArray] = callBind(descriptor.get);
10320
10328
  }
10321
10329
  });
@@ -10324,38 +10332,52 @@ return /******/ (function(modules) { // webpackBootstrap
10324
10332
  var arr = new g[typedArray]();
10325
10333
  var fn = arr.slice || arr.set;
10326
10334
  if (fn) {
10335
+ // @ts-expect-error TODO: fix
10327
10336
  cache['$' + typedArray] = callBind(fn);
10328
10337
  }
10329
10338
  });
10330
10339
  }
10331
10340
 
10341
+ /** @type {import('.')} */
10332
10342
  var tryTypedArrays = function tryAllTypedArrays(value) {
10333
- var found = false;
10334
- forEach(cache, function (getter, typedArray) {
10335
- if (!found) {
10336
- try {
10337
- if ('$' + getter(value) === typedArray) {
10338
- found = $slice(typedArray, 1);
10339
- }
10340
- } catch (e) { /**/ }
10343
+ /** @type {ReturnType<tryAllTypedArrays>} */ var found = false;
10344
+ forEach(
10345
+ // eslint-disable-next-line no-extra-parens
10346
+ /** @type {Record<`\$${TypedArrayName}`, typeof cache>} */ /** @type {any} */ (cache),
10347
+ /** @type {(getter: typeof cache, name: `\$${TypedArrayName}`) => void} */ function (getter, typedArray) {
10348
+ if (!found) {
10349
+ try {
10350
+ // @ts-expect-error TODO: fix
10351
+ if ('$' + getter(value) === typedArray) {
10352
+ found = $slice(typedArray, 1);
10353
+ }
10354
+ } catch (e) { /**/ }
10355
+ }
10341
10356
  }
10342
- });
10357
+ );
10343
10358
  return found;
10344
10359
  };
10345
10360
 
10361
+ /** @type {import('.')} */
10346
10362
  var trySlices = function tryAllSlices(value) {
10347
- var found = false;
10348
- forEach(cache, function (getter, name) {
10349
- if (!found) {
10350
- try {
10351
- getter(value);
10352
- found = $slice(name, 1);
10353
- } catch (e) { /**/ }
10363
+ /** @type {ReturnType<tryAllSlices>} */ var found = false;
10364
+ forEach(
10365
+ // eslint-disable-next-line no-extra-parens
10366
+ /** @type {any} */ (cache),
10367
+ /** @type {(getter: typeof cache, name: `\$${TypedArrayName}`) => void} */ function (getter, name) {
10368
+ if (!found) {
10369
+ try {
10370
+ // @ts-expect-error TODO: fix
10371
+ getter(value);
10372
+ found = $slice(name, 1);
10373
+ } catch (e) { /**/ }
10374
+ }
10354
10375
  }
10355
- });
10376
+ );
10356
10377
  return found;
10357
10378
  };
10358
10379
 
10380
+ /** @type {import('.')} */
10359
10381
  module.exports = function whichTypedArray(value) {
10360
10382
  if (!value || typeof value !== 'object') { return false; }
10361
10383
  if (!hasToStringTag) {
@@ -10556,7 +10578,7 @@ return /******/ (function(modules) { // webpackBootstrap
10556
10578
 
10557
10579
  /* WEBPACK VAR INJECTION */(function(global) {'use strict';
10558
10580
 
10559
- var possibleNames = [
10581
+ var /** @type {ReturnType<import('.')>} */ possibleNames = [
10560
10582
  'BigInt64Array',
10561
10583
  'BigUint64Array',
10562
10584
  'Float32Array',
@@ -10572,10 +10594,12 @@ return /******/ (function(modules) { // webpackBootstrap
10572
10594
 
10573
10595
  var g = typeof globalThis === 'undefined' ? global : globalThis;
10574
10596
 
10597
+ /** @type {import('.')} */
10575
10598
  module.exports = function availableTypedArrays() {
10576
- var out = [];
10599
+ var /** @type {ReturnType<typeof availableTypedArrays>} */ out = [];
10577
10600
  for (var i = 0; i < possibleNames.length; i++) {
10578
10601
  if (typeof g[possibleNames[i]] === 'function') {
10602
+ // @ts-expect-error
10579
10603
  out[out.length] = possibleNames[i];
10580
10604
  }
10581
10605
  }