cdk-lambda-subminute 2.0.401 → 2.0.402
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/codestar-connections-2019-12-01.min.json +27 -21
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.min.json +51 -30
- package/node_modules/aws-sdk/clients/codestarconnections.d.ts +26 -0
- package/node_modules/aws-sdk/clients/elasticache.d.ts +5 -5
- package/node_modules/aws-sdk/clients/mediapackagev2.d.ts +49 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +18 -17
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +37 -35
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/which-typed-array/CHANGELOG.md +11 -0
- package/node_modules/which-typed-array/index.d.ts +59 -14
- package/node_modules/which-typed-array/index.js +16 -13
- package/node_modules/which-typed-array/package.json +10 -8
- package/node_modules/which-typed-array/test/index.js +1 -3
- package/node_modules/which-typed-array/tsconfig.json +2 -42
- package/package.json +2 -2
| @@ -395,7 +395,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 395 395 | 
             
            		  /**
         | 
| 396 396 | 
             
            		   * @constant
         | 
| 397 397 | 
             
            		   */
         | 
| 398 | 
            -
            		  VERSION: '2. | 
| 398 | 
            +
            		  VERSION: '2.1575.0',
         | 
| 399 399 |  | 
| 400 400 | 
             
            		  /**
         | 
| 401 401 | 
             
            		   * @api private
         | 
| @@ -10447,9 +10447,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 10447 10447 | 
             
            		var $TypeError = __webpack_require__(64);
         | 
| 10448 10448 | 
             
            		var $floor = GetIntrinsic('%Math.floor%');
         | 
| 10449 10449 |  | 
| 10450 | 
            -
            		/** @ | 
| 10451 | 
            -
             | 
| 10452 | 
            -
            		/** @type {<T extends Func = Func>(fn: T, length: number, loose?: boolean) => T} */
         | 
| 10450 | 
            +
            		/** @type {import('.')} */
         | 
| 10453 10451 | 
             
            		module.exports = function setFunctionLength(fn, length) {
         | 
| 10454 10452 | 
             
            			if (typeof fn !== 'function') {
         | 
| 10455 10453 | 
             
            				throw new $TypeError('`fn` is not a function');
         | 
| @@ -10673,6 +10671,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 10673 10671 | 
             
            		var callBound = __webpack_require__(57);
         | 
| 10674 10672 | 
             
            		var gOPD = __webpack_require__(75);
         | 
| 10675 10673 |  | 
| 10674 | 
            +
            		/** @type {(O: object) => string} */
         | 
| 10676 10675 | 
             
            		var $toString = callBound('Object.prototype.toString');
         | 
| 10677 10676 | 
             
            		var hasToStringTag = __webpack_require__(55)();
         | 
| 10678 10677 |  | 
| @@ -10682,7 +10681,8 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 10682 10681 | 
             
            		var $slice = callBound('String.prototype.slice');
         | 
| 10683 10682 | 
             
            		var getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');
         | 
| 10684 10683 |  | 
| 10685 | 
            -
            		 | 
| 10684 | 
            +
            		/** @type {<T = unknown>(array: readonly T[], value: unknown) => number} */
         | 
| 10685 | 
            +
            		var $indexOf = callBound('Array.prototype.indexOf', true) || function indexOf(array, value) {
         | 
| 10686 10686 | 
             
            			for (var i = 0; i < array.length; i += 1) {
         | 
| 10687 10687 | 
             
            				if (array[i] === value) {
         | 
| 10688 10688 | 
             
            					return i;
         | 
| @@ -10691,9 +10691,8 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 10691 10691 | 
             
            			return -1;
         | 
| 10692 10692 | 
             
            		};
         | 
| 10693 10693 |  | 
| 10694 | 
            -
            		/** @typedef { | 
| 10695 | 
            -
            		/** @ | 
| 10696 | 
            -
            		/** @type {{ [k in `\$${TypedArrayName}`]?: (receiver: TypedArray) => string | typeof Uint8Array.prototype.slice.call | typeof Uint8Array.prototype.set.call } & { __proto__: null }} */
         | 
| 10694 | 
            +
            		/** @typedef {(receiver: import('.').TypedArray) => string | typeof Uint8Array.prototype.slice.call | typeof Uint8Array.prototype.set.call} Getter */
         | 
| 10695 | 
            +
            		/** @type {{ [k in `\$${import('.').TypedArrayName}`]?: Getter } & { __proto__: null }} */
         | 
| 10697 10696 | 
             
            		var cache = { __proto__: null };
         | 
| 10698 10697 | 
             
            		if (hasToStringTag && gOPD && getPrototypeOf) {
         | 
| 10699 10698 | 
             
            			forEach(typedArrays, function (typedArray) {
         | 
| @@ -10722,13 +10721,14 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 10722 10721 | 
             
            			});
         | 
| 10723 10722 | 
             
            		}
         | 
| 10724 10723 |  | 
| 10725 | 
            -
            		/** @type {import('.')} */
         | 
| 10724 | 
            +
            		/** @type {(value: object) => false | import('.').TypedArrayName} */
         | 
| 10726 10725 | 
             
            		var tryTypedArrays = function tryAllTypedArrays(value) {
         | 
| 10727 | 
            -
            			/** @type {ReturnType<tryAllTypedArrays>} */ var found = false;
         | 
| 10726 | 
            +
            			/** @type {ReturnType<typeof tryAllTypedArrays>} */ var found = false;
         | 
| 10728 10727 | 
             
            			forEach(
         | 
| 10729 10728 | 
             
            				// eslint-disable-next-line no-extra-parens
         | 
| 10730 | 
            -
            				/** @type {Record<`\$${TypedArrayName}`,  | 
| 10731 | 
            -
            				/** @type {(getter:  | 
| 10729 | 
            +
            				/** @type {Record<`\$${TypedArrayName}`, Getter>} */ /** @type {any} */ (cache),
         | 
| 10730 | 
            +
            				/** @type {(getter: Getter, name: `\$${import('.').TypedArrayName}`) => void} */
         | 
| 10731 | 
            +
            				function (getter, typedArray) {
         | 
| 10732 10732 | 
             
            					if (!found) {
         | 
| 10733 10733 | 
             
            						try {
         | 
| 10734 10734 | 
             
            						// @ts-expect-error TODO: fix
         | 
| @@ -10742,16 +10742,16 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 10742 10742 | 
             
            			return found;
         | 
| 10743 10743 | 
             
            		};
         | 
| 10744 10744 |  | 
| 10745 | 
            -
            		/** @type {import('.')} */
         | 
| 10745 | 
            +
            		/** @type {(value: object) => false | import('.').TypedArrayName} */
         | 
| 10746 10746 | 
             
            		var trySlices = function tryAllSlices(value) {
         | 
| 10747 | 
            -
            			/** @type {ReturnType<tryAllSlices>} */ var found = false;
         | 
| 10747 | 
            +
            			/** @type {ReturnType<typeof tryAllSlices>} */ var found = false;
         | 
| 10748 10748 | 
             
            			forEach(
         | 
| 10749 10749 | 
             
            				// eslint-disable-next-line no-extra-parens
         | 
| 10750 | 
            -
            				/** @type {any} */ (cache),
         | 
| 10751 | 
            -
            				/** @type {(getter: typeof cache, name: `\$${TypedArrayName}`) => void} */ function (getter, name) {
         | 
| 10750 | 
            +
            				/** @type {Record<`\$${TypedArrayName}`, Getter>} */ /** @type {any} */ (cache),
         | 
| 10751 | 
            +
            				/** @type {(getter: typeof cache, name: `\$${import('.').TypedArrayName}`) => void} */ function (getter, name) {
         | 
| 10752 10752 | 
             
            					if (!found) {
         | 
| 10753 10753 | 
             
            						try {
         | 
| 10754 | 
            -
             | 
| 10754 | 
            +
            							// @ts-expect-error TODO: fix
         | 
| 10755 10755 | 
             
            							getter(value);
         | 
| 10756 10756 | 
             
            							found = $slice(name, 1);
         | 
| 10757 10757 | 
             
            						} catch (e) { /**/ }
         | 
| @@ -10765,6 +10765,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 10765 10765 | 
             
            		module.exports = function whichTypedArray(value) {
         | 
| 10766 10766 | 
             
            			if (!value || typeof value !== 'object') { return false; }
         | 
| 10767 10767 | 
             
            			if (!hasToStringTag) {
         | 
| 10768 | 
            +
            				/** @type {string} */
         | 
| 10768 10769 | 
             
            				var tag = $slice($toString(value), 8, -1);
         | 
| 10769 10770 | 
             
            				if ($indexOf(typedArrays, tag) > -1) {
         | 
| 10770 10771 | 
             
            					return tag;
         | 
| @@ -50404,9 +50405,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 50404 50405 | 
             
            	var $TypeError = __webpack_require__(412);
         | 
| 50405 50406 | 
             
            	var $floor = GetIntrinsic('%Math.floor%');
         | 
| 50406 50407 |  | 
| 50407 | 
            -
            	/** @ | 
| 50408 | 
            -
             | 
| 50409 | 
            -
            	/** @type {<T extends Func = Func>(fn: T, length: number, loose?: boolean) => T} */
         | 
| 50408 | 
            +
            	/** @type {import('.')} */
         | 
| 50410 50409 | 
             
            	module.exports = function setFunctionLength(fn, length) {
         | 
| 50411 50410 | 
             
            		if (typeof fn !== 'function') {
         | 
| 50412 50411 | 
             
            			throw new $TypeError('`fn` is not a function');
         | 
| @@ -50630,6 +50629,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 50630 50629 | 
             
            	var callBound = __webpack_require__(405);
         | 
| 50631 50630 | 
             
            	var gOPD = __webpack_require__(423);
         | 
| 50632 50631 |  | 
| 50632 | 
            +
            	/** @type {(O: object) => string} */
         | 
| 50633 50633 | 
             
            	var $toString = callBound('Object.prototype.toString');
         | 
| 50634 50634 | 
             
            	var hasToStringTag = __webpack_require__(403)();
         | 
| 50635 50635 |  | 
| @@ -50639,7 +50639,8 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 50639 50639 | 
             
            	var $slice = callBound('String.prototype.slice');
         | 
| 50640 50640 | 
             
            	var getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');
         | 
| 50641 50641 |  | 
| 50642 | 
            -
            	 | 
| 50642 | 
            +
            	/** @type {<T = unknown>(array: readonly T[], value: unknown) => number} */
         | 
| 50643 | 
            +
            	var $indexOf = callBound('Array.prototype.indexOf', true) || function indexOf(array, value) {
         | 
| 50643 50644 | 
             
            		for (var i = 0; i < array.length; i += 1) {
         | 
| 50644 50645 | 
             
            			if (array[i] === value) {
         | 
| 50645 50646 | 
             
            				return i;
         | 
| @@ -50648,9 +50649,8 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 50648 50649 | 
             
            		return -1;
         | 
| 50649 50650 | 
             
            	};
         | 
| 50650 50651 |  | 
| 50651 | 
            -
            	/** @typedef { | 
| 50652 | 
            -
            	/** @ | 
| 50653 | 
            -
            	/** @type {{ [k in `\$${TypedArrayName}`]?: (receiver: TypedArray) => string | typeof Uint8Array.prototype.slice.call | typeof Uint8Array.prototype.set.call } & { __proto__: null }} */
         | 
| 50652 | 
            +
            	/** @typedef {(receiver: import('.').TypedArray) => string | typeof Uint8Array.prototype.slice.call | typeof Uint8Array.prototype.set.call} Getter */
         | 
| 50653 | 
            +
            	/** @type {{ [k in `\$${import('.').TypedArrayName}`]?: Getter } & { __proto__: null }} */
         | 
| 50654 50654 | 
             
            	var cache = { __proto__: null };
         | 
| 50655 50655 | 
             
            	if (hasToStringTag && gOPD && getPrototypeOf) {
         | 
| 50656 50656 | 
             
            		forEach(typedArrays, function (typedArray) {
         | 
| @@ -50679,13 +50679,14 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 50679 50679 | 
             
            		});
         | 
| 50680 50680 | 
             
            	}
         | 
| 50681 50681 |  | 
| 50682 | 
            -
            	/** @type {import('.')} */
         | 
| 50682 | 
            +
            	/** @type {(value: object) => false | import('.').TypedArrayName} */
         | 
| 50683 50683 | 
             
            	var tryTypedArrays = function tryAllTypedArrays(value) {
         | 
| 50684 | 
            -
            		/** @type {ReturnType<tryAllTypedArrays>} */ var found = false;
         | 
| 50684 | 
            +
            		/** @type {ReturnType<typeof tryAllTypedArrays>} */ var found = false;
         | 
| 50685 50685 | 
             
            		forEach(
         | 
| 50686 50686 | 
             
            			// eslint-disable-next-line no-extra-parens
         | 
| 50687 | 
            -
            			/** @type {Record<`\$${TypedArrayName}`,  | 
| 50688 | 
            -
            			/** @type {(getter:  | 
| 50687 | 
            +
            			/** @type {Record<`\$${TypedArrayName}`, Getter>} */ /** @type {any} */ (cache),
         | 
| 50688 | 
            +
            			/** @type {(getter: Getter, name: `\$${import('.').TypedArrayName}`) => void} */
         | 
| 50689 | 
            +
            			function (getter, typedArray) {
         | 
| 50689 50690 | 
             
            				if (!found) {
         | 
| 50690 50691 | 
             
            					try {
         | 
| 50691 50692 | 
             
            					// @ts-expect-error TODO: fix
         | 
| @@ -50699,16 +50700,16 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 50699 50700 | 
             
            		return found;
         | 
| 50700 50701 | 
             
            	};
         | 
| 50701 50702 |  | 
| 50702 | 
            -
            	/** @type {import('.')} */
         | 
| 50703 | 
            +
            	/** @type {(value: object) => false | import('.').TypedArrayName} */
         | 
| 50703 50704 | 
             
            	var trySlices = function tryAllSlices(value) {
         | 
| 50704 | 
            -
            		/** @type {ReturnType<tryAllSlices>} */ var found = false;
         | 
| 50705 | 
            +
            		/** @type {ReturnType<typeof tryAllSlices>} */ var found = false;
         | 
| 50705 50706 | 
             
            		forEach(
         | 
| 50706 50707 | 
             
            			// eslint-disable-next-line no-extra-parens
         | 
| 50707 | 
            -
            			/** @type {any} */ (cache),
         | 
| 50708 | 
            -
            			/** @type {(getter: typeof cache, name: `\$${TypedArrayName}`) => void} */ function (getter, name) {
         | 
| 50708 | 
            +
            			/** @type {Record<`\$${TypedArrayName}`, Getter>} */ /** @type {any} */ (cache),
         | 
| 50709 | 
            +
            			/** @type {(getter: typeof cache, name: `\$${import('.').TypedArrayName}`) => void} */ function (getter, name) {
         | 
| 50709 50710 | 
             
            				if (!found) {
         | 
| 50710 50711 | 
             
            					try {
         | 
| 50711 | 
            -
             | 
| 50712 | 
            +
            						// @ts-expect-error TODO: fix
         | 
| 50712 50713 | 
             
            						getter(value);
         | 
| 50713 50714 | 
             
            						found = $slice(name, 1);
         | 
| 50714 50715 | 
             
            					} catch (e) { /**/ }
         | 
| @@ -50722,6 +50723,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 50722 50723 | 
             
            	module.exports = function whichTypedArray(value) {
         | 
| 50723 50724 | 
             
            		if (!value || typeof value !== 'object') { return false; }
         | 
| 50724 50725 | 
             
            		if (!hasToStringTag) {
         | 
| 50726 | 
            +
            			/** @type {string} */
         | 
| 50725 50727 | 
             
            			var tag = $slice($toString(value), 8, -1);
         | 
| 50726 50728 | 
             
            			if ($indexOf(typedArrays, tag) > -1) {
         | 
| 50727 50729 | 
             
            				return tag;
         | 
| @@ -59807,7 +59809,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 59807 59809 | 
             
            /* 910 */
         | 
| 59808 59810 | 
             
            /***/ (function(module, exports) {
         | 
| 59809 59811 |  | 
| 59810 | 
            -
            	module.exports = {"version":"2.0","metadata":{"apiVersion":"2019-12-01","endpointPrefix":"codestar-connections","jsonVersion":"1.0","protocol":"json","serviceFullName":"AWS CodeStar connections","serviceId":"CodeStar connections","signatureVersion":"v4","signingName":"codestar-connections","targetPrefix":"com.amazonaws.codestar.connections.CodeStar_connections_20191201","uid":"codestar-connections-2019-12-01"},"operations":{"CreateConnection":{"input":{"type":"structure","required":["ConnectionName"],"members":{"ProviderType":{},"ConnectionName":{},"Tags":{"shape":"S4"},"HostArn":{}}},"output":{"type":"structure","required":["ConnectionArn"],"members":{"ConnectionArn":{},"Tags":{"shape":"S4"}}}},"CreateHost":{"input":{"type":"structure","required":["Name","ProviderType","ProviderEndpoint"],"members":{"Name":{},"ProviderType":{},"ProviderEndpoint":{},"VpcConfiguration":{"shape":"Se"},"Tags":{"shape":"S4"}}},"output":{"type":"structure","members":{"HostArn":{},"Tags":{"shape":"S4"}}}},"CreateRepositoryLink":{"input":{"type":"structure","required":["ConnectionArn","OwnerId","RepositoryName"],"members":{"ConnectionArn":{},"OwnerId":{},"RepositoryName":{},"EncryptionKeyArn":{},"Tags":{"shape":"S4"}}},"output":{"type":"structure","required":["RepositoryLinkInfo"],"members":{"RepositoryLinkInfo":{"shape":"Sr"}}}},"CreateSyncConfiguration":{"input":{"type":"structure","required":["Branch","ConfigFile","RepositoryLinkId","ResourceName","RoleArn","SyncType"],"members":{"Branch":{},"ConfigFile":{},"RepositoryLinkId":{},"ResourceName":{},"RoleArn":{},"SyncType":{}}},"output":{"type":"structure","required":["SyncConfiguration"],"members":{"SyncConfiguration":{"shape":" | 
| 59812 | 
            +
            	module.exports = {"version":"2.0","metadata":{"apiVersion":"2019-12-01","endpointPrefix":"codestar-connections","jsonVersion":"1.0","protocol":"json","serviceFullName":"AWS CodeStar connections","serviceId":"CodeStar connections","signatureVersion":"v4","signingName":"codestar-connections","targetPrefix":"com.amazonaws.codestar.connections.CodeStar_connections_20191201","uid":"codestar-connections-2019-12-01"},"operations":{"CreateConnection":{"input":{"type":"structure","required":["ConnectionName"],"members":{"ProviderType":{},"ConnectionName":{},"Tags":{"shape":"S4"},"HostArn":{}}},"output":{"type":"structure","required":["ConnectionArn"],"members":{"ConnectionArn":{},"Tags":{"shape":"S4"}}}},"CreateHost":{"input":{"type":"structure","required":["Name","ProviderType","ProviderEndpoint"],"members":{"Name":{},"ProviderType":{},"ProviderEndpoint":{},"VpcConfiguration":{"shape":"Se"},"Tags":{"shape":"S4"}}},"output":{"type":"structure","members":{"HostArn":{},"Tags":{"shape":"S4"}}}},"CreateRepositoryLink":{"input":{"type":"structure","required":["ConnectionArn","OwnerId","RepositoryName"],"members":{"ConnectionArn":{},"OwnerId":{},"RepositoryName":{},"EncryptionKeyArn":{},"Tags":{"shape":"S4"}}},"output":{"type":"structure","required":["RepositoryLinkInfo"],"members":{"RepositoryLinkInfo":{"shape":"Sr"}}}},"CreateSyncConfiguration":{"input":{"type":"structure","required":["Branch","ConfigFile","RepositoryLinkId","ResourceName","RoleArn","SyncType"],"members":{"Branch":{},"ConfigFile":{},"RepositoryLinkId":{},"ResourceName":{},"RoleArn":{},"SyncType":{},"PublishDeploymentStatus":{},"TriggerResourceUpdateOn":{}}},"output":{"type":"structure","required":["SyncConfiguration"],"members":{"SyncConfiguration":{"shape":"S13"}}}},"DeleteConnection":{"input":{"type":"structure","required":["ConnectionArn"],"members":{"ConnectionArn":{}}},"output":{"type":"structure","members":{}}},"DeleteHost":{"input":{"type":"structure","required":["HostArn"],"members":{"HostArn":{}}},"output":{"type":"structure","members":{}}},"DeleteRepositoryLink":{"input":{"type":"structure","required":["RepositoryLinkId"],"members":{"RepositoryLinkId":{}}},"output":{"type":"structure","members":{}}},"DeleteSyncConfiguration":{"input":{"type":"structure","required":["SyncType","ResourceName"],"members":{"SyncType":{},"ResourceName":{}}},"output":{"type":"structure","members":{}}},"GetConnection":{"input":{"type":"structure","required":["ConnectionArn"],"members":{"ConnectionArn":{}}},"output":{"type":"structure","members":{"Connection":{"shape":"S1e"}}}},"GetHost":{"input":{"type":"structure","required":["HostArn"],"members":{"HostArn":{}}},"output":{"type":"structure","members":{"Name":{},"Status":{},"ProviderType":{},"ProviderEndpoint":{},"VpcConfiguration":{"shape":"Se"}}}},"GetRepositoryLink":{"input":{"type":"structure","required":["RepositoryLinkId"],"members":{"RepositoryLinkId":{}}},"output":{"type":"structure","required":["RepositoryLinkInfo"],"members":{"RepositoryLinkInfo":{"shape":"Sr"}}}},"GetRepositorySyncStatus":{"input":{"type":"structure","required":["Branch","RepositoryLinkId","SyncType"],"members":{"Branch":{},"RepositoryLinkId":{},"SyncType":{}}},"output":{"type":"structure","required":["LatestSync"],"members":{"LatestSync":{"type":"structure","required":["StartedAt","Status","Events"],"members":{"StartedAt":{"type":"timestamp"},"Status":{},"Events":{"type":"list","member":{"type":"structure","required":["Event","Time","Type"],"members":{"Event":{},"ExternalId":{},"Time":{"type":"timestamp"},"Type":{}}}}}}}}},"GetResourceSyncStatus":{"input":{"type":"structure","required":["ResourceName","SyncType"],"members":{"ResourceName":{},"SyncType":{}}},"output":{"type":"structure","required":["LatestSync"],"members":{"DesiredState":{"shape":"S1y"},"LatestSuccessfulSync":{"shape":"S21"},"LatestSync":{"shape":"S21"}}}},"GetSyncBlockerSummary":{"input":{"type":"structure","required":["SyncType","ResourceName"],"members":{"SyncType":{},"ResourceName":{}}},"output":{"type":"structure","required":["SyncBlockerSummary"],"members":{"SyncBlockerSummary":{"type":"structure","required":["ResourceName"],"members":{"ResourceName":{},"ParentResourceName":{},"LatestBlockers":{"type":"list","member":{"shape":"S2a"}}}}}}},"GetSyncConfiguration":{"input":{"type":"structure","required":["SyncType","ResourceName"],"members":{"SyncType":{},"ResourceName":{}}},"output":{"type":"structure","required":["SyncConfiguration"],"members":{"SyncConfiguration":{"shape":"S13"}}}},"ListConnections":{"input":{"type":"structure","members":{"ProviderTypeFilter":{},"HostArnFilter":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"Connections":{"type":"list","member":{"shape":"S1e"}},"NextToken":{}}}},"ListHosts":{"input":{"type":"structure","members":{"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"Hosts":{"type":"list","member":{"type":"structure","members":{"Name":{},"HostArn":{},"ProviderType":{},"ProviderEndpoint":{},"VpcConfiguration":{"shape":"Se"},"Status":{},"StatusMessage":{}}}},"NextToken":{}}}},"ListRepositoryLinks":{"input":{"type":"structure","members":{"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","required":["RepositoryLinks"],"members":{"RepositoryLinks":{"type":"list","member":{"shape":"Sr"}},"NextToken":{}}}},"ListRepositorySyncDefinitions":{"input":{"type":"structure","required":["RepositoryLinkId","SyncType"],"members":{"RepositoryLinkId":{},"SyncType":{}}},"output":{"type":"structure","required":["RepositorySyncDefinitions"],"members":{"RepositorySyncDefinitions":{"type":"list","member":{"type":"structure","required":["Branch","Directory","Parent","Target"],"members":{"Branch":{},"Directory":{},"Parent":{},"Target":{}}}},"NextToken":{}}}},"ListSyncConfigurations":{"input":{"type":"structure","required":["RepositoryLinkId","SyncType"],"members":{"MaxResults":{"type":"integer"},"NextToken":{},"RepositoryLinkId":{},"SyncType":{}}},"output":{"type":"structure","required":["SyncConfigurations"],"members":{"SyncConfigurations":{"type":"list","member":{"shape":"S13"}},"NextToken":{}}}},"ListTagsForResource":{"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{}}},"output":{"type":"structure","members":{"Tags":{"shape":"S4"}}}},"TagResource":{"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{},"Tags":{"shape":"S4"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{},"TagKeys":{"type":"list","member":{}}}},"output":{"type":"structure","members":{}}},"UpdateHost":{"input":{"type":"structure","required":["HostArn"],"members":{"HostArn":{},"ProviderEndpoint":{},"VpcConfiguration":{"shape":"Se"}}},"output":{"type":"structure","members":{}}},"UpdateRepositoryLink":{"input":{"type":"structure","required":["RepositoryLinkId"],"members":{"ConnectionArn":{},"EncryptionKeyArn":{},"RepositoryLinkId":{}}},"output":{"type":"structure","required":["RepositoryLinkInfo"],"members":{"RepositoryLinkInfo":{"shape":"Sr"}}}},"UpdateSyncBlocker":{"input":{"type":"structure","required":["Id","SyncType","ResourceName","ResolvedReason"],"members":{"Id":{},"SyncType":{},"ResourceName":{},"ResolvedReason":{}}},"output":{"type":"structure","required":["ResourceName","SyncBlocker"],"members":{"ResourceName":{},"ParentResourceName":{},"SyncBlocker":{"shape":"S2a"}}}},"UpdateSyncConfiguration":{"input":{"type":"structure","required":["ResourceName","SyncType"],"members":{"Branch":{},"ConfigFile":{},"RepositoryLinkId":{},"ResourceName":{},"RoleArn":{},"SyncType":{},"PublishDeploymentStatus":{},"TriggerResourceUpdateOn":{}}},"output":{"type":"structure","required":["SyncConfiguration"],"members":{"SyncConfiguration":{"shape":"S13"}}}}},"shapes":{"S4":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{},"Value":{}}}},"Se":{"type":"structure","required":["VpcId","SubnetIds","SecurityGroupIds"],"members":{"VpcId":{},"SubnetIds":{"type":"list","member":{}},"SecurityGroupIds":{"type":"list","member":{}},"TlsCertificate":{}}},"Sr":{"type":"structure","required":["ConnectionArn","OwnerId","ProviderType","RepositoryLinkArn","RepositoryLinkId","RepositoryName"],"members":{"ConnectionArn":{},"EncryptionKeyArn":{},"OwnerId":{},"ProviderType":{},"RepositoryLinkArn":{},"RepositoryLinkId":{},"RepositoryName":{}}},"S13":{"type":"structure","required":["Branch","OwnerId","ProviderType","RepositoryLinkId","RepositoryName","ResourceName","RoleArn","SyncType"],"members":{"Branch":{},"ConfigFile":{},"OwnerId":{},"ProviderType":{},"RepositoryLinkId":{},"RepositoryName":{},"ResourceName":{},"RoleArn":{},"SyncType":{},"PublishDeploymentStatus":{},"TriggerResourceUpdateOn":{}}},"S1e":{"type":"structure","members":{"ConnectionName":{},"ConnectionArn":{},"ProviderType":{},"OwnerAccountId":{},"ConnectionStatus":{},"HostArn":{}}},"S1y":{"type":"structure","required":["Branch","Directory","OwnerId","RepositoryName","ProviderType","Sha"],"members":{"Branch":{},"Directory":{},"OwnerId":{},"RepositoryName":{},"ProviderType":{},"Sha":{}}},"S21":{"type":"structure","required":["Events","InitialRevision","StartedAt","Status","TargetRevision","Target"],"members":{"Events":{"type":"list","member":{"type":"structure","required":["Event","Time","Type"],"members":{"Event":{},"ExternalId":{},"Time":{"type":"timestamp"},"Type":{}}}},"InitialRevision":{"shape":"S1y"},"StartedAt":{"type":"timestamp"},"Status":{},"TargetRevision":{"shape":"S1y"},"Target":{}}},"S2a":{"type":"structure","required":["Id","Type","Status","CreatedReason","CreatedAt"],"members":{"Id":{},"Type":{},"Status":{},"CreatedReason":{},"CreatedAt":{"type":"timestamp"},"Contexts":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{},"Value":{}}}},"ResolvedReason":{},"ResolvedAt":{"type":"timestamp"}}}}}
         | 
| 59811 59813 |  | 
| 59812 59814 | 
             
            /***/ }),
         | 
| 59813 59815 | 
             
            /* 911 */
         | 
| @@ -64448,7 +64450,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 64448 64450 | 
             
            /* 1305 */
         | 
| 64449 64451 | 
             
            /***/ (function(module, exports) {
         | 
| 64450 64452 |  | 
| 64451 | 
            -
            	module.exports = {"version":"2.0","metadata":{"apiVersion":"2022-12-25","endpointPrefix":"mediapackagev2","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"mediapackagev2","serviceFullName":"AWS Elemental MediaPackage v2","serviceId":"MediaPackageV2","signatureVersion":"v4","signingName":"mediapackagev2","uid":"mediapackagev2-2022-12-25"},"operations":{"CreateChannel":{"http":{"requestUri":"/channelGroup/{ChannelGroupName}/channel","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{},"ClientToken":{"idempotencyToken":true,"location":"header","locationName":"x-amzn-client-token"},"Description":{},"Tags":{"shape":"S5","locationName":"tags"}}},"output":{"type":"structure","required":["Arn","ChannelName","ChannelGroupName","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelName":{},"ChannelGroupName":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"IngestEndpoints":{"shape":"Sb"},"Tags":{"shape":"S5"}}},"idempotent":true},"CreateChannelGroup":{"http":{"requestUri":"/channelGroup","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName"],"members":{"ChannelGroupName":{},"ClientToken":{"idempotencyToken":true,"location":"header","locationName":"x-amzn-client-token"},"Description":{},"Tags":{"shape":"S5","locationName":"tags"}}},"output":{"type":"structure","required":["ChannelGroupName","Arn","EgressDomain","CreatedAt","ModifiedAt"],"members":{"ChannelGroupName":{},"Arn":{},"EgressDomain":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"Tags":{"shape":"S5"}}},"idempotent":true},"CreateOriginEndpoint":{"http":{"requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName","ContainerType"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{},"ContainerType":{},"Segment":{"shape":"Sh"},"ClientToken":{"idempotencyToken":true,"location":"header","locationName":"x-amzn-client-token"},"Description":{},"StartoverWindowSeconds":{"type":"integer"},"HlsManifests":{"shape":"S14"},"LowLatencyHlsManifests":{"shape":"S1e"},"Tags":{"shape":"S5"}}},"output":{"type":"structure","required":["Arn","ChannelGroupName","ChannelName","OriginEndpointName","ContainerType","Segment","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelGroupName":{},"ChannelName":{},"OriginEndpointName":{},"ContainerType":{},"Segment":{"shape":"Sh"},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"StartoverWindowSeconds":{"type":"integer"},"HlsManifests":{"shape":"S1k"},"LowLatencyHlsManifests":{"shape":"S1m"},"Tags":{"shape":"S5"}}},"idempotent":true},"DeleteChannel":{"http":{"method":"DELETE","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteChannelGroup":{"http":{"method":"DELETE","requestUri":"/channelGroup/{ChannelGroupName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteChannelPolicy":{"http":{"method":"DELETE","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteOriginEndpoint":{"http":{"method":"DELETE","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteOriginEndpointPolicy":{"http":{"method":"DELETE","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"}}},"output":{"type":"structure","members":{}},"idempotent":true},"GetChannel":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"}}},"output":{"type":"structure","required":["Arn","ChannelName","ChannelGroupName","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelName":{},"ChannelGroupName":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"IngestEndpoints":{"shape":"Sb"},"Tags":{"shape":"S5"}}}},"GetChannelGroup":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"}}},"output":{"type":"structure","required":["ChannelGroupName","Arn","EgressDomain","CreatedAt","ModifiedAt"],"members":{"ChannelGroupName":{},"Arn":{},"EgressDomain":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"Tags":{"shape":"S5","locationName":"tags"}}}},"GetChannelPolicy":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"}}},"output":{"type":"structure","required":["ChannelGroupName","ChannelName","Policy"],"members":{"ChannelGroupName":{},"ChannelName":{},"Policy":{}}}},"GetOriginEndpoint":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"}}},"output":{"type":"structure","required":["Arn","ChannelGroupName","ChannelName","OriginEndpointName","ContainerType","Segment","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelGroupName":{},"ChannelName":{},"OriginEndpointName":{},"ContainerType":{},"Segment":{"shape":"Sh"},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"StartoverWindowSeconds":{"type":"integer"},"HlsManifests":{"shape":"S1k"},"LowLatencyHlsManifests":{"shape":"S1m"},"Tags":{"shape":"S5"}}}},"GetOriginEndpointPolicy":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"}}},"output":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName","Policy"],"members":{"ChannelGroupName":{},"ChannelName":{},"OriginEndpointName":{},"Policy":{}}}},"ListChannelGroups":{"http":{"method":"GET","requestUri":"/channelGroup","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"Items":{"type":"list","member":{"type":"structure","required":["ChannelGroupName","Arn","CreatedAt","ModifiedAt"],"members":{"ChannelGroupName":{},"Arn":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{}}}},"NextToken":{}}}},"ListChannels":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"Items":{"type":"list","member":{"type":"structure","required":["Arn","ChannelName","ChannelGroupName","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelName":{},"ChannelGroupName":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{}}}},"NextToken":{}}}},"ListOriginEndpoints":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"Items":{"type":"list","member":{"type":"structure","required":["Arn","ChannelGroupName","ChannelName","OriginEndpointName","ContainerType"],"members":{"Arn":{},"ChannelGroupName":{},"ChannelName":{},"OriginEndpointName":{},"ContainerType":{},"Description":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"HlsManifests":{"type":"list","member":{"type":"structure","required":["ManifestName"],"members":{"ManifestName":{},"ChildManifestName":{},"Url":{}}}},"LowLatencyHlsManifests":{"type":"list","member":{"type":"structure","required":["ManifestName"],"members":{"ManifestName":{},"ChildManifestName":{},"Url":{}}}}}}},"NextToken":{}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{ResourceArn}","responseCode":200},"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"}}},"output":{"type":"structure","members":{"Tags":{"shape":"S5","locationName":"tags"}}}},"PutChannelPolicy":{"http":{"method":"PUT","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","Policy"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"Policy":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"PutOriginEndpointPolicy":{"http":{"requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName","Policy"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"},"Policy":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"TagResource":{"http":{"requestUri":"/tags/{ResourceArn}","responseCode":204},"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"},"Tags":{"shape":"S5","locationName":"tags"}}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{ResourceArn}","responseCode":204},"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"},"TagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"idempotent":true},"UpdateChannel":{"http":{"method":"PUT","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"Description":{}}},"output":{"type":"structure","required":["Arn","ChannelName","ChannelGroupName","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelName":{},"ChannelGroupName":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"IngestEndpoints":{"shape":"Sb"},"Tags":{"shape":"S5","locationName":"tags"}}},"idempotent":true},"UpdateChannelGroup":{"http":{"method":"PUT","requestUri":"/channelGroup/{ChannelGroupName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"Description":{}}},"output":{"type":"structure","required":["ChannelGroupName","Arn","EgressDomain","CreatedAt","ModifiedAt"],"members":{"ChannelGroupName":{},"Arn":{},"EgressDomain":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"Tags":{"shape":"S5","locationName":"tags"}}},"idempotent":true},"UpdateOriginEndpoint":{"http":{"method":"PUT","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName","ContainerType"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"},"ContainerType":{},"Segment":{"shape":"Sh"},"Description":{},"StartoverWindowSeconds":{"type":"integer"},"HlsManifests":{"shape":"S14"},"LowLatencyHlsManifests":{"shape":"S1e"}}},"output":{"type":"structure","required":["Arn","ChannelGroupName","ChannelName","OriginEndpointName","ContainerType","Segment","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelGroupName":{},"ChannelName":{},"OriginEndpointName":{},"ContainerType":{},"Segment":{"shape":"Sh"},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"StartoverWindowSeconds":{"type":"integer"},"HlsManifests":{"shape":"S1k"},"LowLatencyHlsManifests":{"shape":"S1m"},"Tags":{"shape":"S5","locationName":"tags"}}},"idempotent":true}},"shapes":{"S5":{"type":"map","key":{},"value":{}},"Sb":{"type":"list","member":{"type":"structure","members":{"Id":{},"Url":{}}}},"Sh":{"type":"structure","members":{"SegmentDurationSeconds":{"type":"integer"},"SegmentName":{},"TsUseAudioRenditionGroup":{"type":"boolean"},"IncludeIframeOnlyStreams":{"type":"boolean"},"TsIncludeDvbSubtitles":{"type":"boolean"},"Scte":{"type":"structure","members":{"ScteFilter":{"type":"list","member":{}}}},"Encryption":{"type":"structure","required":["EncryptionMethod","SpekeKeyProvider"],"members":{"ConstantInitializationVector":{},"EncryptionMethod":{"type":"structure","members":{"TsEncryptionMethod":{},"CmafEncryptionMethod":{}}},"KeyRotationIntervalSeconds":{"type":"integer"},"SpekeKeyProvider":{"type":"structure","required":["EncryptionContractConfiguration","ResourceId","DrmSystems","RoleArn","Url"],"members":{"EncryptionContractConfiguration":{"type":"structure","required":["PresetSpeke20Audio","PresetSpeke20Video"],"members":{"PresetSpeke20Audio":{},"PresetSpeke20Video":{}}},"ResourceId":{},"DrmSystems":{"type":"list","member":{}},"RoleArn":{},"Url":{}}}}}}},"S14":{"type":"list","member":{"type":"structure","required":["ManifestName"],"members":{"ManifestName":{},"ChildManifestName":{},"ScteHls":{"shape":"S17"},"ManifestWindowSeconds":{"type":"integer"},"ProgramDateTimeIntervalSeconds":{"type":"integer"},"FilterConfiguration":{"shape":"S1b"}}}},"S17":{"type":"structure","members":{"AdMarkerHls":{}}},"S1b":{"type":"structure","members":{"ManifestFilter":{},"Start":{"type":"timestamp"},"End":{"type":"timestamp"},"TimeDelaySeconds":{"type":"integer"}}},"S1e":{"type":"list","member":{"type":"structure","required":["ManifestName"],"members":{"ManifestName":{},"ChildManifestName":{},"ScteHls":{"shape":"S17"},"ManifestWindowSeconds":{"type":"integer"},"ProgramDateTimeIntervalSeconds":{"type":"integer"},"FilterConfiguration":{"shape":"S1b"}}}},"S1k":{"type":"list","member":{"type":"structure","required":["ManifestName","Url"],"members":{"ManifestName":{},"Url":{},"ChildManifestName":{},"ManifestWindowSeconds":{"type":"integer"},"ProgramDateTimeIntervalSeconds":{"type":"integer"},"ScteHls":{"shape":"S17"},"FilterConfiguration":{"shape":"S1b"}}}},"S1m":{"type":"list","member":{"type":"structure","required":["ManifestName","Url"],"members":{"ManifestName":{},"Url":{},"ChildManifestName":{},"ManifestWindowSeconds":{"type":"integer"},"ProgramDateTimeIntervalSeconds":{"type":"integer"},"ScteHls":{"shape":"S17"},"FilterConfiguration":{"shape":"S1b"}}}}}}
         | 
| 64453 | 
            +
            	module.exports = {"version":"2.0","metadata":{"apiVersion":"2022-12-25","endpointPrefix":"mediapackagev2","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"mediapackagev2","serviceFullName":"AWS Elemental MediaPackage v2","serviceId":"MediaPackageV2","signatureVersion":"v4","signingName":"mediapackagev2","uid":"mediapackagev2-2022-12-25"},"operations":{"CreateChannel":{"http":{"requestUri":"/channelGroup/{ChannelGroupName}/channel","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{},"ClientToken":{"idempotencyToken":true,"location":"header","locationName":"x-amzn-client-token"},"Description":{},"Tags":{"shape":"S5","locationName":"tags"}}},"output":{"type":"structure","required":["Arn","ChannelName","ChannelGroupName","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelName":{},"ChannelGroupName":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"IngestEndpoints":{"shape":"Sb"},"ETag":{},"Tags":{"shape":"S5"}}},"idempotent":true},"CreateChannelGroup":{"http":{"requestUri":"/channelGroup","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName"],"members":{"ChannelGroupName":{},"ClientToken":{"idempotencyToken":true,"location":"header","locationName":"x-amzn-client-token"},"Description":{},"Tags":{"shape":"S5","locationName":"tags"}}},"output":{"type":"structure","required":["ChannelGroupName","Arn","EgressDomain","CreatedAt","ModifiedAt"],"members":{"ChannelGroupName":{},"Arn":{},"EgressDomain":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"ETag":{},"Description":{},"Tags":{"shape":"S5"}}},"idempotent":true},"CreateOriginEndpoint":{"http":{"requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName","ContainerType"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{},"ContainerType":{},"Segment":{"shape":"Si"},"ClientToken":{"idempotencyToken":true,"location":"header","locationName":"x-amzn-client-token"},"Description":{},"StartoverWindowSeconds":{"type":"integer"},"HlsManifests":{"shape":"S15"},"LowLatencyHlsManifests":{"shape":"S1f"},"Tags":{"shape":"S5"}}},"output":{"type":"structure","required":["Arn","ChannelGroupName","ChannelName","OriginEndpointName","ContainerType","Segment","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelGroupName":{},"ChannelName":{},"OriginEndpointName":{},"ContainerType":{},"Segment":{"shape":"Si"},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"StartoverWindowSeconds":{"type":"integer"},"HlsManifests":{"shape":"S1l"},"LowLatencyHlsManifests":{"shape":"S1n"},"ETag":{},"Tags":{"shape":"S5"}}},"idempotent":true},"DeleteChannel":{"http":{"method":"DELETE","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteChannelGroup":{"http":{"method":"DELETE","requestUri":"/channelGroup/{ChannelGroupName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteChannelPolicy":{"http":{"method":"DELETE","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteOriginEndpoint":{"http":{"method":"DELETE","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteOriginEndpointPolicy":{"http":{"method":"DELETE","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"}}},"output":{"type":"structure","members":{}},"idempotent":true},"GetChannel":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"}}},"output":{"type":"structure","required":["Arn","ChannelName","ChannelGroupName","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelName":{},"ChannelGroupName":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"IngestEndpoints":{"shape":"Sb"},"ETag":{},"Tags":{"shape":"S5"}}}},"GetChannelGroup":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"}}},"output":{"type":"structure","required":["ChannelGroupName","Arn","EgressDomain","CreatedAt","ModifiedAt"],"members":{"ChannelGroupName":{},"Arn":{},"EgressDomain":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"ETag":{},"Tags":{"shape":"S5","locationName":"tags"}}}},"GetChannelPolicy":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"}}},"output":{"type":"structure","required":["ChannelGroupName","ChannelName","Policy"],"members":{"ChannelGroupName":{},"ChannelName":{},"Policy":{}}}},"GetOriginEndpoint":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"}}},"output":{"type":"structure","required":["Arn","ChannelGroupName","ChannelName","OriginEndpointName","ContainerType","Segment","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelGroupName":{},"ChannelName":{},"OriginEndpointName":{},"ContainerType":{},"Segment":{"shape":"Si"},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"StartoverWindowSeconds":{"type":"integer"},"HlsManifests":{"shape":"S1l"},"LowLatencyHlsManifests":{"shape":"S1n"},"ETag":{},"Tags":{"shape":"S5"}}}},"GetOriginEndpointPolicy":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"}}},"output":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName","Policy"],"members":{"ChannelGroupName":{},"ChannelName":{},"OriginEndpointName":{},"Policy":{}}}},"ListChannelGroups":{"http":{"method":"GET","requestUri":"/channelGroup","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"Items":{"type":"list","member":{"type":"structure","required":["ChannelGroupName","Arn","CreatedAt","ModifiedAt"],"members":{"ChannelGroupName":{},"Arn":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{}}}},"NextToken":{}}}},"ListChannels":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"Items":{"type":"list","member":{"type":"structure","required":["Arn","ChannelName","ChannelGroupName","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelName":{},"ChannelGroupName":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{}}}},"NextToken":{}}}},"ListOriginEndpoints":{"http":{"method":"GET","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"Items":{"type":"list","member":{"type":"structure","required":["Arn","ChannelGroupName","ChannelName","OriginEndpointName","ContainerType"],"members":{"Arn":{},"ChannelGroupName":{},"ChannelName":{},"OriginEndpointName":{},"ContainerType":{},"Description":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"HlsManifests":{"type":"list","member":{"type":"structure","required":["ManifestName"],"members":{"ManifestName":{},"ChildManifestName":{},"Url":{}}}},"LowLatencyHlsManifests":{"type":"list","member":{"type":"structure","required":["ManifestName"],"members":{"ManifestName":{},"ChildManifestName":{},"Url":{}}}}}}},"NextToken":{}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{ResourceArn}","responseCode":200},"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"}}},"output":{"type":"structure","members":{"Tags":{"shape":"S5","locationName":"tags"}}}},"PutChannelPolicy":{"http":{"method":"PUT","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","Policy"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"Policy":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"PutOriginEndpointPolicy":{"http":{"requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}/policy","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName","Policy"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"},"Policy":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"TagResource":{"http":{"requestUri":"/tags/{ResourceArn}","responseCode":204},"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"},"Tags":{"shape":"S5","locationName":"tags"}}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{ResourceArn}","responseCode":204},"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"},"TagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"idempotent":true},"UpdateChannel":{"http":{"method":"PUT","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"ETag":{"location":"header","locationName":"x-amzn-update-if-match"},"Description":{}}},"output":{"type":"structure","required":["Arn","ChannelName","ChannelGroupName","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelName":{},"ChannelGroupName":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"IngestEndpoints":{"shape":"Sb"},"ETag":{},"Tags":{"shape":"S5","locationName":"tags"}}},"idempotent":true},"UpdateChannelGroup":{"http":{"method":"PUT","requestUri":"/channelGroup/{ChannelGroupName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ETag":{"location":"header","locationName":"x-amzn-update-if-match"},"Description":{}}},"output":{"type":"structure","required":["ChannelGroupName","Arn","EgressDomain","CreatedAt","ModifiedAt"],"members":{"ChannelGroupName":{},"Arn":{},"EgressDomain":{},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"ETag":{},"Tags":{"shape":"S5","locationName":"tags"}}},"idempotent":true},"UpdateOriginEndpoint":{"http":{"method":"PUT","requestUri":"/channelGroup/{ChannelGroupName}/channel/{ChannelName}/originEndpoint/{OriginEndpointName}","responseCode":200},"input":{"type":"structure","required":["ChannelGroupName","ChannelName","OriginEndpointName","ContainerType"],"members":{"ChannelGroupName":{"location":"uri","locationName":"ChannelGroupName"},"ChannelName":{"location":"uri","locationName":"ChannelName"},"OriginEndpointName":{"location":"uri","locationName":"OriginEndpointName"},"ContainerType":{},"Segment":{"shape":"Si"},"Description":{},"StartoverWindowSeconds":{"type":"integer"},"HlsManifests":{"shape":"S15"},"LowLatencyHlsManifests":{"shape":"S1f"},"ETag":{"location":"header","locationName":"x-amzn-update-if-match"}}},"output":{"type":"structure","required":["Arn","ChannelGroupName","ChannelName","OriginEndpointName","ContainerType","Segment","CreatedAt","ModifiedAt"],"members":{"Arn":{},"ChannelGroupName":{},"ChannelName":{},"OriginEndpointName":{},"ContainerType":{},"Segment":{"shape":"Si"},"CreatedAt":{"type":"timestamp"},"ModifiedAt":{"type":"timestamp"},"Description":{},"StartoverWindowSeconds":{"type":"integer"},"HlsManifests":{"shape":"S1l"},"LowLatencyHlsManifests":{"shape":"S1n"},"ETag":{},"Tags":{"shape":"S5","locationName":"tags"}}},"idempotent":true}},"shapes":{"S5":{"type":"map","key":{},"value":{}},"Sb":{"type":"list","member":{"type":"structure","members":{"Id":{},"Url":{}}}},"Si":{"type":"structure","members":{"SegmentDurationSeconds":{"type":"integer"},"SegmentName":{},"TsUseAudioRenditionGroup":{"type":"boolean"},"IncludeIframeOnlyStreams":{"type":"boolean"},"TsIncludeDvbSubtitles":{"type":"boolean"},"Scte":{"type":"structure","members":{"ScteFilter":{"type":"list","member":{}}}},"Encryption":{"type":"structure","required":["EncryptionMethod","SpekeKeyProvider"],"members":{"ConstantInitializationVector":{},"EncryptionMethod":{"type":"structure","members":{"TsEncryptionMethod":{},"CmafEncryptionMethod":{}}},"KeyRotationIntervalSeconds":{"type":"integer"},"SpekeKeyProvider":{"type":"structure","required":["EncryptionContractConfiguration","ResourceId","DrmSystems","RoleArn","Url"],"members":{"EncryptionContractConfiguration":{"type":"structure","required":["PresetSpeke20Audio","PresetSpeke20Video"],"members":{"PresetSpeke20Audio":{},"PresetSpeke20Video":{}}},"ResourceId":{},"DrmSystems":{"type":"list","member":{}},"RoleArn":{},"Url":{}}}}}}},"S15":{"type":"list","member":{"type":"structure","required":["ManifestName"],"members":{"ManifestName":{},"ChildManifestName":{},"ScteHls":{"shape":"S18"},"ManifestWindowSeconds":{"type":"integer"},"ProgramDateTimeIntervalSeconds":{"type":"integer"},"FilterConfiguration":{"shape":"S1c"}}}},"S18":{"type":"structure","members":{"AdMarkerHls":{}}},"S1c":{"type":"structure","members":{"ManifestFilter":{},"Start":{"type":"timestamp"},"End":{"type":"timestamp"},"TimeDelaySeconds":{"type":"integer"}}},"S1f":{"type":"list","member":{"type":"structure","required":["ManifestName"],"members":{"ManifestName":{},"ChildManifestName":{},"ScteHls":{"shape":"S18"},"ManifestWindowSeconds":{"type":"integer"},"ProgramDateTimeIntervalSeconds":{"type":"integer"},"FilterConfiguration":{"shape":"S1c"}}}},"S1l":{"type":"list","member":{"type":"structure","required":["ManifestName","Url"],"members":{"ManifestName":{},"Url":{},"ChildManifestName":{},"ManifestWindowSeconds":{"type":"integer"},"ProgramDateTimeIntervalSeconds":{"type":"integer"},"ScteHls":{"shape":"S18"},"FilterConfiguration":{"shape":"S1c"}}}},"S1n":{"type":"list","member":{"type":"structure","required":["ManifestName","Url"],"members":{"ManifestName":{},"Url":{},"ChildManifestName":{},"ManifestWindowSeconds":{"type":"integer"},"ProgramDateTimeIntervalSeconds":{"type":"integer"},"ScteHls":{"shape":"S18"},"FilterConfiguration":{"shape":"S1c"}}}}}}
         | 
| 64452 64454 |  | 
| 64453 64455 | 
             
            /***/ }),
         | 
| 64454 64456 | 
             
            /* 1306 */
         | 
| @@ -1,4 +1,4 @@ | |
| 1 | 
            -
            // AWS SDK for JavaScript v2. | 
| 1 | 
            +
            // AWS SDK for JavaScript v2.1575.0
         | 
| 2 2 | 
             
            // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
         | 
| 3 3 | 
             
            // License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
         | 
| 4 4 | 
             
            (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
         | 
| @@ -272968,7 +272968,7 @@ AWS.util.update(AWS, { | |
| 272968 272968 | 
             
              /**
         | 
| 272969 272969 | 
             
               * @constant
         | 
| 272970 272970 | 
             
               */
         | 
| 272971 | 
            -
              VERSION: '2. | 
| 272971 | 
            +
              VERSION: '2.1575.0',
         | 
| 272972 272972 |  | 
| 272973 272973 | 
             
              /**
         | 
| 272974 272974 | 
             
               * @api private
         | 
| @@ -295218,7 +295218,7 @@ var LRUCache = /** @class */ (function () { | |
| 295218 295218 | 
             
            }());
         | 
| 295219 295219 | 
             
            exports.LRUCache = LRUCache;
         | 
| 295220 295220 | 
             
            },{}],467:[function(require,module,exports){
         | 
| 295221 | 
            -
            // AWS SDK for JavaScript v2. | 
| 295221 | 
            +
            // AWS SDK for JavaScript v2.1575.0
         | 
| 295222 295222 | 
             
            // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
         | 
| 295223 295223 | 
             
            // License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
         | 
| 295224 295224 | 
             
            require('./browser_loader');
         |