aws-sdk 2.1345.0 → 2.1347.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 +23 -1
- package/README.md +1 -1
- package/apis/autoscaling-2011-01-01.examples.json +72 -0
- package/apis/autoscaling-2011-01-01.min.json +13 -5
- package/apis/autoscaling-2011-01-01.paginators.json +5 -0
- package/apis/batch-2016-08-10.min.json +4 -1
- package/apis/compute-optimizer-2019-11-01.min.json +15 -11
- package/apis/drs-2020-02-26.min.json +21 -2
- package/apis/ec2-2016-11-15.min.json +754 -660
- package/apis/elasticmapreduce-2009-03-31.min.json +82 -66
- package/apis/glue-2017-03-31.min.json +0 -1
- package/apis/guardduty-2017-11-28.min.json +590 -111
- package/apis/guardduty-2017-11-28.paginators.json +6 -0
- package/apis/imagebuilder-2019-12-02.min.json +546 -75
- package/apis/imagebuilder-2019-12-02.paginators.json +23 -0
- package/apis/ivs-2020-07-14.min.json +58 -46
- package/apis/kendra-2019-02-03.min.json +494 -240
- package/apis/metadata.json +4 -0
- package/apis/network-firewall-2020-11-12.min.json +238 -9
- package/apis/network-firewall-2020-11-12.paginators.json +6 -0
- package/apis/rds-2014-10-31.min.json +4 -3
- package/apis/sagemaker-geospatial-2020-05-27.min.json +135 -107
- package/apis/vpc-lattice-2022-11-30.examples.json +5 -0
- package/apis/vpc-lattice-2022-11-30.min.json +2363 -0
- package/apis/vpc-lattice-2022-11-30.paginators.json +58 -0
- package/apis/wellarchitected-2020-03-31.min.json +125 -21
- package/apis/wellarchitected-2020-03-31.paginators.json +5 -0
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/autoscaling.d.ts +63 -36
- package/clients/batch.d.ts +13 -0
- package/clients/computeoptimizer.d.ts +13 -3
- package/clients/drs.d.ts +25 -5
- package/clients/ec2.d.ts +112 -1
- package/clients/emr.d.ts +20 -0
- package/clients/glue.d.ts +0 -4
- package/clients/guardduty.d.ts +491 -8
- package/clients/imagebuilder.d.ts +931 -128
- package/clients/ivs.d.ts +17 -0
- package/clients/kendra.d.ts +424 -75
- package/clients/networkfirewall.d.ts +289 -0
- package/clients/opensearchserverless.d.ts +6 -6
- package/clients/rds.d.ts +25 -17
- package/clients/sagemakergeospatial.d.ts +183 -147
- package/clients/vpclattice.d.ts +2772 -0
- package/clients/vpclattice.js +18 -0
- package/clients/wellarchitected.d.ts +125 -34
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +61 -24
- package/dist/aws-sdk.js +865 -737
- package/dist/aws-sdk.min.js +97 -96
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/ivs.d.ts
CHANGED
|
@@ -316,6 +316,10 @@ declare namespace IVS {
|
|
|
316
316
|
* Channel ingest endpoint, part of the definition of an ingest server, used when you set up streaming software.
|
|
317
317
|
*/
|
|
318
318
|
ingestEndpoint?: IngestEndpoint;
|
|
319
|
+
/**
|
|
320
|
+
* Whether the channel allows insecure RTMP ingest. Default: false.
|
|
321
|
+
*/
|
|
322
|
+
insecureIngest?: InsecureIngest;
|
|
319
323
|
/**
|
|
320
324
|
* Channel latency mode. Use NORMAL to broadcast and deliver live video up to Full HD. Use LOW for near-real-time interaction with viewers. Default: LOW. (Note: In the Amazon IVS console, LOW and NORMAL correspond to Ultra-low and Standard, respectively.)
|
|
321
325
|
*/
|
|
@@ -356,6 +360,10 @@ declare namespace IVS {
|
|
|
356
360
|
* Whether the channel is private (enabled for playback authorization). Default: false.
|
|
357
361
|
*/
|
|
358
362
|
authorized?: IsAuthorized;
|
|
363
|
+
/**
|
|
364
|
+
* Whether the channel allows insecure RTMP ingest. Default: false.
|
|
365
|
+
*/
|
|
366
|
+
insecureIngest?: InsecureIngest;
|
|
359
367
|
/**
|
|
360
368
|
* Channel latency mode. Use NORMAL to broadcast and deliver live video up to Full HD. Use LOW for near-real-time interaction with viewers. Default: LOW. (Note: In the Amazon IVS console, LOW and NORMAL correspond to Ultra-low and Standard, respectively.)
|
|
361
369
|
*/
|
|
@@ -380,6 +388,10 @@ declare namespace IVS {
|
|
|
380
388
|
* Whether the channel is private (enabled for playback authorization). Default: false.
|
|
381
389
|
*/
|
|
382
390
|
authorized?: Boolean;
|
|
391
|
+
/**
|
|
392
|
+
* Whether the channel allows insecure RTMP ingest. Default: false.
|
|
393
|
+
*/
|
|
394
|
+
insecureIngest?: Boolean;
|
|
383
395
|
/**
|
|
384
396
|
* Channel latency mode. Use NORMAL to broadcast and deliver live video up to Full HD. Use LOW for near-real-time interaction with viewers. (Note: In the Amazon IVS console, LOW and NORMAL correspond to Ultra-low and Standard, respectively.) Default: LOW.
|
|
385
397
|
*/
|
|
@@ -594,6 +606,7 @@ declare namespace IVS {
|
|
|
594
606
|
video?: VideoConfiguration;
|
|
595
607
|
}
|
|
596
608
|
export type IngestEndpoint = string;
|
|
609
|
+
export type InsecureIngest = boolean;
|
|
597
610
|
export type Integer = number;
|
|
598
611
|
export type IsAuthorized = boolean;
|
|
599
612
|
export interface ListChannelsRequest {
|
|
@@ -1096,6 +1109,10 @@ declare namespace IVS {
|
|
|
1096
1109
|
* Whether the channel is private (enabled for playback authorization).
|
|
1097
1110
|
*/
|
|
1098
1111
|
authorized?: Boolean;
|
|
1112
|
+
/**
|
|
1113
|
+
* Whether the channel allows insecure RTMP ingest. Default: false.
|
|
1114
|
+
*/
|
|
1115
|
+
insecureIngest?: Boolean;
|
|
1099
1116
|
/**
|
|
1100
1117
|
* Channel latency mode. Use NORMAL to broadcast and deliver live video up to Full HD. Use LOW for near-real-time interaction with viewers. (Note: In the Amazon IVS console, LOW and NORMAL correspond to Ultra-low and Standard, respectively.)
|
|
1101
1118
|
*/
|