@aws-sdk/client-ivs 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.
Files changed (29) hide show
  1. package/dist-types/commands/BatchGetChannelCommand.d.ts +2 -2
  2. package/dist-types/commands/BatchGetStreamKeyCommand.d.ts +2 -2
  3. package/dist-types/commands/CreateChannelCommand.d.ts +2 -2
  4. package/dist-types/commands/CreateRecordingConfigurationCommand.d.ts +5 -5
  5. package/dist-types/commands/CreateStreamKeyCommand.d.ts +2 -2
  6. package/dist-types/commands/DeleteChannelCommand.d.ts +1 -1
  7. package/dist-types/commands/DeletePlaybackKeyPairCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteRecordingConfigurationCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteStreamKeyCommand.d.ts +1 -1
  10. package/dist-types/commands/GetChannelCommand.d.ts +1 -1
  11. package/dist-types/commands/GetPlaybackKeyPairCommand.d.ts +1 -1
  12. package/dist-types/commands/GetRecordingConfigurationCommand.d.ts +1 -1
  13. package/dist-types/commands/GetStreamCommand.d.ts +1 -1
  14. package/dist-types/commands/GetStreamKeyCommand.d.ts +1 -1
  15. package/dist-types/commands/GetStreamSessionCommand.d.ts +1 -1
  16. package/dist-types/commands/ImportPlaybackKeyPairCommand.d.ts +2 -2
  17. package/dist-types/commands/ListChannelsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListPlaybackKeyPairsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListRecordingConfigurationsCommand.d.ts +1 -1
  20. package/dist-types/commands/ListStreamKeysCommand.d.ts +1 -1
  21. package/dist-types/commands/ListStreamSessionsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListStreamsCommand.d.ts +2 -2
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  24. package/dist-types/commands/PutMetadataCommand.d.ts +1 -1
  25. package/dist-types/commands/StopStreamCommand.d.ts +1 -1
  26. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  27. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  28. package/dist-types/commands/UpdateChannelCommand.d.ts +1 -1
  29. package/package.json +3 -3
@@ -26,8 +26,8 @@ export interface BatchGetChannelCommandOutput extends BatchGetChannelResponse, _
26
26
  * import { IvsClient, BatchGetChannelCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, BatchGetChannelCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
30
- * arns: [ // required
29
+ * const input = { // BatchGetChannelRequest
30
+ * arns: [ // ChannelArnList // required
31
31
  * "STRING_VALUE",
32
32
  * ],
33
33
  * };
@@ -26,8 +26,8 @@ export interface BatchGetStreamKeyCommandOutput extends BatchGetStreamKeyRespons
26
26
  * import { IvsClient, BatchGetStreamKeyCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, BatchGetStreamKeyCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
30
- * arns: [ // required
29
+ * const input = { // BatchGetStreamKeyRequest
30
+ * arns: [ // StreamKeyArnList // required
31
31
  * "STRING_VALUE",
32
32
  * ],
33
33
  * };
@@ -26,13 +26,13 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
26
26
  * import { IvsClient, CreateChannelCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, CreateChannelCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
29
+ * const input = { // CreateChannelRequest
30
30
  * name: "STRING_VALUE",
31
31
  * latencyMode: "STRING_VALUE",
32
32
  * type: "BASIC" || "STANDARD",
33
33
  * authorized: true || false,
34
34
  * recordingConfigurationArn: "STRING_VALUE",
35
- * tags: {
35
+ * tags: { // Tags
36
36
  * "<keys>": "STRING_VALUE",
37
37
  * },
38
38
  * };
@@ -37,17 +37,17 @@ export interface CreateRecordingConfigurationCommandOutput extends CreateRecordi
37
37
  * import { IvsClient, CreateRecordingConfigurationCommand } from "@aws-sdk/client-ivs"; // ES Modules import
38
38
  * // const { IvsClient, CreateRecordingConfigurationCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
39
39
  * const client = new IvsClient(config);
40
- * const input = {
40
+ * const input = { // CreateRecordingConfigurationRequest
41
41
  * name: "STRING_VALUE",
42
- * destinationConfiguration: {
43
- * s3: {
42
+ * destinationConfiguration: { // DestinationConfiguration
43
+ * s3: { // S3DestinationConfiguration
44
44
  * bucketName: "STRING_VALUE", // required
45
45
  * },
46
46
  * },
47
- * tags: {
47
+ * tags: { // Tags
48
48
  * "<keys>": "STRING_VALUE",
49
49
  * },
50
- * thumbnailConfiguration: {
50
+ * thumbnailConfiguration: { // ThumbnailConfiguration
51
51
  * recordingMode: "STRING_VALUE",
52
52
  * targetIntervalSeconds: Number("long"),
53
53
  * },
@@ -29,9 +29,9 @@ export interface CreateStreamKeyCommandOutput extends CreateStreamKeyResponse, _
29
29
  * import { IvsClient, CreateStreamKeyCommand } from "@aws-sdk/client-ivs"; // ES Modules import
30
30
  * // const { IvsClient, CreateStreamKeyCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
31
31
  * const client = new IvsClient(config);
32
- * const input = {
32
+ * const input = { // CreateStreamKeyRequest
33
33
  * channelArn: "STRING_VALUE", // required
34
- * tags: {
34
+ * tags: { // Tags
35
35
  * "<keys>": "STRING_VALUE",
36
36
  * },
37
37
  * };
@@ -30,7 +30,7 @@ export interface DeleteChannelCommandOutput extends __MetadataBearer {
30
30
  * import { IvsClient, DeleteChannelCommand } from "@aws-sdk/client-ivs"; // ES Modules import
31
31
  * // const { IvsClient, DeleteChannelCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
32
32
  * const client = new IvsClient(config);
33
- * const input = {
33
+ * const input = { // DeleteChannelRequest
34
34
  * arn: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DeleteChannelCommand(input);
@@ -28,7 +28,7 @@ export interface DeletePlaybackKeyPairCommandOutput extends DeletePlaybackKeyPai
28
28
  * import { IvsClient, DeletePlaybackKeyPairCommand } from "@aws-sdk/client-ivs"; // ES Modules import
29
29
  * // const { IvsClient, DeletePlaybackKeyPairCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
30
30
  * const client = new IvsClient(config);
31
- * const input = {
31
+ * const input = { // DeletePlaybackKeyPairRequest
32
32
  * arn: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeletePlaybackKeyPairCommand(input);
@@ -31,7 +31,7 @@ export interface DeleteRecordingConfigurationCommandOutput extends __MetadataBea
31
31
  * import { IvsClient, DeleteRecordingConfigurationCommand } from "@aws-sdk/client-ivs"; // ES Modules import
32
32
  * // const { IvsClient, DeleteRecordingConfigurationCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
33
33
  * const client = new IvsClient(config);
34
- * const input = {
34
+ * const input = { // DeleteRecordingConfigurationRequest
35
35
  * arn: "STRING_VALUE", // required
36
36
  * };
37
37
  * const command = new DeleteRecordingConfigurationCommand(input);
@@ -27,7 +27,7 @@ export interface DeleteStreamKeyCommandOutput extends __MetadataBearer {
27
27
  * import { IvsClient, DeleteStreamKeyCommand } from "@aws-sdk/client-ivs"; // ES Modules import
28
28
  * // const { IvsClient, DeleteStreamKeyCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
29
29
  * const client = new IvsClient(config);
30
- * const input = {
30
+ * const input = { // DeleteStreamKeyRequest
31
31
  * arn: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteStreamKeyCommand(input);
@@ -26,7 +26,7 @@ export interface GetChannelCommandOutput extends GetChannelResponse, __MetadataB
26
26
  * import { IvsClient, GetChannelCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, GetChannelCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
29
+ * const input = { // GetChannelRequest
30
30
  * arn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetChannelCommand(input);
@@ -30,7 +30,7 @@ export interface GetPlaybackKeyPairCommandOutput extends GetPlaybackKeyPairRespo
30
30
  * import { IvsClient, GetPlaybackKeyPairCommand } from "@aws-sdk/client-ivs"; // ES Modules import
31
31
  * // const { IvsClient, GetPlaybackKeyPairCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
32
32
  * const client = new IvsClient(config);
33
- * const input = {
33
+ * const input = { // GetPlaybackKeyPairRequest
34
34
  * arn: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new GetPlaybackKeyPairCommand(input);
@@ -26,7 +26,7 @@ export interface GetRecordingConfigurationCommandOutput extends GetRecordingConf
26
26
  * import { IvsClient, GetRecordingConfigurationCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, GetRecordingConfigurationCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
29
+ * const input = { // GetRecordingConfigurationRequest
30
30
  * arn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetRecordingConfigurationCommand(input);
@@ -26,7 +26,7 @@ export interface GetStreamCommandOutput extends GetStreamResponse, __MetadataBea
26
26
  * import { IvsClient, GetStreamCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, GetStreamCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
29
+ * const input = { // GetStreamRequest
30
30
  * channelArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetStreamCommand(input);
@@ -26,7 +26,7 @@ export interface GetStreamKeyCommandOutput extends GetStreamKeyResponse, __Metad
26
26
  * import { IvsClient, GetStreamKeyCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, GetStreamKeyCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
29
+ * const input = { // GetStreamKeyRequest
30
30
  * arn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetStreamKeyCommand(input);
@@ -26,7 +26,7 @@ export interface GetStreamSessionCommandOutput extends GetStreamSessionResponse,
26
26
  * import { IvsClient, GetStreamSessionCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, GetStreamSessionCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
29
+ * const input = { // GetStreamSessionRequest
30
30
  * channelArn: "STRING_VALUE", // required
31
31
  * streamId: "STRING_VALUE",
32
32
  * };
@@ -30,10 +30,10 @@ export interface ImportPlaybackKeyPairCommandOutput extends ImportPlaybackKeyPai
30
30
  * import { IvsClient, ImportPlaybackKeyPairCommand } from "@aws-sdk/client-ivs"; // ES Modules import
31
31
  * // const { IvsClient, ImportPlaybackKeyPairCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
32
32
  * const client = new IvsClient(config);
33
- * const input = {
33
+ * const input = { // ImportPlaybackKeyPairRequest
34
34
  * publicKeyMaterial: "STRING_VALUE", // required
35
35
  * name: "STRING_VALUE",
36
- * tags: {
36
+ * tags: { // Tags
37
37
  * "<keys>": "STRING_VALUE",
38
38
  * },
39
39
  * };
@@ -29,7 +29,7 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
29
29
  * import { IvsClient, ListChannelsCommand } from "@aws-sdk/client-ivs"; // ES Modules import
30
30
  * // const { IvsClient, ListChannelsCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
31
31
  * const client = new IvsClient(config);
32
- * const input = {
32
+ * const input = { // ListChannelsRequest
33
33
  * filterByName: "STRING_VALUE",
34
34
  * filterByRecordingConfigurationArn: "STRING_VALUE",
35
35
  * nextToken: "STRING_VALUE",
@@ -27,7 +27,7 @@ export interface ListPlaybackKeyPairsCommandOutput extends ListPlaybackKeyPairsR
27
27
  * import { IvsClient, ListPlaybackKeyPairsCommand } from "@aws-sdk/client-ivs"; // ES Modules import
28
28
  * // const { IvsClient, ListPlaybackKeyPairsCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
29
29
  * const client = new IvsClient(config);
30
- * const input = {
30
+ * const input = { // ListPlaybackKeyPairsRequest
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
33
33
  * };
@@ -27,7 +27,7 @@ export interface ListRecordingConfigurationsCommandOutput extends ListRecordingC
27
27
  * import { IvsClient, ListRecordingConfigurationsCommand } from "@aws-sdk/client-ivs"; // ES Modules import
28
28
  * // const { IvsClient, ListRecordingConfigurationsCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
29
29
  * const client = new IvsClient(config);
30
- * const input = {
30
+ * const input = { // ListRecordingConfigurationsRequest
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
33
33
  * };
@@ -26,7 +26,7 @@ export interface ListStreamKeysCommandOutput extends ListStreamKeysResponse, __M
26
26
  * import { IvsClient, ListStreamKeysCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, ListStreamKeysCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
29
+ * const input = { // ListStreamKeysRequest
30
30
  * channelArn: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface ListStreamSessionsCommandOutput extends ListStreamSessionsRespo
27
27
  * import { IvsClient, ListStreamSessionsCommand } from "@aws-sdk/client-ivs"; // ES Modules import
28
28
  * // const { IvsClient, ListStreamSessionsCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
29
29
  * const client = new IvsClient(config);
30
- * const input = {
30
+ * const input = { // ListStreamSessionsRequest
31
31
  * channelArn: "STRING_VALUE", // required
32
32
  * nextToken: "STRING_VALUE",
33
33
  * maxResults: Number("int"),
@@ -27,8 +27,8 @@ export interface ListStreamsCommandOutput extends ListStreamsResponse, __Metadat
27
27
  * import { IvsClient, ListStreamsCommand } from "@aws-sdk/client-ivs"; // ES Modules import
28
28
  * // const { IvsClient, ListStreamsCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
29
29
  * const client = new IvsClient(config);
30
- * const input = {
31
- * filterBy: {
30
+ * const input = { // ListStreamsRequest
31
+ * filterBy: { // StreamFilters
32
32
  * health: "STRING_VALUE",
33
33
  * },
34
34
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { IvsClient, ListTagsForResourceCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -30,7 +30,7 @@ export interface PutMetadataCommandOutput extends __MetadataBearer {
30
30
  * import { IvsClient, PutMetadataCommand } from "@aws-sdk/client-ivs"; // ES Modules import
31
31
  * // const { IvsClient, PutMetadataCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
32
32
  * const client = new IvsClient(config);
33
- * const input = {
33
+ * const input = { // PutMetadataRequest
34
34
  * channelArn: "STRING_VALUE", // required
35
35
  * metadata: "STRING_VALUE", // required
36
36
  * };
@@ -33,7 +33,7 @@ export interface StopStreamCommandOutput extends StopStreamResponse, __MetadataB
33
33
  * import { IvsClient, StopStreamCommand } from "@aws-sdk/client-ivs"; // ES Modules import
34
34
  * // const { IvsClient, StopStreamCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
35
35
  * const client = new IvsClient(config);
36
- * const input = {
36
+ * const input = { // StopStreamRequest
37
37
  * channelArn: "STRING_VALUE", // required
38
38
  * };
39
39
  * const command = new StopStreamCommand(input);
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { IvsClient, TagResourceCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, TagResourceCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // Tags // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { IvsClient, UntagResourceCommand } from "@aws-sdk/client-ivs"; // ES Modules import
27
27
  * // const { IvsClient, UntagResourceCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
28
28
  * const client = new IvsClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -27,7 +27,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
27
27
  * import { IvsClient, UpdateChannelCommand } from "@aws-sdk/client-ivs"; // ES Modules import
28
28
  * // const { IvsClient, UpdateChannelCommand } = require("@aws-sdk/client-ivs"); // CommonJS import
29
29
  * const client = new IvsClient(config);
30
- * const input = {
30
+ * const input = { // UpdateChannelRequest
31
31
  * arn: "STRING_VALUE", // required
32
32
  * name: "STRING_VALUE",
33
33
  * latencyMode: "STRING_VALUE",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ivs",
3
3
  "description": "AWS SDK for JavaScript Ivs Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
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.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
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",