@aws-sdk/client-mediastore 3.295.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 +29 -29
@@ -22,11 +22,13 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
22
22
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
23
23
  import { MediaStoreClient } from "./MediaStoreClient";
24
24
  /**
25
+ * @public
25
26
  * <p>An AWS Elemental MediaStore container is a namespace that holds folders and objects.
26
27
  * You use a container endpoint to create, read, and delete objects. </p>
27
28
  */
28
29
  export declare class MediaStore extends MediaStoreClient {
29
30
  /**
31
+ * @public
30
32
  * <p>Creates a storage container to hold objects. A container is similar to a bucket in
31
33
  * the Amazon S3 service.</p>
32
34
  */
@@ -34,6 +36,7 @@ export declare class MediaStore extends MediaStoreClient {
34
36
  createContainer(args: CreateContainerCommandInput, cb: (err: any, data?: CreateContainerCommandOutput) => void): void;
35
37
  createContainer(args: CreateContainerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContainerCommandOutput) => void): void;
36
38
  /**
39
+ * @public
37
40
  * <p>Deletes the specified container. Before you make a <code>DeleteContainer</code>
38
41
  * request, delete any objects in the container or in any folders in the container. You can
39
42
  * delete only empty containers. </p>
@@ -42,12 +45,14 @@ export declare class MediaStore extends MediaStoreClient {
42
45
  deleteContainer(args: DeleteContainerCommandInput, cb: (err: any, data?: DeleteContainerCommandOutput) => void): void;
43
46
  deleteContainer(args: DeleteContainerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContainerCommandOutput) => void): void;
44
47
  /**
48
+ * @public
45
49
  * <p>Deletes the access policy that is associated with the specified container.</p>
46
50
  */
47
51
  deleteContainerPolicy(args: DeleteContainerPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContainerPolicyCommandOutput>;
48
52
  deleteContainerPolicy(args: DeleteContainerPolicyCommandInput, cb: (err: any, data?: DeleteContainerPolicyCommandOutput) => void): void;
49
53
  deleteContainerPolicy(args: DeleteContainerPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContainerPolicyCommandOutput) => void): void;
50
54
  /**
55
+ * @public
51
56
  * <p>Deletes the cross-origin resource sharing (CORS) configuration information that is
52
57
  * set for the container.</p>
53
58
  * <p>To use this operation, you must have permission to perform the
@@ -58,18 +63,21 @@ export declare class MediaStore extends MediaStoreClient {
58
63
  deleteCorsPolicy(args: DeleteCorsPolicyCommandInput, cb: (err: any, data?: DeleteCorsPolicyCommandOutput) => void): void;
59
64
  deleteCorsPolicy(args: DeleteCorsPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCorsPolicyCommandOutput) => void): void;
60
65
  /**
66
+ * @public
61
67
  * <p>Removes an object lifecycle policy from a container. It takes up to 20 minutes for the change to take effect.</p>
62
68
  */
63
69
  deleteLifecyclePolicy(args: DeleteLifecyclePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLifecyclePolicyCommandOutput>;
64
70
  deleteLifecyclePolicy(args: DeleteLifecyclePolicyCommandInput, cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void): void;
65
71
  deleteLifecyclePolicy(args: DeleteLifecyclePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void): void;
66
72
  /**
73
+ * @public
67
74
  * <p>Deletes the metric policy that is associated with the specified container. If there is no metric policy associated with the container, MediaStore doesn't send metrics to CloudWatch.</p>
68
75
  */
69
76
  deleteMetricPolicy(args: DeleteMetricPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMetricPolicyCommandOutput>;
70
77
  deleteMetricPolicy(args: DeleteMetricPolicyCommandInput, cb: (err: any, data?: DeleteMetricPolicyCommandOutput) => void): void;
71
78
  deleteMetricPolicy(args: DeleteMetricPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMetricPolicyCommandOutput) => void): void;
72
79
  /**
80
+ * @public
73
81
  * <p>Retrieves the properties of the requested container. This request is commonly used to
74
82
  * retrieve the endpoint of a container. An endpoint is a value assigned by the service when a
75
83
  * new container is created. A container's endpoint does not change after it has been
@@ -82,6 +90,7 @@ export declare class MediaStore extends MediaStoreClient {
82
90
  describeContainer(args: DescribeContainerCommandInput, cb: (err: any, data?: DescribeContainerCommandOutput) => void): void;
83
91
  describeContainer(args: DescribeContainerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContainerCommandOutput) => void): void;
84
92
  /**
93
+ * @public
85
94
  * <p>Retrieves the access policy for the specified container. For information about the
86
95
  * data that is included in an access policy, see the <a href="https://aws.amazon.com/documentation/iam/">AWS Identity and Access Management User
87
96
  * Guide</a>.</p>
@@ -90,6 +99,7 @@ export declare class MediaStore extends MediaStoreClient {
90
99
  getContainerPolicy(args: GetContainerPolicyCommandInput, cb: (err: any, data?: GetContainerPolicyCommandOutput) => void): void;
91
100
  getContainerPolicy(args: GetContainerPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContainerPolicyCommandOutput) => void): void;
92
101
  /**
102
+ * @public
93
103
  * <p>Returns the cross-origin resource sharing (CORS) configuration information that is
94
104
  * set for the container.</p>
95
105
  * <p>To use this operation, you must have permission to perform the
@@ -100,18 +110,21 @@ export declare class MediaStore extends MediaStoreClient {
100
110
  getCorsPolicy(args: GetCorsPolicyCommandInput, cb: (err: any, data?: GetCorsPolicyCommandOutput) => void): void;
101
111
  getCorsPolicy(args: GetCorsPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCorsPolicyCommandOutput) => void): void;
102
112
  /**
113
+ * @public
103
114
  * <p>Retrieves the object lifecycle policy that is assigned to a container.</p>
104
115
  */
105
116
  getLifecyclePolicy(args: GetLifecyclePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetLifecyclePolicyCommandOutput>;
106
117
  getLifecyclePolicy(args: GetLifecyclePolicyCommandInput, cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void): void;
107
118
  getLifecyclePolicy(args: GetLifecyclePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void): void;
108
119
  /**
120
+ * @public
109
121
  * <p>Returns the metric policy for the specified container. </p>
110
122
  */
111
123
  getMetricPolicy(args: GetMetricPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetMetricPolicyCommandOutput>;
112
124
  getMetricPolicy(args: GetMetricPolicyCommandInput, cb: (err: any, data?: GetMetricPolicyCommandOutput) => void): void;
113
125
  getMetricPolicy(args: GetMetricPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMetricPolicyCommandOutput) => void): void;
114
126
  /**
127
+ * @public
115
128
  * <p>Lists the properties of all containers in AWS Elemental MediaStore. </p>
116
129
  * <p>You can query to receive all the containers in one response. Or you can include the
117
130
  * <code>MaxResults</code> parameter to receive a limited number of containers in each
@@ -126,12 +139,14 @@ export declare class MediaStore extends MediaStoreClient {
126
139
  listContainers(args: ListContainersCommandInput, cb: (err: any, data?: ListContainersCommandOutput) => void): void;
127
140
  listContainers(args: ListContainersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContainersCommandOutput) => void): void;
128
141
  /**
142
+ * @public
129
143
  * <p>Returns a list of the tags assigned to the specified container. </p>
130
144
  */
131
145
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
132
146
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
133
147
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
134
148
  /**
149
+ * @public
135
150
  * <p>Creates an access policy for the specified container to restrict the users and
136
151
  * clients that can access it. For information about the data that is included in an access
137
152
  * policy, see the <a href="https://aws.amazon.com/documentation/iam/">AWS Identity and
@@ -144,6 +159,7 @@ export declare class MediaStore extends MediaStoreClient {
144
159
  putContainerPolicy(args: PutContainerPolicyCommandInput, cb: (err: any, data?: PutContainerPolicyCommandOutput) => void): void;
145
160
  putContainerPolicy(args: PutContainerPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutContainerPolicyCommandOutput) => void): void;
146
161
  /**
162
+ * @public
147
163
  * <p>Sets the cross-origin resource sharing (CORS) configuration on a container so that
148
164
  * the container can service cross-origin requests. For example, you might want to enable a
149
165
  * request whose origin is http://www.example.com to access your AWS Elemental MediaStore
@@ -160,6 +176,7 @@ export declare class MediaStore extends MediaStoreClient {
160
176
  putCorsPolicy(args: PutCorsPolicyCommandInput, cb: (err: any, data?: PutCorsPolicyCommandOutput) => void): void;
161
177
  putCorsPolicy(args: PutCorsPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutCorsPolicyCommandOutput) => void): void;
162
178
  /**
179
+ * @public
163
180
  * <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>
164
181
  * <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>
165
182
  */
@@ -167,24 +184,28 @@ export declare class MediaStore extends MediaStoreClient {
167
184
  putLifecyclePolicy(args: PutLifecyclePolicyCommandInput, cb: (err: any, data?: PutLifecyclePolicyCommandOutput) => void): void;
168
185
  putLifecyclePolicy(args: PutLifecyclePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutLifecyclePolicyCommandOutput) => void): void;
169
186
  /**
187
+ * @public
170
188
  * <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>
171
189
  */
172
190
  putMetricPolicy(args: PutMetricPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutMetricPolicyCommandOutput>;
173
191
  putMetricPolicy(args: PutMetricPolicyCommandInput, cb: (err: any, data?: PutMetricPolicyCommandOutput) => void): void;
174
192
  putMetricPolicy(args: PutMetricPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutMetricPolicyCommandOutput) => void): void;
175
193
  /**
194
+ * @public
176
195
  * <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>
177
196
  */
178
197
  startAccessLogging(args: StartAccessLoggingCommandInput, options?: __HttpHandlerOptions): Promise<StartAccessLoggingCommandOutput>;
179
198
  startAccessLogging(args: StartAccessLoggingCommandInput, cb: (err: any, data?: StartAccessLoggingCommandOutput) => void): void;
180
199
  startAccessLogging(args: StartAccessLoggingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartAccessLoggingCommandOutput) => void): void;
181
200
  /**
201
+ * @public
182
202
  * <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>
183
203
  */
184
204
  stopAccessLogging(args: StopAccessLoggingCommandInput, options?: __HttpHandlerOptions): Promise<StopAccessLoggingCommandOutput>;
185
205
  stopAccessLogging(args: StopAccessLoggingCommandInput, cb: (err: any, data?: StopAccessLoggingCommandOutput) => void): void;
186
206
  stopAccessLogging(args: StopAccessLoggingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopAccessLoggingCommandOutput) => void): void;
187
207
  /**
208
+ * @public
188
209
  * <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
189
210
  * 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
190
211
  * 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>
@@ -193,6 +214,7 @@ export declare class MediaStore extends MediaStoreClient {
193
214
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
194
215
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
195
216
  /**
217
+ * @public
196
218
  * <p>Removes tags from the specified container. You can specify one or more tags to remove. </p>
197
219
  */
198
220
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
@@ -29,15 +29,24 @@ import { StopAccessLoggingCommandInput, StopAccessLoggingCommandOutput } from ".
29
29
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
30
30
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
31
31
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
32
+ /**
33
+ * @public
34
+ */
32
35
  export type ServiceInputTypes = CreateContainerCommandInput | DeleteContainerCommandInput | DeleteContainerPolicyCommandInput | DeleteCorsPolicyCommandInput | DeleteLifecyclePolicyCommandInput | DeleteMetricPolicyCommandInput | DescribeContainerCommandInput | GetContainerPolicyCommandInput | GetCorsPolicyCommandInput | GetLifecyclePolicyCommandInput | GetMetricPolicyCommandInput | ListContainersCommandInput | ListTagsForResourceCommandInput | PutContainerPolicyCommandInput | PutCorsPolicyCommandInput | PutLifecyclePolicyCommandInput | PutMetricPolicyCommandInput | StartAccessLoggingCommandInput | StopAccessLoggingCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
36
+ /**
37
+ * @public
38
+ */
33
39
  export type ServiceOutputTypes = CreateContainerCommandOutput | DeleteContainerCommandOutput | DeleteContainerPolicyCommandOutput | DeleteCorsPolicyCommandOutput | DeleteLifecyclePolicyCommandOutput | DeleteMetricPolicyCommandOutput | DescribeContainerCommandOutput | GetContainerPolicyCommandOutput | GetCorsPolicyCommandOutput | GetLifecyclePolicyCommandOutput | GetMetricPolicyCommandOutput | ListContainersCommandOutput | ListTagsForResourceCommandOutput | PutContainerPolicyCommandOutput | PutCorsPolicyCommandOutput | PutLifecyclePolicyCommandOutput | PutMetricPolicyCommandOutput | StartAccessLoggingCommandOutput | StopAccessLoggingCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
40
+ /**
41
+ * @public
42
+ */
34
43
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
35
44
  /**
36
45
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
37
46
  */
38
47
  requestHandler?: __HttpHandler;
39
48
  /**
40
- * A constructor for a class implementing the {@link __Checksum} interface
49
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
41
50
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
42
51
  * @internal
43
52
  */
@@ -127,23 +136,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
127
136
  */
128
137
  logger?: __Logger;
129
138
  /**
130
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
139
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
131
140
  */
132
141
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
133
142
  }
143
+ /**
144
+ * @public
145
+ */
134
146
  type MediaStoreClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
135
147
  /**
136
- * The configuration interface of MediaStoreClient class constructor that set the region, credentials and other options.
148
+ * @public
149
+ *
150
+ * The configuration interface of MediaStoreClient class constructor that set the region, credentials and other options.
137
151
  */
138
152
  export interface MediaStoreClientConfig extends MediaStoreClientConfigType {
139
153
  }
154
+ /**
155
+ * @public
156
+ */
140
157
  type MediaStoreClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
141
158
  /**
142
- * The resolved configuration interface of MediaStoreClient class. This is resolved and normalized from the {@link MediaStoreClientConfig | constructor configuration interface}.
159
+ * @public
160
+ *
161
+ * The resolved configuration interface of MediaStoreClient class. This is resolved and normalized from the {@link MediaStoreClientConfig | constructor configuration interface}.
143
162
  */
144
163
  export interface MediaStoreClientResolvedConfig extends MediaStoreClientResolvedConfigType {
145
164
  }
146
165
  /**
166
+ * @public
147
167
  * <p>An AWS Elemental MediaStore container is a namespace that holds folders and objects.
148
168
  * You use a container endpoint to create, read, and delete objects. </p>
149
169
  */
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient";
5
5
  import { CreateContainerInput, CreateContainerOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateContainerCommand}.
8
10
  */
9
11
  export interface CreateContainerCommandInput extends CreateContainerInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateContainerCommand}.
13
17
  */
14
18
  export interface CreateContainerCommandOutput extends CreateContainerOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a storage container to hold objects. A container is similar to a bucket in
18
23
  * the Amazon S3 service.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface CreateContainerCommandOutput extends CreateContainerOutput, __M
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param CreateContainerCommandInput - {@link CreateContainerCommandInput}
35
+ * @returns {@link CreateContainerCommandOutput}
29
36
  * @see {@link CreateContainerCommandInput} for command's `input` shape.
30
37
  * @see {@link CreateContainerCommandOutput} for command's `response` shape.
31
38
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -45,11 +52,20 @@ export interface CreateContainerCommandOutput extends CreateContainerOutput, __M
45
52
  export declare class CreateContainerCommand extends $Command<CreateContainerCommandInput, CreateContainerCommandOutput, MediaStoreClientResolvedConfig> {
46
53
  readonly input: CreateContainerCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: CreateContainerCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateContainerCommandInput, CreateContainerCommandOutput>;
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 { DeleteContainerInput, DeleteContainerOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteContainerCommand}.
8
10
  */
9
11
  export interface DeleteContainerCommandInput extends DeleteContainerInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteContainerCommand}.
13
17
  */
14
18
  export interface DeleteContainerCommandOutput extends DeleteContainerOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the specified container. Before you make a <code>DeleteContainer</code>
18
23
  * request, delete any objects in the container or in any folders in the container. You can
19
24
  * delete only empty containers. </p>
@@ -27,6 +32,8 @@ export interface DeleteContainerCommandOutput extends DeleteContainerOutput, __M
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeleteContainerCommandInput - {@link DeleteContainerCommandInput}
36
+ * @returns {@link DeleteContainerCommandOutput}
30
37
  * @see {@link DeleteContainerCommandInput} for command's `input` shape.
31
38
  * @see {@link DeleteContainerCommandOutput} for command's `response` shape.
32
39
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -46,11 +53,20 @@ export interface DeleteContainerCommandOutput extends DeleteContainerOutput, __M
46
53
  export declare class DeleteContainerCommand extends $Command<DeleteContainerCommandInput, DeleteContainerCommandOutput, MediaStoreClientResolvedConfig> {
47
54
  readonly input: DeleteContainerCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: DeleteContainerCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteContainerCommandInput, DeleteContainerCommandOutput>;
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 { DeleteContainerPolicyInput, DeleteContainerPolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteContainerPolicyCommand}.
8
10
  */
9
11
  export interface DeleteContainerPolicyCommandInput extends DeleteContainerPolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteContainerPolicyCommand}.
13
17
  */
14
18
  export interface DeleteContainerPolicyCommandOutput extends DeleteContainerPolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the access policy that is associated with 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 DeleteContainerPolicyCommandOutput extends DeleteContainerPolic
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteContainerPolicyCommandInput - {@link DeleteContainerPolicyCommandInput}
34
+ * @returns {@link DeleteContainerPolicyCommandOutput}
28
35
  * @see {@link DeleteContainerPolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteContainerPolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -47,11 +54,20 @@ export interface DeleteContainerPolicyCommandOutput extends DeleteContainerPolic
47
54
  export declare class DeleteContainerPolicyCommand extends $Command<DeleteContainerPolicyCommandInput, DeleteContainerPolicyCommandOutput, MediaStoreClientResolvedConfig> {
48
55
  readonly input: DeleteContainerPolicyCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: DeleteContainerPolicyCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteContainerPolicyCommandInput, DeleteContainerPolicyCommandOutput>;
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 { DeleteCorsPolicyInput, DeleteCorsPolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteCorsPolicyCommand}.
8
10
  */
9
11
  export interface DeleteCorsPolicyCommandInput extends DeleteCorsPolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteCorsPolicyCommand}.
13
17
  */
14
18
  export interface DeleteCorsPolicyCommandOutput extends DeleteCorsPolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes 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 DeleteCorsPolicyCommandOutput extends DeleteCorsPolicyOutput, _
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param DeleteCorsPolicyCommandInput - {@link DeleteCorsPolicyCommandInput}
38
+ * @returns {@link DeleteCorsPolicyCommandOutput}
32
39
  * @see {@link DeleteCorsPolicyCommandInput} for command's `input` shape.
33
40
  * @see {@link DeleteCorsPolicyCommandOutput} for command's `response` shape.
34
41
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -51,11 +58,20 @@ export interface DeleteCorsPolicyCommandOutput extends DeleteCorsPolicyOutput, _
51
58
  export declare class DeleteCorsPolicyCommand extends $Command<DeleteCorsPolicyCommandInput, DeleteCorsPolicyCommandOutput, MediaStoreClientResolvedConfig> {
52
59
  readonly input: DeleteCorsPolicyCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: DeleteCorsPolicyCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCorsPolicyCommandInput, DeleteCorsPolicyCommandOutput>;
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 { DeleteLifecyclePolicyInput, DeleteLifecyclePolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteLifecyclePolicyCommand}.
8
10
  */
9
11
  export interface DeleteLifecyclePolicyCommandInput extends DeleteLifecyclePolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteLifecyclePolicyCommand}.
13
17
  */
14
18
  export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes an object lifecycle policy from a container. It takes up to 20 minutes for the change 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 DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolic
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteLifecyclePolicyCommandInput - {@link DeleteLifecyclePolicyCommandInput}
34
+ * @returns {@link DeleteLifecyclePolicyCommandOutput}
28
35
  * @see {@link DeleteLifecyclePolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteLifecyclePolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -47,11 +54,20 @@ export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolic
47
54
  export declare class DeleteLifecyclePolicyCommand extends $Command<DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig> {
48
55
  readonly input: DeleteLifecyclePolicyCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: DeleteLifecyclePolicyCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput>;
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 { DeleteMetricPolicyInput, DeleteMetricPolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteMetricPolicyCommand}.
8
10
  */
9
11
  export interface DeleteMetricPolicyCommandInput extends DeleteMetricPolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteMetricPolicyCommand}.
13
17
  */
14
18
  export interface DeleteMetricPolicyCommandOutput extends DeleteMetricPolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the metric policy that is associated with the specified container. If there is no metric policy associated with the container, MediaStore doesn't send metrics to CloudWatch.</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 DeleteMetricPolicyCommandOutput extends DeleteMetricPolicyOutpu
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteMetricPolicyCommandInput - {@link DeleteMetricPolicyCommandInput}
34
+ * @returns {@link DeleteMetricPolicyCommandOutput}
28
35
  * @see {@link DeleteMetricPolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteMetricPolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -47,11 +54,20 @@ export interface DeleteMetricPolicyCommandOutput extends DeleteMetricPolicyOutpu
47
54
  export declare class DeleteMetricPolicyCommand extends $Command<DeleteMetricPolicyCommandInput, DeleteMetricPolicyCommandOutput, MediaStoreClientResolvedConfig> {
48
55
  readonly input: DeleteMetricPolicyCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: DeleteMetricPolicyCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMetricPolicyCommandInput, DeleteMetricPolicyCommandOutput>;
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 { DescribeContainerInput, DescribeContainerOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeContainerCommand}.
8
10
  */
9
11
  export interface DescribeContainerCommandInput extends DescribeContainerInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeContainerCommand}.
13
17
  */
14
18
  export interface DescribeContainerCommandOutput extends DescribeContainerOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the properties of the requested container. This request is commonly used to
18
23
  * retrieve the endpoint of a container. An endpoint is a value assigned by the service when a
19
24
  * new container is created. A container's endpoint does not change after it has been
@@ -31,6 +36,8 @@ export interface DescribeContainerCommandOutput extends DescribeContainerOutput,
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param DescribeContainerCommandInput - {@link DescribeContainerCommandInput}
40
+ * @returns {@link DescribeContainerCommandOutput}
34
41
  * @see {@link DescribeContainerCommandInput} for command's `input` shape.
35
42
  * @see {@link DescribeContainerCommandOutput} for command's `response` shape.
36
43
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -46,11 +53,20 @@ export interface DescribeContainerCommandOutput extends DescribeContainerOutput,
46
53
  export declare class DescribeContainerCommand extends $Command<DescribeContainerCommandInput, DescribeContainerCommandOutput, MediaStoreClientResolvedConfig> {
47
54
  readonly input: DescribeContainerCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: DescribeContainerCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeContainerCommandInput, DescribeContainerCommandOutput>;
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 { GetContainerPolicyInput, GetContainerPolicyOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetContainerPolicyCommand}.
8
10
  */
9
11
  export interface GetContainerPolicyCommandInput extends GetContainerPolicyInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetContainerPolicyCommand}.
13
17
  */
14
18
  export interface GetContainerPolicyCommandOutput extends GetContainerPolicyOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the access policy for the specified container. For information about the
18
23
  * data that is included in an access policy, see the <a href="https://aws.amazon.com/documentation/iam/">AWS Identity and Access Management User
19
24
  * Guide</a>.</p>
@@ -27,6 +32,8 @@ export interface GetContainerPolicyCommandOutput extends GetContainerPolicyOutpu
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GetContainerPolicyCommandInput - {@link GetContainerPolicyCommandInput}
36
+ * @returns {@link GetContainerPolicyCommandOutput}
30
37
  * @see {@link GetContainerPolicyCommandInput} for command's `input` shape.
31
38
  * @see {@link GetContainerPolicyCommandOutput} for command's `response` shape.
32
39
  * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetContainerPolicyCommandOutput extends GetContainerPolicyOutpu
49
56
  export declare class GetContainerPolicyCommand extends $Command<GetContainerPolicyCommandInput, GetContainerPolicyCommandOutput, MediaStoreClientResolvedConfig> {
50
57
  readonly input: GetContainerPolicyCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetContainerPolicyCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaStoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContainerPolicyCommandInput, GetContainerPolicyCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }