cdk-lambda-subminute 2.0.428 → 2.0.430
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +47 -19
- package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +54 -45
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +2 -0
- package/node_modules/aws-sdk/apis/healthlake-2017-07-01.min.json +21 -14
- package/node_modules/aws-sdk/apis/iam-2010-05-08.min.json +1 -2
- package/node_modules/aws-sdk/apis/kms-2014-11-01.examples.json +73 -8
- package/node_modules/aws-sdk/apis/kms-2014-11-01.min.json +71 -4
- package/node_modules/aws-sdk/apis/kms-2014-11-01.paginators.json +14 -0
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +1992 -3
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.paginators.json +30 -0
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.waiters2.json +128 -0
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +21 -17
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +36 -22
- package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +238 -221
- package/node_modules/aws-sdk/apis/redshift-2012-12-01.min.json +2 -1
- package/node_modules/aws-sdk/clients/batch.d.ts +50 -4
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +36 -1
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +60 -60
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +16 -1
- package/node_modules/aws-sdk/clients/codebuild.d.ts +1 -1
- package/node_modules/aws-sdk/clients/configservice.d.ts +4 -4
- package/node_modules/aws-sdk/clients/glue.d.ts +13 -5
- package/node_modules/aws-sdk/clients/healthlake.d.ts +17 -1
- package/node_modules/aws-sdk/clients/iam.d.ts +7 -7
- package/node_modules/aws-sdk/clients/iotfleethub.d.ts +19 -19
- package/node_modules/aws-sdk/clients/kms.d.ts +105 -12
- package/node_modules/aws-sdk/clients/medialive.d.ts +1419 -0
- package/node_modules/aws-sdk/clients/mediatailor.d.ts +17 -0
- package/node_modules/aws-sdk/clients/omics.d.ts +137 -94
- package/node_modules/aws-sdk/clients/outposts.d.ts +1 -1
- package/node_modules/aws-sdk/clients/rds.d.ts +10 -10
- package/node_modules/aws-sdk/clients/redshift.d.ts +4 -0
- package/node_modules/aws-sdk/clients/s3control.d.ts +36 -36
- package/node_modules/aws-sdk/clients/transfer.d.ts +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +15 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +181 -77
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +66 -66
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -1461,6 +1461,10 @@ declare namespace MediaTailor {
|
|
1461
1461
|
* The configuration for HLS content.
|
1462
1462
|
*/
|
1463
1463
|
HlsConfiguration?: HlsConfiguration;
|
1464
|
+
/**
|
1465
|
+
* The setting that controls whether players can use stitched or guided ad insertion. The default, STITCHED_ONLY, forces all player sessions to use stitched (server-side) ad insertion. Choosing PLAYER_SELECT allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.
|
1466
|
+
*/
|
1467
|
+
InsertionMode?: InsertionMode;
|
1464
1468
|
/**
|
1465
1469
|
* The configuration for pre-roll ad insertion.
|
1466
1470
|
*/
|
@@ -1583,6 +1587,7 @@ declare namespace MediaTailor {
|
|
1583
1587
|
Type: Type;
|
1584
1588
|
}
|
1585
1589
|
export type HttpPackageConfigurations = HttpPackageConfiguration[];
|
1590
|
+
export type InsertionMode = "STITCHED_ONLY"|"PLAYER_SELECT"|string;
|
1586
1591
|
export type Integer = number;
|
1587
1592
|
export interface KeyValuePair {
|
1588
1593
|
/**
|
@@ -1861,6 +1866,10 @@ declare namespace MediaTailor {
|
|
1861
1866
|
* The configuration for HLS content.
|
1862
1867
|
*/
|
1863
1868
|
HlsConfiguration?: HlsConfiguration;
|
1869
|
+
/**
|
1870
|
+
* The setting that controls whether players can use stitched or guided ad insertion. The default, STITCHED_ONLY, forces all player sessions to use stitched (server-side) ad insertion. Choosing PLAYER_SELECT allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.
|
1871
|
+
*/
|
1872
|
+
InsertionMode?: InsertionMode;
|
1864
1873
|
/**
|
1865
1874
|
* The configuration for pre-roll ad insertion.
|
1866
1875
|
*/
|
@@ -2002,6 +2011,10 @@ declare namespace MediaTailor {
|
|
2002
2011
|
* The configuration for DASH content.
|
2003
2012
|
*/
|
2004
2013
|
DashConfiguration?: DashConfigurationForPut;
|
2014
|
+
/**
|
2015
|
+
* The setting that controls whether players can use stitched or guided ad insertion. The default, STITCHED_ONLY, forces all player sessions to use stitched (server-side) ad insertion. Choosing PLAYER_SELECT allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.
|
2016
|
+
*/
|
2017
|
+
InsertionMode?: InsertionMode;
|
2005
2018
|
/**
|
2006
2019
|
* The configuration for pre-roll ad insertion.
|
2007
2020
|
*/
|
@@ -2064,6 +2077,10 @@ declare namespace MediaTailor {
|
|
2064
2077
|
* The configuration for HLS content.
|
2065
2078
|
*/
|
2066
2079
|
HlsConfiguration?: HlsConfiguration;
|
2080
|
+
/**
|
2081
|
+
* The setting that controls whether players can use stitched or guided ad insertion. The default, STITCHED_ONLY, forces all player sessions to use stitched (server-side) ad insertion. Choosing PLAYER_SELECT allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.
|
2082
|
+
*/
|
2083
|
+
InsertionMode?: InsertionMode;
|
2067
2084
|
/**
|
2068
2085
|
* The configuration for pre-roll ad insertion.
|
2069
2086
|
*/
|