@aws-sdk/client-mediapackage-vod 3.298.0 → 3.300.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 +6 -0
- package/dist-types/commands/CreateAssetCommand.d.ts +10 -0
- package/dist-types/commands/CreatePackagingConfigurationCommand.d.ts +135 -0
- package/dist-types/commands/CreatePackagingGroupCommand.d.ts +13 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +3 -0
- package/dist-types/commands/DeletePackagingConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DeletePackagingGroupCommand.d.ts +3 -0
- package/dist-types/commands/DescribeAssetCommand.d.ts +3 -0
- package/dist-types/commands/DescribePackagingConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DescribePackagingGroupCommand.d.ts +3 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +5 -0
- package/dist-types/commands/ListPackagingConfigurationsCommand.d.ts +5 -0
- package/dist-types/commands/ListPackagingGroupsCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdatePackagingGroupCommand.d.ts +7 -0
- package/package.json +12 -12
|
@@ -26,6 +26,12 @@ export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __Met
|
|
|
26
26
|
* import { MediaPackageVodClient, ConfigureLogsCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, ConfigureLogsCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* EgressAccessLogs: {
|
|
31
|
+
* LogGroupName: "STRING_VALUE",
|
|
32
|
+
* },
|
|
33
|
+
* Id: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ConfigureLogsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface CreateAssetCommandOutput extends CreateAssetResponse, __Metadat
|
|
|
26
26
|
* import { MediaPackageVodClient, CreateAssetCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, CreateAssetCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Id: "STRING_VALUE", // required
|
|
31
|
+
* PackagingGroupId: "STRING_VALUE", // required
|
|
32
|
+
* ResourceId: "STRING_VALUE",
|
|
33
|
+
* SourceArn: "STRING_VALUE", // required
|
|
34
|
+
* SourceRoleArn: "STRING_VALUE", // required
|
|
35
|
+
* Tags: {
|
|
36
|
+
* "<keys>": "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
29
39
|
* const command = new CreateAssetCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,141 @@ export interface CreatePackagingConfigurationCommandOutput extends CreatePackagi
|
|
|
26
26
|
* import { MediaPackageVodClient, CreatePackagingConfigurationCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, CreatePackagingConfigurationCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* CmafPackage: {
|
|
31
|
+
* Encryption: {
|
|
32
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
33
|
+
* SpekeKeyProvider: {
|
|
34
|
+
* EncryptionContractConfiguration: {
|
|
35
|
+
* PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
36
|
+
* 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
|
|
37
|
+
* },
|
|
38
|
+
* RoleArn: "STRING_VALUE", // required
|
|
39
|
+
* SystemIds: [ // required
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* Url: "STRING_VALUE", // required
|
|
43
|
+
* },
|
|
44
|
+
* },
|
|
45
|
+
* HlsManifests: [ // required
|
|
46
|
+
* {
|
|
47
|
+
* AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH",
|
|
48
|
+
* IncludeIframeOnlyStream: true || false,
|
|
49
|
+
* ManifestName: "STRING_VALUE",
|
|
50
|
+
* ProgramDateTimeIntervalSeconds: Number("int"),
|
|
51
|
+
* RepeatExtXKey: true || false,
|
|
52
|
+
* StreamSelection: {
|
|
53
|
+
* MaxVideoBitsPerSecond: Number("int"),
|
|
54
|
+
* MinVideoBitsPerSecond: Number("int"),
|
|
55
|
+
* StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
56
|
+
* },
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* IncludeEncoderConfigurationInSegments: true || false,
|
|
60
|
+
* SegmentDurationSeconds: Number("int"),
|
|
61
|
+
* },
|
|
62
|
+
* DashPackage: {
|
|
63
|
+
* DashManifests: [ // required
|
|
64
|
+
* {
|
|
65
|
+
* ManifestLayout: "FULL" || "COMPACT",
|
|
66
|
+
* ManifestName: "STRING_VALUE",
|
|
67
|
+
* MinBufferTimeSeconds: Number("int"),
|
|
68
|
+
* Profile: "NONE" || "HBBTV_1_5",
|
|
69
|
+
* ScteMarkersSource: "SEGMENTS" || "MANIFEST",
|
|
70
|
+
* StreamSelection: {
|
|
71
|
+
* MaxVideoBitsPerSecond: Number("int"),
|
|
72
|
+
* MinVideoBitsPerSecond: Number("int"),
|
|
73
|
+
* StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* ],
|
|
77
|
+
* Encryption: {
|
|
78
|
+
* SpekeKeyProvider: {
|
|
79
|
+
* EncryptionContractConfiguration: {
|
|
80
|
+
* PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
81
|
+
* 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
|
|
82
|
+
* },
|
|
83
|
+
* RoleArn: "STRING_VALUE", // required
|
|
84
|
+
* SystemIds: [ // required
|
|
85
|
+
* "STRING_VALUE",
|
|
86
|
+
* ],
|
|
87
|
+
* Url: "STRING_VALUE", // required
|
|
88
|
+
* },
|
|
89
|
+
* },
|
|
90
|
+
* IncludeEncoderConfigurationInSegments: true || false,
|
|
91
|
+
* IncludeIframeOnlyStream: true || false,
|
|
92
|
+
* PeriodTriggers: [
|
|
93
|
+
* "ADS",
|
|
94
|
+
* ],
|
|
95
|
+
* SegmentDurationSeconds: Number("int"),
|
|
96
|
+
* SegmentTemplateFormat: "NUMBER_WITH_TIMELINE" || "TIME_WITH_TIMELINE" || "NUMBER_WITH_DURATION",
|
|
97
|
+
* },
|
|
98
|
+
* HlsPackage: {
|
|
99
|
+
* Encryption: {
|
|
100
|
+
* ConstantInitializationVector: "STRING_VALUE",
|
|
101
|
+
* EncryptionMethod: "AES_128" || "SAMPLE_AES",
|
|
102
|
+
* SpekeKeyProvider: {
|
|
103
|
+
* EncryptionContractConfiguration: {
|
|
104
|
+
* PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
105
|
+
* 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
|
|
106
|
+
* },
|
|
107
|
+
* RoleArn: "STRING_VALUE", // required
|
|
108
|
+
* SystemIds: [ // required
|
|
109
|
+
* "STRING_VALUE",
|
|
110
|
+
* ],
|
|
111
|
+
* Url: "STRING_VALUE", // required
|
|
112
|
+
* },
|
|
113
|
+
* },
|
|
114
|
+
* HlsManifests: [ // required
|
|
115
|
+
* {
|
|
116
|
+
* AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH",
|
|
117
|
+
* IncludeIframeOnlyStream: true || false,
|
|
118
|
+
* ManifestName: "STRING_VALUE",
|
|
119
|
+
* ProgramDateTimeIntervalSeconds: Number("int"),
|
|
120
|
+
* RepeatExtXKey: true || false,
|
|
121
|
+
* StreamSelection: {
|
|
122
|
+
* MaxVideoBitsPerSecond: Number("int"),
|
|
123
|
+
* MinVideoBitsPerSecond: Number("int"),
|
|
124
|
+
* StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
125
|
+
* },
|
|
126
|
+
* },
|
|
127
|
+
* ],
|
|
128
|
+
* IncludeDvbSubtitles: true || false,
|
|
129
|
+
* SegmentDurationSeconds: Number("int"),
|
|
130
|
+
* UseAudioRenditionGroup: true || false,
|
|
131
|
+
* },
|
|
132
|
+
* Id: "STRING_VALUE", // required
|
|
133
|
+
* MssPackage: {
|
|
134
|
+
* Encryption: {
|
|
135
|
+
* SpekeKeyProvider: {
|
|
136
|
+
* EncryptionContractConfiguration: {
|
|
137
|
+
* PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
138
|
+
* 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
|
|
139
|
+
* },
|
|
140
|
+
* RoleArn: "STRING_VALUE", // required
|
|
141
|
+
* SystemIds: [ // required
|
|
142
|
+
* "STRING_VALUE",
|
|
143
|
+
* ],
|
|
144
|
+
* Url: "STRING_VALUE", // required
|
|
145
|
+
* },
|
|
146
|
+
* },
|
|
147
|
+
* MssManifests: [ // required
|
|
148
|
+
* {
|
|
149
|
+
* ManifestName: "STRING_VALUE",
|
|
150
|
+
* StreamSelection: {
|
|
151
|
+
* MaxVideoBitsPerSecond: Number("int"),
|
|
152
|
+
* MinVideoBitsPerSecond: Number("int"),
|
|
153
|
+
* StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
154
|
+
* },
|
|
155
|
+
* },
|
|
156
|
+
* ],
|
|
157
|
+
* SegmentDurationSeconds: Number("int"),
|
|
158
|
+
* },
|
|
159
|
+
* PackagingGroupId: "STRING_VALUE", // required
|
|
160
|
+
* Tags: {
|
|
161
|
+
* "<keys>": "STRING_VALUE",
|
|
162
|
+
* },
|
|
163
|
+
* };
|
|
29
164
|
* const command = new CreatePackagingConfigurationCommand(input);
|
|
30
165
|
* const response = await client.send(command);
|
|
31
166
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface CreatePackagingGroupCommandOutput extends CreatePackagingGroupR
|
|
|
26
26
|
* import { MediaPackageVodClient, CreatePackagingGroupCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, CreatePackagingGroupCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Authorization: {
|
|
31
|
+
* CdnIdentifierSecret: "STRING_VALUE", // required
|
|
32
|
+
* SecretsRoleArn: "STRING_VALUE", // required
|
|
33
|
+
* },
|
|
34
|
+
* EgressAccessLogs: {
|
|
35
|
+
* LogGroupName: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* Id: "STRING_VALUE", // required
|
|
38
|
+
* Tags: {
|
|
39
|
+
* "<keys>": "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* };
|
|
29
42
|
* const command = new CreatePackagingGroupCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteAssetCommandOutput extends DeleteAssetResponse, __Metadat
|
|
|
26
26
|
* import { MediaPackageVodClient, DeleteAssetCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, DeleteAssetCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteAssetCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeletePackagingConfigurationCommandOutput extends DeletePackagi
|
|
|
26
26
|
* import { MediaPackageVodClient, DeletePackagingConfigurationCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, DeletePackagingConfigurationCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeletePackagingConfigurationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeletePackagingGroupCommandOutput extends DeletePackagingGroupR
|
|
|
26
26
|
* import { MediaPackageVodClient, DeletePackagingGroupCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, DeletePackagingGroupCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeletePackagingGroupCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeAssetCommandOutput extends DescribeAssetResponse, __Met
|
|
|
26
26
|
* import { MediaPackageVodClient, DescribeAssetCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, DescribeAssetCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeAssetCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribePackagingConfigurationCommandOutput extends DescribePac
|
|
|
26
26
|
* import { MediaPackageVodClient, DescribePackagingConfigurationCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, DescribePackagingConfigurationCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribePackagingConfigurationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribePackagingGroupCommandOutput extends DescribePackagingGr
|
|
|
26
26
|
* import { MediaPackageVodClient, DescribePackagingGroupCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, DescribePackagingGroupCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Id: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribePackagingGroupCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListAssetsCommandOutput extends ListAssetsResponse, __MetadataB
|
|
|
26
26
|
* import { MediaPackageVodClient, ListAssetsCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, ListAssetsCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* PackagingGroupId: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListAssetsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListPackagingConfigurationsCommandOutput extends ListPackagingC
|
|
|
26
26
|
* import { MediaPackageVodClient, ListPackagingConfigurationsCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, ListPackagingConfigurationsCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* PackagingGroupId: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListPackagingConfigurationsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListPackagingGroupsCommandOutput extends ListPackagingGroupsRes
|
|
|
26
26
|
* import { MediaPackageVodClient, ListPackagingGroupsCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, ListPackagingGroupsCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListPackagingGroupsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { MediaPackageVodClient, ListTagsForResourceCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, ListTagsForResourceCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { MediaPackageVodClient, TagResourceCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, TagResourceCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* Tags: { // required
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { MediaPackageVodClient, UntagResourceCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, UntagResourceCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface UpdatePackagingGroupCommandOutput extends UpdatePackagingGroupR
|
|
|
26
26
|
* import { MediaPackageVodClient, UpdatePackagingGroupCommand } from "@aws-sdk/client-mediapackage-vod"; // ES Modules import
|
|
27
27
|
* // const { MediaPackageVodClient, UpdatePackagingGroupCommand } = require("@aws-sdk/client-mediapackage-vod"); // CommonJS import
|
|
28
28
|
* const client = new MediaPackageVodClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Authorization: {
|
|
31
|
+
* CdnIdentifierSecret: "STRING_VALUE", // required
|
|
32
|
+
* SecretsRoleArn: "STRING_VALUE", // required
|
|
33
|
+
* },
|
|
34
|
+
* Id: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
29
36
|
* const command = new UpdatePackagingGroupCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediapackage-vod",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackage Vod Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.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,23 +21,23 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.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",
|
|
30
30
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|