@aws-sdk/client-mediastore 3.299.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.
@@ -27,6 +27,15 @@ export interface CreateContainerCommandOutput extends CreateContainerOutput, __M
27
27
  * import { MediaStoreClient, CreateContainerCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
28
28
  * // const { MediaStoreClient, CreateContainerCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
29
29
  * const client = new MediaStoreClient(config);
30
+ * const input = { // CreateContainerInput
31
+ * ContainerName: "STRING_VALUE", // required
32
+ * Tags: [ // TagList
33
+ * { // Tag
34
+ * Key: "STRING_VALUE", // required
35
+ * Value: "STRING_VALUE",
36
+ * },
37
+ * ],
38
+ * };
30
39
  * const command = new CreateContainerCommand(input);
31
40
  * const response = await client.send(command);
32
41
  * ```
@@ -28,6 +28,9 @@ export interface DeleteContainerCommandOutput extends DeleteContainerOutput, __M
28
28
  * import { MediaStoreClient, DeleteContainerCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
29
29
  * // const { MediaStoreClient, DeleteContainerCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
30
30
  * const client = new MediaStoreClient(config);
31
+ * const input = { // DeleteContainerInput
32
+ * ContainerName: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DeleteContainerCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -26,6 +26,9 @@ export interface DeleteContainerPolicyCommandOutput extends DeleteContainerPolic
26
26
  * import { MediaStoreClient, DeleteContainerPolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
27
27
  * // const { MediaStoreClient, DeleteContainerPolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
28
28
  * const client = new MediaStoreClient(config);
29
+ * const input = { // DeleteContainerPolicyInput
30
+ * ContainerName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteContainerPolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -30,6 +30,9 @@ export interface DeleteCorsPolicyCommandOutput extends DeleteCorsPolicyOutput, _
30
30
  * import { MediaStoreClient, DeleteCorsPolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
31
31
  * // const { MediaStoreClient, DeleteCorsPolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
32
32
  * const client = new MediaStoreClient(config);
33
+ * const input = { // DeleteCorsPolicyInput
34
+ * ContainerName: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new DeleteCorsPolicyCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -26,6 +26,9 @@ export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolic
26
26
  * import { MediaStoreClient, DeleteLifecyclePolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
27
27
  * // const { MediaStoreClient, DeleteLifecyclePolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
28
28
  * const client = new MediaStoreClient(config);
29
+ * const input = { // DeleteLifecyclePolicyInput
30
+ * ContainerName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteLifecyclePolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteMetricPolicyCommandOutput extends DeleteMetricPolicyOutpu
26
26
  * import { MediaStoreClient, DeleteMetricPolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
27
27
  * // const { MediaStoreClient, DeleteMetricPolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
28
28
  * const client = new MediaStoreClient(config);
29
+ * const input = { // DeleteMetricPolicyInput
30
+ * ContainerName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteMetricPolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -32,6 +32,9 @@ export interface DescribeContainerCommandOutput extends DescribeContainerOutput,
32
32
  * import { MediaStoreClient, DescribeContainerCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
33
33
  * // const { MediaStoreClient, DescribeContainerCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
34
34
  * const client = new MediaStoreClient(config);
35
+ * const input = { // DescribeContainerInput
36
+ * ContainerName: "STRING_VALUE",
37
+ * };
35
38
  * const command = new DescribeContainerCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -28,6 +28,9 @@ export interface GetContainerPolicyCommandOutput extends GetContainerPolicyOutpu
28
28
  * import { MediaStoreClient, GetContainerPolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
29
29
  * // const { MediaStoreClient, GetContainerPolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
30
30
  * const client = new MediaStoreClient(config);
31
+ * const input = { // GetContainerPolicyInput
32
+ * ContainerName: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new GetContainerPolicyCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -30,6 +30,9 @@ export interface GetCorsPolicyCommandOutput extends GetCorsPolicyOutput, __Metad
30
30
  * import { MediaStoreClient, GetCorsPolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
31
31
  * // const { MediaStoreClient, GetCorsPolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
32
32
  * const client = new MediaStoreClient(config);
33
+ * const input = { // GetCorsPolicyInput
34
+ * ContainerName: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new GetCorsPolicyCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -26,6 +26,9 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyOutpu
26
26
  * import { MediaStoreClient, GetLifecyclePolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
27
27
  * // const { MediaStoreClient, GetLifecyclePolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
28
28
  * const client = new MediaStoreClient(config);
29
+ * const input = { // GetLifecyclePolicyInput
30
+ * ContainerName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetLifecyclePolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface GetMetricPolicyCommandOutput extends GetMetricPolicyOutput, __M
26
26
  * import { MediaStoreClient, GetMetricPolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
27
27
  * // const { MediaStoreClient, GetMetricPolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
28
28
  * const client = new MediaStoreClient(config);
29
+ * const input = { // GetMetricPolicyInput
30
+ * ContainerName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetMetricPolicyCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -34,6 +34,10 @@ export interface ListContainersCommandOutput extends ListContainersOutput, __Met
34
34
  * import { MediaStoreClient, ListContainersCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
35
35
  * // const { MediaStoreClient, ListContainersCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
36
36
  * const client = new MediaStoreClient(config);
37
+ * const input = { // ListContainersInput
38
+ * NextToken: "STRING_VALUE",
39
+ * MaxResults: Number("int"),
40
+ * };
37
41
  * const command = new ListContainersCommand(input);
38
42
  * const response = await client.send(command);
39
43
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
26
26
  * import { MediaStoreClient, ListTagsForResourceCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
27
27
  * // const { MediaStoreClient, ListTagsForResourceCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
28
28
  * const client = new MediaStoreClient(config);
29
+ * const input = { // ListTagsForResourceInput
30
+ * Resource: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -32,6 +32,10 @@ export interface PutContainerPolicyCommandOutput extends PutContainerPolicyOutpu
32
32
  * import { MediaStoreClient, PutContainerPolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
33
33
  * // const { MediaStoreClient, PutContainerPolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
34
34
  * const client = new MediaStoreClient(config);
35
+ * const input = { // PutContainerPolicyInput
36
+ * ContainerName: "STRING_VALUE", // required
37
+ * Policy: "STRING_VALUE", // required
38
+ * };
35
39
  * const command = new PutContainerPolicyCommand(input);
36
40
  * const response = await client.send(command);
37
41
  * ```
@@ -36,6 +36,26 @@ export interface PutCorsPolicyCommandOutput extends PutCorsPolicyOutput, __Metad
36
36
  * import { MediaStoreClient, PutCorsPolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
37
37
  * // const { MediaStoreClient, PutCorsPolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
38
38
  * const client = new MediaStoreClient(config);
39
+ * const input = { // PutCorsPolicyInput
40
+ * ContainerName: "STRING_VALUE", // required
41
+ * CorsPolicy: [ // CorsPolicy // required
42
+ * { // CorsRule
43
+ * AllowedOrigins: [ // AllowedOrigins // required
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * AllowedMethods: [ // AllowedMethods
47
+ * "STRING_VALUE",
48
+ * ],
49
+ * AllowedHeaders: [ // AllowedHeaders // required
50
+ * "STRING_VALUE",
51
+ * ],
52
+ * MaxAgeSeconds: Number("int"),
53
+ * ExposeHeaders: [ // ExposeHeaders
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * },
57
+ * ],
58
+ * };
39
59
  * const command = new PutCorsPolicyCommand(input);
40
60
  * const response = await client.send(command);
41
61
  * ```
@@ -27,6 +27,10 @@ export interface PutLifecyclePolicyCommandOutput extends PutLifecyclePolicyOutpu
27
27
  * import { MediaStoreClient, PutLifecyclePolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
28
28
  * // const { MediaStoreClient, PutLifecyclePolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
29
29
  * const client = new MediaStoreClient(config);
30
+ * const input = { // PutLifecyclePolicyInput
31
+ * ContainerName: "STRING_VALUE", // required
32
+ * LifecyclePolicy: "STRING_VALUE", // required
33
+ * };
30
34
  * const command = new PutLifecyclePolicyCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,18 @@ export interface PutMetricPolicyCommandOutput extends PutMetricPolicyOutput, __M
26
26
  * import { MediaStoreClient, PutMetricPolicyCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
27
27
  * // const { MediaStoreClient, PutMetricPolicyCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
28
28
  * const client = new MediaStoreClient(config);
29
+ * const input = { // PutMetricPolicyInput
30
+ * ContainerName: "STRING_VALUE", // required
31
+ * MetricPolicy: { // MetricPolicy
32
+ * ContainerLevelMetrics: "STRING_VALUE", // required
33
+ * MetricPolicyRules: [ // MetricPolicyRules
34
+ * { // MetricPolicyRule
35
+ * ObjectGroup: "STRING_VALUE", // required
36
+ * ObjectGroupName: "STRING_VALUE", // required
37
+ * },
38
+ * ],
39
+ * },
40
+ * };
29
41
  * const command = new PutMetricPolicyCommand(input);
30
42
  * const response = await client.send(command);
31
43
  * ```
@@ -26,6 +26,9 @@ export interface StartAccessLoggingCommandOutput extends StartAccessLoggingOutpu
26
26
  * import { MediaStoreClient, StartAccessLoggingCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
27
27
  * // const { MediaStoreClient, StartAccessLoggingCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
28
28
  * const client = new MediaStoreClient(config);
29
+ * const input = { // StartAccessLoggingInput
30
+ * ContainerName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StartAccessLoggingCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface StopAccessLoggingCommandOutput extends StopAccessLoggingOutput,
26
26
  * import { MediaStoreClient, StopAccessLoggingCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
27
27
  * // const { MediaStoreClient, StopAccessLoggingCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
28
28
  * const client = new MediaStoreClient(config);
29
+ * const input = { // StopAccessLoggingInput
30
+ * ContainerName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopAccessLoggingCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -28,6 +28,15 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
28
28
  * import { MediaStoreClient, TagResourceCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
29
29
  * // const { MediaStoreClient, TagResourceCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
30
30
  * const client = new MediaStoreClient(config);
31
+ * const input = { // TagResourceInput
32
+ * Resource: "STRING_VALUE", // required
33
+ * Tags: [ // TagList // required
34
+ * { // Tag
35
+ * Key: "STRING_VALUE", // required
36
+ * Value: "STRING_VALUE",
37
+ * },
38
+ * ],
39
+ * };
31
40
  * const command = new TagResourceCommand(input);
32
41
  * const response = await client.send(command);
33
42
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
26
26
  * import { MediaStoreClient, UntagResourceCommand } from "@aws-sdk/client-mediastore"; // ES Modules import
27
27
  * // const { MediaStoreClient, UntagResourceCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import
28
28
  * const client = new MediaStoreClient(config);
29
+ * const input = { // UntagResourceInput
30
+ * Resource: "STRING_VALUE", // required
31
+ * TagKeys: [ // TagKeyList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediastore",
3
3
  "description": "AWS SDK for JavaScript Mediastore Client for Node.js, Browser and React Native",
4
- "version": "3.299.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "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",
@@ -32,12 +32,12 @@
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.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.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.299.0",
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
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "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
  },