aws-sdk 2.978.0 → 2.982.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 (55) hide show
  1. package/CHANGELOG.md +27 -1
  2. package/README.md +1 -1
  3. package/apis/acm-pca-2017-08-22.min.json +26 -14
  4. package/apis/cloudformation-2010-05-15.min.json +27 -1
  5. package/apis/ec2-2016-11-15.min.json +731 -727
  6. package/apis/elasticfilesystem-2015-02-01.min.json +2 -1
  7. package/apis/firehose-2015-08-04.min.json +104 -79
  8. package/apis/fsx-2018-03-01.min.json +639 -66
  9. package/apis/fsx-2018-03-01.paginators.json +15 -0
  10. package/apis/iot-2015-05-28.min.json +481 -232
  11. package/apis/iot-2015-05-28.paginators.json +12 -0
  12. package/apis/kms-2014-11-01.examples.json +100 -94
  13. package/apis/kms-2014-11-01.min.json +54 -34
  14. package/apis/mediatailor-2018-04-23.min.json +144 -116
  15. package/apis/quicksight-2018-04-01.min.json +162 -127
  16. package/apis/s3control-2018-08-20.min.json +470 -24
  17. package/apis/s3control-2018-08-20.paginators.json +5 -0
  18. package/apis/schemas-2019-12-02.min.json +49 -31
  19. package/apis/securityhub-2018-10-26.min.json +492 -205
  20. package/apis/securityhub-2018-10-26.paginators.json +22 -11
  21. package/apis/servicecatalog-appregistry-2020-06-24.min.json +68 -0
  22. package/apis/transfer-2018-11-05.min.json +403 -9
  23. package/apis/transfer-2018-11-05.paginators.json +10 -0
  24. package/clients/accessanalyzer.d.ts +46 -43
  25. package/clients/acmpca.d.ts +21 -7
  26. package/clients/cloudformation.d.ts +116 -80
  27. package/clients/cloudtrail.d.ts +72 -72
  28. package/clients/codebuild.d.ts +3 -3
  29. package/clients/computeoptimizer.d.ts +1 -1
  30. package/clients/configservice.d.ts +323 -323
  31. package/clients/ebs.d.ts +1 -1
  32. package/clients/ec2.d.ts +22 -13
  33. package/clients/efs.d.ts +57 -31
  34. package/clients/firehose.d.ts +39 -10
  35. package/clients/fsx.d.ts +694 -52
  36. package/clients/iot.d.ts +829 -506
  37. package/clients/kms.d.ts +293 -280
  38. package/clients/lexmodelbuildingservice.d.ts +1 -1
  39. package/clients/mediatailor.d.ts +45 -8
  40. package/clients/memorydb.d.ts +2 -2
  41. package/clients/polly.d.ts +2 -2
  42. package/clients/quicksight.d.ts +343 -310
  43. package/clients/s3control.d.ts +439 -44
  44. package/clients/schemas.d.ts +25 -0
  45. package/clients/securityhub.d.ts +524 -21
  46. package/clients/servicecatalogappregistry.d.ts +81 -3
  47. package/clients/sqs.d.ts +4 -4
  48. package/clients/transfer.d.ts +556 -28
  49. package/dist/aws-sdk-core-react-native.js +1 -1
  50. package/dist/aws-sdk-react-native.js +25 -27
  51. package/dist/aws-sdk.js +1414 -1077
  52. package/dist/aws-sdk.min.js +85 -85
  53. package/dist/xml2js.js +2 -3
  54. package/lib/core.js +1 -1
  55. package/package.json +1 -1
@@ -1729,7 +1729,7 @@ declare namespace LexModelBuildingService {
1729
1729
  tags?: TagList;
1730
1730
  }
1731
1731
  export type ListsOfUtterances = UtteranceList[];
1732
- export type Locale = "de-DE"|"en-AU"|"en-GB"|"en-IN"|"en-US"|"es-419"|"es-ES"|"es-US"|"fr-FR"|"fr-CA"|"it-IT"|"ja-JP"|string;
1732
+ export type Locale = "de-DE"|"en-AU"|"en-GB"|"en-IN"|"en-US"|"es-419"|"es-ES"|"es-US"|"fr-FR"|"fr-CA"|"it-IT"|"ja-JP"|"ko-KR"|string;
1733
1733
  export type LocaleList = Locale[];
1734
1734
  export interface LogSettingsRequest {
1735
1735
  /**
@@ -373,6 +373,10 @@ declare namespace MediaTailor {
373
373
  * The timestamp of when the channel was created.
374
374
  */
375
375
  CreationTime?: __timestampUnix;
376
+ /**
377
+ * Contains information about the slate used to fill gaps between programs in the schedule. You must configure FillerSlate if your channel uses an LINEAR PlaybackMode.
378
+ */
379
+ FillerSlate?: SlateSource;
376
380
  /**
377
381
  * The timestamp of when the channel was last modified.
378
382
  */
@@ -382,7 +386,7 @@ declare namespace MediaTailor {
382
386
  */
383
387
  Outputs: ResponseOutputs;
384
388
  /**
385
- * The type of playback mode for this channel. Possible values: ONCE or LOOP.
389
+ * The type of playback mode for this channel. LINEAR - Programs play back-to-back only once. LOOP - Programs play back-to-back in an endless loop. When the last program in the schedule plays, playback loops back to the first program in the schedule.
386
390
  */
387
391
  PlaybackMode: __string;
388
392
  /**
@@ -398,12 +402,16 @@ declare namespace MediaTailor {
398
402
  * The identifier for the channel you are working on.
399
403
  */
400
404
  ChannelName: __string;
405
+ /**
406
+ * The slate used to fill gaps between programs in the schedule. You must configure filler slate if your channel uses an LINEAR PlaybackMode.
407
+ */
408
+ FillerSlate?: SlateSource;
401
409
  /**
402
410
  * The channel's output properties.
403
411
  */
404
412
  Outputs: RequestOutputs;
405
413
  /**
406
- * The type of playback mode for this channel. The only supported value is LOOP.
414
+ * The type of playback mode to use for this channel. LINEAR - The programs in the schedule play once back-to-back in the schedule. LOOP - The programs in the schedule play back-to-back in an endless loop. When the last program in the schedule stops playing, playback loops back to the first program in the schedule.
407
415
  */
408
416
  PlaybackMode: PlaybackMode;
409
417
  /**
@@ -428,6 +436,10 @@ declare namespace MediaTailor {
428
436
  * The timestamp of when the channel was created.
429
437
  */
430
438
  CreationTime?: __timestampUnix;
439
+ /**
440
+ * Contains information about the slate used to fill gaps between programs in the schedule.
441
+ */
442
+ FillerSlate?: SlateSource;
431
443
  /**
432
444
  * The timestamp of when the channel was last modified.
433
445
  */
@@ -437,7 +449,7 @@ declare namespace MediaTailor {
437
449
  */
438
450
  Outputs?: ResponseOutputs;
439
451
  /**
440
- * The type of playback for this channel. The only supported value is LOOP.
452
+ * The channel's playback mode.
441
453
  */
442
454
  PlaybackMode?: __string;
443
455
  /**
@@ -492,6 +504,10 @@ declare namespace MediaTailor {
492
504
  * The name of the program.
493
505
  */
494
506
  ProgramName?: __string;
507
+ /**
508
+ * The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.
509
+ */
510
+ ScheduledStartTime?: __timestampUnix;
495
511
  /**
496
512
  * The source location name.
497
513
  */
@@ -732,6 +748,10 @@ declare namespace MediaTailor {
732
748
  * The timestamp of when the channel was created.
733
749
  */
734
750
  CreationTime?: __timestampUnix;
751
+ /**
752
+ * Contains information about the slate used to fill gaps between programs in the schedule.
753
+ */
754
+ FillerSlate?: SlateSource;
735
755
  /**
736
756
  * The timestamp of when the channel was last modified.
737
757
  */
@@ -741,7 +761,7 @@ declare namespace MediaTailor {
741
761
  */
742
762
  Outputs?: ResponseOutputs;
743
763
  /**
744
- * The type of playback for this channel. The only supported value is LOOP.
764
+ * The channel's playback mode.
745
765
  */
746
766
  PlaybackMode?: __string;
747
767
  /**
@@ -780,6 +800,10 @@ declare namespace MediaTailor {
780
800
  * The name of the program.
781
801
  */
782
802
  ProgramName?: __string;
803
+ /**
804
+ * The date and time that the program is scheduled to start in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751 UTC.
805
+ */
806
+ ScheduledStartTime?: __timestampUnix;
783
807
  /**
784
808
  * The source location name.
785
809
  */
@@ -1236,7 +1260,7 @@ declare namespace MediaTailor {
1236
1260
  */
1237
1261
  VideoContentSourceUrl?: __string;
1238
1262
  }
1239
- export type PlaybackMode = "LOOP"|string;
1263
+ export type PlaybackMode = "LOOP"|"LINEAR"|string;
1240
1264
  export interface PutChannelPolicyRequest {
1241
1265
  /**
1242
1266
  * The identifier for the channel you are working on.
@@ -1473,6 +1497,10 @@ declare namespace MediaTailor {
1473
1497
  * The schedule's ad break properties.
1474
1498
  */
1475
1499
  ScheduleAdBreaks?: __listOfScheduleAdBreak;
1500
+ /**
1501
+ * The type of schedule entry. Valid values: PROGRAM or FILLER_SLATE.
1502
+ */
1503
+ ScheduleEntryType?: ScheduleEntryType;
1476
1504
  /**
1477
1505
  * The name of the source location.
1478
1506
  */
@@ -1482,6 +1510,7 @@ declare namespace MediaTailor {
1482
1510
  */
1483
1511
  VodSourceName: __string;
1484
1512
  }
1513
+ export type ScheduleEntryType = "PROGRAM"|"FILLER_SLATE"|string;
1485
1514
  export interface SecretsManagerAccessTokenConfiguration {
1486
1515
  /**
1487
1516
  * The name of the HTTP header used to supply the access token in requests to the source location.
@@ -1586,7 +1615,7 @@ declare namespace MediaTailor {
1586
1615
  }
1587
1616
  export interface Transition {
1588
1617
  /**
1589
- * The position where this program will be inserted relative to the RelativeProgram. Possible values are: AFTER_PROGRAM, and BEFORE_PROGRAM.
1618
+ * The position where this program will be inserted relative to the RelativePosition.
1590
1619
  */
1591
1620
  RelativePosition: RelativePosition;
1592
1621
  /**
@@ -1594,7 +1623,11 @@ declare namespace MediaTailor {
1594
1623
  */
1595
1624
  RelativeProgram?: __string;
1596
1625
  /**
1597
- * When the program should be played. RELATIVE means that programs will be played back-to-back.
1626
+ * The date and time that the program is scheduled to start, in epoch milliseconds.
1627
+ */
1628
+ ScheduledStartTimeMillis?: __long;
1629
+ /**
1630
+ * Defines when the program plays in the schedule. You can set the value to ABSOLUTE or RELATIVE. ABSOLUTE - The program plays at a specific wall clock time. This setting can only be used for channels using the LINEAR PlaybackMode. Note the following considerations when using ABSOLUTE transitions: If the preceding program in the schedule has a duration that extends past the wall clock time, MediaTailor truncates the preceding program on a common segment boundary. If there are gaps in playback, MediaTailor plays the FillerSlate you configured for your linear channel. RELATIVE - The program is inserted into the schedule either before or after a program that you specify via RelativePosition.
1598
1631
  */
1599
1632
  Type: __string;
1600
1633
  }
@@ -1636,6 +1669,10 @@ declare namespace MediaTailor {
1636
1669
  * The timestamp of when the channel was created.
1637
1670
  */
1638
1671
  CreationTime?: __timestampUnix;
1672
+ /**
1673
+ * Contains information about the slate used to fill gaps between programs in the schedule.
1674
+ */
1675
+ FillerSlate?: SlateSource;
1639
1676
  /**
1640
1677
  * The timestamp of when the channel was last modified.
1641
1678
  */
@@ -1645,7 +1682,7 @@ declare namespace MediaTailor {
1645
1682
  */
1646
1683
  Outputs?: ResponseOutputs;
1647
1684
  /**
1648
- * The type of playback for this channel. The only supported value is LOOP.
1685
+ * The channel's playback mode.
1649
1686
  */
1650
1687
  PlaybackMode?: __string;
1651
1688
  /**
@@ -636,11 +636,11 @@ declare namespace MemoryDB {
636
636
  */
637
637
  Description?: String;
638
638
  /**
639
- * The number of shards the cluster will contain. Clusters can have up to 500 shards, with your data partitioned across the shards. For example, you can choose to configure a 500 node cluster that ranges between 83 shards (one primary and 5 replicas per shard) and 500 shards (single primary and no replicas). Make sure there are enough available IP addresses to accommodate the increase. Common pitfalls include the subnets in the subnet group have too small a CIDR range or the subnets are shared and heavily used by other clusters.
639
+ * The number of shards the cluster will contain. The default value is 1.
640
640
  */
641
641
  NumShards?: IntegerOptional;
642
642
  /**
643
- * The number of replicas to apply to each shard. The limit is 5.
643
+ * The number of replicas to apply to each shard. The default value is 1. The maximum is 5.
644
644
  */
645
645
  NumReplicasPerShard?: IntegerOptional;
646
646
  /**
@@ -162,7 +162,7 @@ declare namespace Polly {
162
162
  SynthesisTask?: SynthesisTask;
163
163
  }
164
164
  export type IncludeAdditionalLanguageCodes = boolean;
165
- export type LanguageCode = "arb"|"cmn-CN"|"cy-GB"|"da-DK"|"de-DE"|"en-AU"|"en-GB"|"en-GB-WLS"|"en-IN"|"en-US"|"es-ES"|"es-MX"|"es-US"|"fr-CA"|"fr-FR"|"is-IS"|"it-IT"|"ja-JP"|"hi-IN"|"ko-KR"|"nb-NO"|"nl-NL"|"pl-PL"|"pt-BR"|"pt-PT"|"ro-RO"|"ru-RU"|"sv-SE"|"tr-TR"|"en-NZ"|string;
165
+ export type LanguageCode = "arb"|"cmn-CN"|"cy-GB"|"da-DK"|"de-DE"|"en-AU"|"en-GB"|"en-GB-WLS"|"en-IN"|"en-US"|"es-ES"|"es-MX"|"es-US"|"fr-CA"|"fr-FR"|"is-IS"|"it-IT"|"ja-JP"|"hi-IN"|"ko-KR"|"nb-NO"|"nl-NL"|"pl-PL"|"pt-BR"|"pt-PT"|"ro-RO"|"ru-RU"|"sv-SE"|"tr-TR"|"en-NZ"|"en-ZA"|string;
166
166
  export type LanguageCodeList = LanguageCode[];
167
167
  export type LanguageName = string;
168
168
  export type LastModified = Date;
@@ -488,7 +488,7 @@ declare namespace Polly {
488
488
  */
489
489
  SupportedEngines?: EngineList;
490
490
  }
491
- export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|string;
491
+ export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|string;
492
492
  export type VoiceList = Voice[];
493
493
  export type VoiceName = string;
494
494
  /**