@aws-sdk/client-mediastore 3.296.0 → 3.297.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 (28) hide show
  1. package/dist-types/MediaStore.d.ts +22 -0
  2. package/dist-types/MediaStoreClient.d.ts +24 -4
  3. package/dist-types/commands/CreateContainerCommand.d.ts +16 -0
  4. package/dist-types/commands/DeleteContainerCommand.d.ts +16 -0
  5. package/dist-types/commands/DeleteContainerPolicyCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteCorsPolicyCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteLifecyclePolicyCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteMetricPolicyCommand.d.ts +16 -0
  9. package/dist-types/commands/DescribeContainerCommand.d.ts +16 -0
  10. package/dist-types/commands/GetContainerPolicyCommand.d.ts +16 -0
  11. package/dist-types/commands/GetCorsPolicyCommand.d.ts +16 -0
  12. package/dist-types/commands/GetLifecyclePolicyCommand.d.ts +16 -0
  13. package/dist-types/commands/GetMetricPolicyCommand.d.ts +16 -0
  14. package/dist-types/commands/ListContainersCommand.d.ts +16 -0
  15. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  16. package/dist-types/commands/PutContainerPolicyCommand.d.ts +16 -0
  17. package/dist-types/commands/PutCorsPolicyCommand.d.ts +16 -0
  18. package/dist-types/commands/PutLifecyclePolicyCommand.d.ts +16 -0
  19. package/dist-types/commands/PutMetricPolicyCommand.d.ts +16 -0
  20. package/dist-types/commands/StartAccessLoggingCommand.d.ts +16 -0
  21. package/dist-types/commands/StopAccessLoggingCommand.d.ts +16 -0
  22. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  24. package/dist-types/models/MediaStoreServiceException.d.ts +2 -0
  25. package/dist-types/models/models_0.d.ts +146 -0
  26. package/dist-types/pagination/Interfaces.d.ts +3 -0
  27. package/dist-types/pagination/ListContainersPaginator.d.ts +3 -0
  28. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { GetCorsPolicyInput, GetCorsPolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetCorsPolicyCommand}.
8
10
  */
9
11
  export interface GetCorsPolicyCommandInput extends GetCorsPolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetCorsPolicyCommand}.
13
17
  */
14
18
  export interface GetCorsPolicyCommandOutput extends GetCorsPolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the cross-origin resource sharing (CORS) configuration information that is
18
23
  * set for the container.</p>
19
24
  * <p>To use this operation, you must have permission to perform the
@@ -29,6 +34,8 @@ export interface GetCorsPolicyCommandOutput extends GetCorsPolicyOutput, __Metad
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param GetCorsPolicyCommandInput - {@link GetCorsPolicyCommandInput}
38
+ * @returns {@link GetCorsPolicyCommandOutput}
32
39
  * @see {@link GetCorsPolicyCommandInput} for command's `input` shape.
33
40
  * @see {@link GetCorsPolicyCommandOutput} for command's `response` shape.
34
41
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -51,11 +58,20 @@ export interface GetCorsPolicyCommandOutput extends GetCorsPolicyOutput, __Metad
51
58
  export declare class GetCorsPolicyCommand extends $Command<GetCorsPolicyCommandInput, GetCorsPolicyCommandOutput, MediaStoreClientResolvedConfig> {
52
59
  readonly input: GetCorsPolicyCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: GetCorsPolicyCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCorsPolicyCommandInput, GetCorsPolicyCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { GetLifecyclePolicyInput, GetLifecyclePolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetLifecyclePolicyCommand}.
8
10
  */
9
11
  export interface GetLifecyclePolicyCommandInput extends GetLifecyclePolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetLifecyclePolicyCommand}.
13
17
  */
14
18
  export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the object lifecycle policy that is assigned to a container.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyOutpu
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetLifecyclePolicyCommandInput - {@link GetLifecyclePolicyCommandInput}
34
+ * @returns {@link GetLifecyclePolicyCommandOutput}
28
35
  * @see {@link GetLifecyclePolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link GetLifecyclePolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -47,11 +54,20 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyOutpu
47
54
  export declare class GetLifecyclePolicyCommand extends $Command<GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig> {
48
55
  readonly input: GetLifecyclePolicyCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: GetLifecyclePolicyCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { GetMetricPolicyInput, GetMetricPolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetMetricPolicyCommand}.
8
10
  */
9
11
  export interface GetMetricPolicyCommandInput extends GetMetricPolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetMetricPolicyCommand}.
13
17
  */
14
18
  export interface GetMetricPolicyCommandOutput extends GetMetricPolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the metric policy for the specified container. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetMetricPolicyCommandOutput extends GetMetricPolicyOutput, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetMetricPolicyCommandInput - {@link GetMetricPolicyCommandInput}
34
+ * @returns {@link GetMetricPolicyCommandOutput}
28
35
  * @see {@link GetMetricPolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link GetMetricPolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -47,11 +54,20 @@ export interface GetMetricPolicyCommandOutput extends GetMetricPolicyOutput, __M
47
54
  export declare class GetMetricPolicyCommand extends $Command<GetMetricPolicyCommandInput, GetMetricPolicyCommandOutput, MediaStoreClientResolvedConfig> {
48
55
  readonly input: GetMetricPolicyCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: GetMetricPolicyCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMetricPolicyCommandInput, GetMetricPolicyCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { ListContainersInput, ListContainersOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListContainersCommand}.
8
10
  */
9
11
  export interface ListContainersCommandInput extends ListContainersInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListContainersCommand}.
13
17
  */
14
18
  export interface ListContainersCommandOutput extends ListContainersOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the properties of all containers in AWS Elemental MediaStore. </p>
18
23
  * <p>You can query to receive all the containers in one response. Or you can include the
19
24
  * <code>MaxResults</code> parameter to receive a limited number of containers in each
@@ -33,6 +38,8 @@ export interface ListContainersCommandOutput extends ListContainersOutput, __Met
33
38
  * const response = await client.send(command);
34
39
  * ```
35
40
  *
41
+ * @param ListContainersCommandInput - {@link ListContainersCommandInput}
42
+ * @returns {@link ListContainersCommandOutput}
36
43
  * @see {@link ListContainersCommandInput} for command's `input` shape.
37
44
  * @see {@link ListContainersCommandOutput} for command's `response` shape.
38
45
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -45,11 +52,20 @@ export interface ListContainersCommandOutput extends ListContainersOutput, __Met
45
52
  export declare class ListContainersCommand extends $Command<ListContainersCommandInput, ListContainersCommandOutput, MediaStoreClientResolvedConfig> {
46
53
  readonly input: ListContainersCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: ListContainersCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListContainersCommandInput, ListContainersCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of the tags assigned to the specified container. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -44,11 +51,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
44
51
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaStoreClientResolvedConfig> {
45
52
  readonly input: ListTagsForResourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListTagsForResourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { PutContainerPolicyInput, PutContainerPolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutContainerPolicyCommand}.
8
10
  */
9
11
  export interface PutContainerPolicyCommandInput extends PutContainerPolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutContainerPolicyCommand}.
13
17
  */
14
18
  export interface PutContainerPolicyCommandOutput extends PutContainerPolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates an access policy for the specified container to restrict the users and
18
23
  * clients that can access it. For information about the data that is included in an access
19
24
  * policy, see the <a href="https://aws.amazon.com/documentation/iam/">AWS Identity and
@@ -31,6 +36,8 @@ export interface PutContainerPolicyCommandOutput extends PutContainerPolicyOutpu
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param PutContainerPolicyCommandInput - {@link PutContainerPolicyCommandInput}
40
+ * @returns {@link PutContainerPolicyCommandOutput}
34
41
  * @see {@link PutContainerPolicyCommandInput} for command's `input` shape.
35
42
  * @see {@link PutContainerPolicyCommandOutput} for command's `response` shape.
36
43
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -50,11 +57,20 @@ export interface PutContainerPolicyCommandOutput extends PutContainerPolicyOutpu
50
57
  export declare class PutContainerPolicyCommand extends $Command<PutContainerPolicyCommandInput, PutContainerPolicyCommandOutput, MediaStoreClientResolvedConfig> {
51
58
  readonly input: PutContainerPolicyCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: PutContainerPolicyCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutContainerPolicyCommandInput, PutContainerPolicyCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { PutCorsPolicyInput, PutCorsPolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutCorsPolicyCommand}.
8
10
  */
9
11
  export interface PutCorsPolicyCommandInput extends PutCorsPolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutCorsPolicyCommand}.
13
17
  */
14
18
  export interface PutCorsPolicyCommandOutput extends PutCorsPolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Sets the cross-origin resource sharing (CORS) configuration on a container so that
18
23
  * the container can service cross-origin requests. For example, you might want to enable a
19
24
  * request whose origin is http://www.example.com to access your AWS Elemental MediaStore
@@ -35,6 +40,8 @@ export interface PutCorsPolicyCommandOutput extends PutCorsPolicyOutput, __Metad
35
40
  * const response = await client.send(command);
36
41
  * ```
37
42
  *
43
+ * @param PutCorsPolicyCommandInput - {@link PutCorsPolicyCommandInput}
44
+ * @returns {@link PutCorsPolicyCommandOutput}
38
45
  * @see {@link PutCorsPolicyCommandInput} for command's `input` shape.
39
46
  * @see {@link PutCorsPolicyCommandOutput} for command's `response` shape.
40
47
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -54,11 +61,20 @@ export interface PutCorsPolicyCommandOutput extends PutCorsPolicyOutput, __Metad
54
61
  export declare class PutCorsPolicyCommand extends $Command<PutCorsPolicyCommandInput, PutCorsPolicyCommandOutput, MediaStoreClientResolvedConfig> {
55
62
  readonly input: PutCorsPolicyCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: PutCorsPolicyCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutCorsPolicyCommandInput, PutCorsPolicyCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { PutLifecyclePolicyInput, PutLifecyclePolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutLifecyclePolicyCommand}.
8
10
  */
9
11
  export interface PutLifecyclePolicyCommandInput extends PutLifecyclePolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutLifecyclePolicyCommand}.
13
17
  */
14
18
  export interface PutLifecyclePolicyCommandOutput extends PutLifecyclePolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Writes an object lifecycle policy to a container. If the container already has an object lifecycle policy, the service replaces the existing policy with the new policy. It takes up to 20 minutes for the change to take effect.</p>
18
23
  * <p>For information about how to construct an object lifecycle policy, see <a href="https://docs.aws.amazon.com/mediastore/latest/ug/policies-object-lifecycle-components.html">Components of an Object Lifecycle Policy</a>.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface PutLifecyclePolicyCommandOutput extends PutLifecyclePolicyOutpu
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param PutLifecyclePolicyCommandInput - {@link PutLifecyclePolicyCommandInput}
35
+ * @returns {@link PutLifecyclePolicyCommandOutput}
29
36
  * @see {@link PutLifecyclePolicyCommandInput} for command's `input` shape.
30
37
  * @see {@link PutLifecyclePolicyCommandOutput} for command's `response` shape.
31
38
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -45,11 +52,20 @@ export interface PutLifecyclePolicyCommandOutput extends PutLifecyclePolicyOutpu
45
52
  export declare class PutLifecyclePolicyCommand extends $Command<PutLifecyclePolicyCommandInput, PutLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig> {
46
53
  readonly input: PutLifecyclePolicyCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: PutLifecyclePolicyCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutLifecyclePolicyCommandInput, PutLifecyclePolicyCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { PutMetricPolicyInput, PutMetricPolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutMetricPolicyCommand}.
8
10
  */
9
11
  export interface PutMetricPolicyCommandInput extends PutMetricPolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutMetricPolicyCommand}.
13
17
  */
14
18
  export interface PutMetricPolicyCommandOutput extends PutMetricPolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>The metric policy that you want to add to the container. A metric policy allows AWS Elemental MediaStore to send metrics to Amazon CloudWatch. It takes up to 20 minutes for the new policy to take effect.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface PutMetricPolicyCommandOutput extends PutMetricPolicyOutput, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param PutMetricPolicyCommandInput - {@link PutMetricPolicyCommandInput}
34
+ * @returns {@link PutMetricPolicyCommandOutput}
28
35
  * @see {@link PutMetricPolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link PutMetricPolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -44,11 +51,20 @@ export interface PutMetricPolicyCommandOutput extends PutMetricPolicyOutput, __M
44
51
  export declare class PutMetricPolicyCommand extends $Command<PutMetricPolicyCommandInput, PutMetricPolicyCommandOutput, MediaStoreClientResolvedConfig> {
45
52
  readonly input: PutMetricPolicyCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: PutMetricPolicyCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutMetricPolicyCommandInput, PutMetricPolicyCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { StartAccessLoggingInput, StartAccessLoggingOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartAccessLoggingCommand}.
8
10
  */
9
11
  export interface StartAccessLoggingCommandInput extends StartAccessLoggingInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartAccessLoggingCommand}.
13
17
  */
14
18
  export interface StartAccessLoggingCommandOutput extends StartAccessLoggingOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Starts access logging on the specified container. When you enable access logging on a container, MediaStore delivers access logs for objects stored in that container to Amazon CloudWatch Logs.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StartAccessLoggingCommandOutput extends StartAccessLoggingOutpu
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartAccessLoggingCommandInput - {@link StartAccessLoggingCommandInput}
34
+ * @returns {@link StartAccessLoggingCommandOutput}
28
35
  * @see {@link StartAccessLoggingCommandInput} for command's `input` shape.
29
36
  * @see {@link StartAccessLoggingCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -44,11 +51,20 @@ export interface StartAccessLoggingCommandOutput extends StartAccessLoggingOutpu
44
51
  export declare class StartAccessLoggingCommand extends $Command<StartAccessLoggingCommandInput, StartAccessLoggingCommandOutput, MediaStoreClientResolvedConfig> {
45
52
  readonly input: StartAccessLoggingCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: StartAccessLoggingCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartAccessLoggingCommandInput, StartAccessLoggingCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { StopAccessLoggingInput, StopAccessLoggingOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopAccessLoggingCommand}.
8
10
  */
9
11
  export interface StopAccessLoggingCommandInput extends StopAccessLoggingInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopAccessLoggingCommand}.
13
17
  */
14
18
  export interface StopAccessLoggingCommandOutput extends StopAccessLoggingOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops access logging on the specified container. When you stop access logging on a container, MediaStore stops sending access logs to Amazon CloudWatch Logs. These access logs are not saved and are not retrievable.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StopAccessLoggingCommandOutput extends StopAccessLoggingOutput,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopAccessLoggingCommandInput - {@link StopAccessLoggingCommandInput}
34
+ * @returns {@link StopAccessLoggingCommandOutput}
28
35
  * @see {@link StopAccessLoggingCommandInput} for command's `input` shape.
29
36
  * @see {@link StopAccessLoggingCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -44,11 +51,20 @@ export interface StopAccessLoggingCommandOutput extends StopAccessLoggingOutput,
44
51
  export declare class StopAccessLoggingCommand extends $Command<StopAccessLoggingCommandInput, StopAccessLoggingCommandOutput, MediaStoreClientResolvedConfig> {
45
52
  readonly input: StopAccessLoggingCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: StopAccessLoggingCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopAccessLoggingCommandInput, StopAccessLoggingCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { TagResourceInput, TagResourceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds tags to the specified AWS Elemental MediaStore container. Tags are key:value pairs that you can associate with AWS resources. For example, the
18
23
  * tag key might be "customer" and the tag value might be "companyA." You can specify one or more tags to add to each container. You can add up to 50
19
24
  * tags to each container. For more information about tagging, including naming and usage conventions, see <a href="https://docs.aws.amazon.com/mediastore/latest/ug/tagging.html">Tagging Resources in MediaStore</a>.</p>
@@ -27,6 +32,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
36
+ * @returns {@link TagResourceCommandOutput}
30
37
  * @see {@link TagResourceCommandInput} for command's `input` shape.
31
38
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
32
39
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -46,11 +53,20 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
46
53
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaStoreClientResolvedConfig> {
47
54
  readonly input: TagResourceCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: TagResourceCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes tags from the specified container. You can specify one or more tags to remove. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -44,11 +51,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
44
51
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaStoreClientResolvedConfig> {
45
52
  readonly input: UntagResourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: UntagResourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }