@aws-sdk/client-mediapackage 3.300.0 → 3.301.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/dist-types/commands/ConfigureLogsCommand.d.ts +3 -3
- package/dist-types/commands/CreateChannelCommand.d.ts +2 -2
- package/dist-types/commands/CreateHarvestJobCommand.d.ts +2 -2
- package/dist-types/commands/CreateOriginEndpointCommand.d.ts +19 -19
- package/dist-types/commands/DeleteChannelCommand.d.ts +1 -1
- package/dist-types/commands/DeleteOriginEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DescribeChannelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeHarvestJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOriginEndpointCommand.d.ts +1 -1
- package/dist-types/commands/ListChannelsCommand.d.ts +1 -1
- package/dist-types/commands/ListHarvestJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListOriginEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/RotateChannelCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/RotateIngestEndpointCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateChannelCommand.d.ts +1 -1
- package/dist-types/commands/UpdateOriginEndpointCommand.d.ts +18 -18
- package/package.json +3 -3
|
@@ -26,12 +26,12 @@ export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __Met
|
|
|
26
26
|
* import { MediaPackageClient, ConfigureLogsCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, ConfigureLogsCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* EgressAccessLogs: {
|
|
29
|
+
* const input = { // ConfigureLogsRequest
|
|
30
|
+
* EgressAccessLogs: { // EgressAccessLogs
|
|
31
31
|
* LogGroupName: "STRING_VALUE",
|
|
32
32
|
* },
|
|
33
33
|
* Id: "STRING_VALUE", // required
|
|
34
|
-
* IngressAccessLogs: {
|
|
34
|
+
* IngressAccessLogs: { // IngressAccessLogs
|
|
35
35
|
* LogGroupName: "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* };
|
|
@@ -26,10 +26,10 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
|
|
|
26
26
|
* import { MediaPackageClient, CreateChannelCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, CreateChannelCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateChannelRequest
|
|
30
30
|
* Description: "STRING_VALUE",
|
|
31
31
|
* Id: "STRING_VALUE", // required
|
|
32
|
-
* Tags: {
|
|
32
|
+
* Tags: { // Tags
|
|
33
33
|
* "<keys>": "STRING_VALUE",
|
|
34
34
|
* },
|
|
35
35
|
* };
|
|
@@ -26,11 +26,11 @@ export interface CreateHarvestJobCommandOutput extends CreateHarvestJobResponse,
|
|
|
26
26
|
* import { MediaPackageClient, CreateHarvestJobCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, CreateHarvestJobCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateHarvestJobRequest
|
|
30
30
|
* EndTime: "STRING_VALUE", // required
|
|
31
31
|
* Id: "STRING_VALUE", // required
|
|
32
32
|
* OriginEndpointId: "STRING_VALUE", // required
|
|
33
|
-
* S3Destination: {
|
|
33
|
+
* S3Destination: { // S3Destination
|
|
34
34
|
* BucketName: "STRING_VALUE", // required
|
|
35
35
|
* ManifestKey: "STRING_VALUE", // required
|
|
36
36
|
* RoleArn: "STRING_VALUE", // required
|
|
@@ -26,35 +26,35 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
|
|
|
26
26
|
* import { MediaPackageClient, CreateOriginEndpointCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, CreateOriginEndpointCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Authorization: {
|
|
29
|
+
* const input = { // CreateOriginEndpointRequest
|
|
30
|
+
* Authorization: { // Authorization
|
|
31
31
|
* CdnIdentifierSecret: "STRING_VALUE", // required
|
|
32
32
|
* SecretsRoleArn: "STRING_VALUE", // required
|
|
33
33
|
* },
|
|
34
34
|
* ChannelId: "STRING_VALUE", // required
|
|
35
|
-
* CmafPackage: {
|
|
36
|
-
* Encryption: {
|
|
35
|
+
* CmafPackage: { // CmafPackageCreateOrUpdateParameters
|
|
36
|
+
* Encryption: { // CmafEncryption
|
|
37
37
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
38
38
|
* EncryptionMethod: "SAMPLE_AES" || "AES_CTR",
|
|
39
39
|
* KeyRotationIntervalSeconds: Number("int"),
|
|
40
|
-
* SpekeKeyProvider: {
|
|
40
|
+
* SpekeKeyProvider: { // SpekeKeyProvider
|
|
41
41
|
* CertificateArn: "STRING_VALUE",
|
|
42
|
-
* EncryptionContractConfiguration: {
|
|
42
|
+
* EncryptionContractConfiguration: { // EncryptionContractConfiguration
|
|
43
43
|
* PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
44
44
|
* PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
45
45
|
* },
|
|
46
46
|
* ResourceId: "STRING_VALUE", // required
|
|
47
47
|
* RoleArn: "STRING_VALUE", // required
|
|
48
|
-
* SystemIds: [ // required
|
|
48
|
+
* SystemIds: [ // __listOf__string // required
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
51
|
* Url: "STRING_VALUE", // required
|
|
52
52
|
* },
|
|
53
53
|
* },
|
|
54
|
-
* HlsManifests: [
|
|
55
|
-
* {
|
|
54
|
+
* HlsManifests: [ // __listOfHlsManifestCreateOrUpdateParameters
|
|
55
|
+
* { // HlsManifestCreateOrUpdateParameters
|
|
56
56
|
* AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
57
|
-
* AdTriggers: [
|
|
57
|
+
* AdTriggers: [ // AdTriggers
|
|
58
58
|
* "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
59
59
|
* ],
|
|
60
60
|
* AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
@@ -68,18 +68,18 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
|
|
|
68
68
|
* ],
|
|
69
69
|
* SegmentDurationSeconds: Number("int"),
|
|
70
70
|
* SegmentPrefix: "STRING_VALUE",
|
|
71
|
-
* StreamSelection: {
|
|
71
|
+
* StreamSelection: { // StreamSelection
|
|
72
72
|
* MaxVideoBitsPerSecond: Number("int"),
|
|
73
73
|
* MinVideoBitsPerSecond: Number("int"),
|
|
74
74
|
* StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
75
75
|
* },
|
|
76
76
|
* },
|
|
77
|
-
* DashPackage: {
|
|
77
|
+
* DashPackage: { // DashPackage
|
|
78
78
|
* AdTriggers: [
|
|
79
79
|
* "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
80
80
|
* ],
|
|
81
81
|
* AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
82
|
-
* Encryption: {
|
|
82
|
+
* Encryption: { // DashEncryption
|
|
83
83
|
* KeyRotationIntervalSeconds: Number("int"),
|
|
84
84
|
* SpekeKeyProvider: {
|
|
85
85
|
* CertificateArn: "STRING_VALUE",
|
|
@@ -100,7 +100,7 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
|
|
|
100
100
|
* ManifestWindowSeconds: Number("int"),
|
|
101
101
|
* MinBufferTimeSeconds: Number("int"),
|
|
102
102
|
* MinUpdatePeriodSeconds: Number("int"),
|
|
103
|
-
* PeriodTriggers: [
|
|
103
|
+
* PeriodTriggers: [ // __listOf__PeriodTriggersElement
|
|
104
104
|
* "ADS",
|
|
105
105
|
* ],
|
|
106
106
|
* Profile: "NONE" || "HBBTV_1_5" || "HYBRIDCAST" || "DVB_DASH_2014",
|
|
@@ -116,13 +116,13 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
|
|
|
116
116
|
* UtcTimingUri: "STRING_VALUE",
|
|
117
117
|
* },
|
|
118
118
|
* Description: "STRING_VALUE",
|
|
119
|
-
* HlsPackage: {
|
|
119
|
+
* HlsPackage: { // HlsPackage
|
|
120
120
|
* AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
121
121
|
* AdTriggers: [
|
|
122
122
|
* "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
123
123
|
* ],
|
|
124
124
|
* AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
125
|
-
* Encryption: {
|
|
125
|
+
* Encryption: { // HlsEncryption
|
|
126
126
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
127
127
|
* EncryptionMethod: "AES_128" || "SAMPLE_AES",
|
|
128
128
|
* KeyRotationIntervalSeconds: Number("int"),
|
|
@@ -156,8 +156,8 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
|
|
|
156
156
|
* },
|
|
157
157
|
* Id: "STRING_VALUE", // required
|
|
158
158
|
* ManifestName: "STRING_VALUE",
|
|
159
|
-
* MssPackage: {
|
|
160
|
-
* Encryption: {
|
|
159
|
+
* MssPackage: { // MssPackage
|
|
160
|
+
* Encryption: { // MssEncryption
|
|
161
161
|
* SpekeKeyProvider: {
|
|
162
162
|
* CertificateArn: "STRING_VALUE",
|
|
163
163
|
* EncryptionContractConfiguration: {
|
|
@@ -182,7 +182,7 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
|
|
|
182
182
|
* },
|
|
183
183
|
* Origination: "ALLOW" || "DENY",
|
|
184
184
|
* StartoverWindowSeconds: Number("int"),
|
|
185
|
-
* Tags: {
|
|
185
|
+
* Tags: { // Tags
|
|
186
186
|
* "<keys>": "STRING_VALUE",
|
|
187
187
|
* },
|
|
188
188
|
* TimeDelaySeconds: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
|
|
|
26
26
|
* import { MediaPackageClient, DeleteChannelCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, DeleteChannelCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteChannelRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteChannelCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteOriginEndpointCommandOutput extends DeleteOriginEndpointR
|
|
|
26
26
|
* import { MediaPackageClient, DeleteOriginEndpointCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, DeleteOriginEndpointCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteOriginEndpointRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteOriginEndpointCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
|
|
|
26
26
|
* import { MediaPackageClient, DescribeChannelCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, DescribeChannelCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeChannelRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeChannelCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeHarvestJobCommandOutput extends DescribeHarvestJobRespo
|
|
|
26
26
|
* import { MediaPackageClient, DescribeHarvestJobCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, DescribeHarvestJobCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeHarvestJobRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeHarvestJobCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeOriginEndpointCommandOutput extends DescribeOriginEndpo
|
|
|
26
26
|
* import { MediaPackageClient, DescribeOriginEndpointCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, DescribeOriginEndpointCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeOriginEndpointRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeOriginEndpointCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
|
|
|
26
26
|
* import { MediaPackageClient, ListChannelsCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, ListChannelsCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListChannelsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListHarvestJobsCommandOutput extends ListHarvestJobsResponse, _
|
|
|
26
26
|
* import { MediaPackageClient, ListHarvestJobsCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, ListHarvestJobsCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListHarvestJobsRequest
|
|
30
30
|
* IncludeChannelId: "STRING_VALUE",
|
|
31
31
|
* IncludeStatus: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListOriginEndpointsCommandOutput extends ListOriginEndpointsRes
|
|
|
26
26
|
* import { MediaPackageClient, ListOriginEndpointsCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, ListOriginEndpointsCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListOriginEndpointsRequest
|
|
30
30
|
* ChannelId: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface RotateChannelCredentialsCommandOutput extends RotateChannelCred
|
|
|
28
28
|
* import { MediaPackageClient, RotateChannelCredentialsCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
29
29
|
* // const { MediaPackageClient, RotateChannelCredentialsCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
30
30
|
* const client = new MediaPackageClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // RotateChannelCredentialsRequest
|
|
32
32
|
* Id: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new RotateChannelCredentialsCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface RotateIngestEndpointCredentialsCommandOutput extends RotateInge
|
|
|
26
26
|
* import { MediaPackageClient, RotateIngestEndpointCredentialsCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, RotateIngestEndpointCredentialsCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RotateIngestEndpointCredentialsRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* IngestEndpointId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
26
26
|
* import { MediaPackageClient, UpdateChannelCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, UpdateChannelCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateChannelRequest
|
|
30
30
|
* Description: "STRING_VALUE",
|
|
31
31
|
* Id: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,34 +26,34 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
|
|
|
26
26
|
* import { MediaPackageClient, UpdateOriginEndpointCommand } from "@aws-sdk/client-mediapackage"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageClient, UpdateOriginEndpointCommand } = require("@aws-sdk/client-mediapackage"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* Authorization: {
|
|
29
|
+
* const input = { // UpdateOriginEndpointRequest
|
|
30
|
+
* Authorization: { // Authorization
|
|
31
31
|
* CdnIdentifierSecret: "STRING_VALUE", // required
|
|
32
32
|
* SecretsRoleArn: "STRING_VALUE", // required
|
|
33
33
|
* },
|
|
34
|
-
* CmafPackage: {
|
|
35
|
-
* Encryption: {
|
|
34
|
+
* CmafPackage: { // CmafPackageCreateOrUpdateParameters
|
|
35
|
+
* Encryption: { // CmafEncryption
|
|
36
36
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
37
37
|
* EncryptionMethod: "SAMPLE_AES" || "AES_CTR",
|
|
38
38
|
* KeyRotationIntervalSeconds: Number("int"),
|
|
39
|
-
* SpekeKeyProvider: {
|
|
39
|
+
* SpekeKeyProvider: { // SpekeKeyProvider
|
|
40
40
|
* CertificateArn: "STRING_VALUE",
|
|
41
|
-
* EncryptionContractConfiguration: {
|
|
41
|
+
* EncryptionContractConfiguration: { // EncryptionContractConfiguration
|
|
42
42
|
* PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
43
43
|
* PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
44
44
|
* },
|
|
45
45
|
* ResourceId: "STRING_VALUE", // required
|
|
46
46
|
* RoleArn: "STRING_VALUE", // required
|
|
47
|
-
* SystemIds: [ // required
|
|
47
|
+
* SystemIds: [ // __listOf__string // required
|
|
48
48
|
* "STRING_VALUE",
|
|
49
49
|
* ],
|
|
50
50
|
* Url: "STRING_VALUE", // required
|
|
51
51
|
* },
|
|
52
52
|
* },
|
|
53
|
-
* HlsManifests: [
|
|
54
|
-
* {
|
|
53
|
+
* HlsManifests: [ // __listOfHlsManifestCreateOrUpdateParameters
|
|
54
|
+
* { // HlsManifestCreateOrUpdateParameters
|
|
55
55
|
* AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
56
|
-
* AdTriggers: [
|
|
56
|
+
* AdTriggers: [ // AdTriggers
|
|
57
57
|
* "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
58
58
|
* ],
|
|
59
59
|
* AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
@@ -67,18 +67,18 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
|
|
|
67
67
|
* ],
|
|
68
68
|
* SegmentDurationSeconds: Number("int"),
|
|
69
69
|
* SegmentPrefix: "STRING_VALUE",
|
|
70
|
-
* StreamSelection: {
|
|
70
|
+
* StreamSelection: { // StreamSelection
|
|
71
71
|
* MaxVideoBitsPerSecond: Number("int"),
|
|
72
72
|
* MinVideoBitsPerSecond: Number("int"),
|
|
73
73
|
* StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
74
74
|
* },
|
|
75
75
|
* },
|
|
76
|
-
* DashPackage: {
|
|
76
|
+
* DashPackage: { // DashPackage
|
|
77
77
|
* AdTriggers: [
|
|
78
78
|
* "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
79
79
|
* ],
|
|
80
80
|
* AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
81
|
-
* Encryption: {
|
|
81
|
+
* Encryption: { // DashEncryption
|
|
82
82
|
* KeyRotationIntervalSeconds: Number("int"),
|
|
83
83
|
* SpekeKeyProvider: {
|
|
84
84
|
* CertificateArn: "STRING_VALUE",
|
|
@@ -99,7 +99,7 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
|
|
|
99
99
|
* ManifestWindowSeconds: Number("int"),
|
|
100
100
|
* MinBufferTimeSeconds: Number("int"),
|
|
101
101
|
* MinUpdatePeriodSeconds: Number("int"),
|
|
102
|
-
* PeriodTriggers: [
|
|
102
|
+
* PeriodTriggers: [ // __listOf__PeriodTriggersElement
|
|
103
103
|
* "ADS",
|
|
104
104
|
* ],
|
|
105
105
|
* Profile: "NONE" || "HBBTV_1_5" || "HYBRIDCAST" || "DVB_DASH_2014",
|
|
@@ -115,13 +115,13 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
|
|
|
115
115
|
* UtcTimingUri: "STRING_VALUE",
|
|
116
116
|
* },
|
|
117
117
|
* Description: "STRING_VALUE",
|
|
118
|
-
* HlsPackage: {
|
|
118
|
+
* HlsPackage: { // HlsPackage
|
|
119
119
|
* AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
120
120
|
* AdTriggers: [
|
|
121
121
|
* "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
122
122
|
* ],
|
|
123
123
|
* AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
124
|
-
* Encryption: {
|
|
124
|
+
* Encryption: { // HlsEncryption
|
|
125
125
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
126
126
|
* EncryptionMethod: "AES_128" || "SAMPLE_AES",
|
|
127
127
|
* KeyRotationIntervalSeconds: Number("int"),
|
|
@@ -155,8 +155,8 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
|
|
|
155
155
|
* },
|
|
156
156
|
* Id: "STRING_VALUE", // required
|
|
157
157
|
* ManifestName: "STRING_VALUE",
|
|
158
|
-
* MssPackage: {
|
|
159
|
-
* Encryption: {
|
|
158
|
+
* MssPackage: { // MssPackage
|
|
159
|
+
* Encryption: { // MssEncryption
|
|
160
160
|
* SpekeKeyProvider: {
|
|
161
161
|
* CertificateArn: "STRING_VALUE",
|
|
162
162
|
* EncryptionContractConfiguration: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediapackage",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackage Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|