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.
- package/CHANGELOG.md +27 -1
- package/README.md +1 -1
- package/apis/acm-pca-2017-08-22.min.json +26 -14
- package/apis/cloudformation-2010-05-15.min.json +27 -1
- package/apis/ec2-2016-11-15.min.json +731 -727
- package/apis/elasticfilesystem-2015-02-01.min.json +2 -1
- package/apis/firehose-2015-08-04.min.json +104 -79
- package/apis/fsx-2018-03-01.min.json +639 -66
- package/apis/fsx-2018-03-01.paginators.json +15 -0
- package/apis/iot-2015-05-28.min.json +481 -232
- package/apis/iot-2015-05-28.paginators.json +12 -0
- package/apis/kms-2014-11-01.examples.json +100 -94
- package/apis/kms-2014-11-01.min.json +54 -34
- package/apis/mediatailor-2018-04-23.min.json +144 -116
- package/apis/quicksight-2018-04-01.min.json +162 -127
- package/apis/s3control-2018-08-20.min.json +470 -24
- package/apis/s3control-2018-08-20.paginators.json +5 -0
- package/apis/schemas-2019-12-02.min.json +49 -31
- package/apis/securityhub-2018-10-26.min.json +492 -205
- package/apis/securityhub-2018-10-26.paginators.json +22 -11
- package/apis/servicecatalog-appregistry-2020-06-24.min.json +68 -0
- package/apis/transfer-2018-11-05.min.json +403 -9
- package/apis/transfer-2018-11-05.paginators.json +10 -0
- package/clients/accessanalyzer.d.ts +46 -43
- package/clients/acmpca.d.ts +21 -7
- package/clients/cloudformation.d.ts +116 -80
- package/clients/cloudtrail.d.ts +72 -72
- package/clients/codebuild.d.ts +3 -3
- package/clients/computeoptimizer.d.ts +1 -1
- package/clients/configservice.d.ts +323 -323
- package/clients/ebs.d.ts +1 -1
- package/clients/ec2.d.ts +22 -13
- package/clients/efs.d.ts +57 -31
- package/clients/firehose.d.ts +39 -10
- package/clients/fsx.d.ts +694 -52
- package/clients/iot.d.ts +829 -506
- package/clients/kms.d.ts +293 -280
- package/clients/lexmodelbuildingservice.d.ts +1 -1
- package/clients/mediatailor.d.ts +45 -8
- package/clients/memorydb.d.ts +2 -2
- package/clients/polly.d.ts +2 -2
- package/clients/quicksight.d.ts +343 -310
- package/clients/s3control.d.ts +439 -44
- package/clients/schemas.d.ts +25 -0
- package/clients/securityhub.d.ts +524 -21
- package/clients/servicecatalogappregistry.d.ts +81 -3
- package/clients/sqs.d.ts +4 -4
- package/clients/transfer.d.ts +556 -28
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +25 -27
- package/dist/aws-sdk.js +1414 -1077
- package/dist/aws-sdk.min.js +85 -85
- package/dist/xml2js.js +2 -3
- package/lib/core.js +1 -1
- 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
|
/**
|
package/clients/mediatailor.d.ts
CHANGED
|
@@ -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.
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
-
*
|
|
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
|
|
1685
|
+
* The channel's playback mode.
|
|
1649
1686
|
*/
|
|
1650
1687
|
PlaybackMode?: __string;
|
|
1651
1688
|
/**
|
package/clients/memorydb.d.ts
CHANGED
|
@@ -636,11 +636,11 @@ declare namespace MemoryDB {
|
|
|
636
636
|
*/
|
|
637
637
|
Description?: String;
|
|
638
638
|
/**
|
|
639
|
-
* The number of shards the cluster will contain.
|
|
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
|
|
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
|
/**
|
package/clients/polly.d.ts
CHANGED
|
@@ -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
|
/**
|