@aws-sdk/client-mediastore 3.168.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/MediaStore.d.ts +382 -110
- package/dist-types/ts3.4/MediaStoreClient.d.ts +255 -94
- package/dist-types/ts3.4/commands/CreateContainerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteContainerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteContainerPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteCorsPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteMetricPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeContainerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetContainerPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetCorsPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetLifecyclePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetMetricPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListContainersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutContainerPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutCorsPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutLifecyclePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutMetricPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartAccessLoggingCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StopAccessLoggingCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +21 -21
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/MediaStoreServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +647 -13
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListContainersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +257 -65
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-mediastore
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-mediastore
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-mediastore
|
|
@@ -1,110 +1,382 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateContainerCommandInput,
|
|
4
|
+
CreateContainerCommandOutput,
|
|
5
|
+
} from "./commands/CreateContainerCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeleteContainerCommandInput,
|
|
8
|
+
DeleteContainerCommandOutput,
|
|
9
|
+
} from "./commands/DeleteContainerCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteContainerPolicyCommandInput,
|
|
12
|
+
DeleteContainerPolicyCommandOutput,
|
|
13
|
+
} from "./commands/DeleteContainerPolicyCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteCorsPolicyCommandInput,
|
|
16
|
+
DeleteCorsPolicyCommandOutput,
|
|
17
|
+
} from "./commands/DeleteCorsPolicyCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteLifecyclePolicyCommandInput,
|
|
20
|
+
DeleteLifecyclePolicyCommandOutput,
|
|
21
|
+
} from "./commands/DeleteLifecyclePolicyCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteMetricPolicyCommandInput,
|
|
24
|
+
DeleteMetricPolicyCommandOutput,
|
|
25
|
+
} from "./commands/DeleteMetricPolicyCommand";
|
|
26
|
+
import {
|
|
27
|
+
DescribeContainerCommandInput,
|
|
28
|
+
DescribeContainerCommandOutput,
|
|
29
|
+
} from "./commands/DescribeContainerCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetContainerPolicyCommandInput,
|
|
32
|
+
GetContainerPolicyCommandOutput,
|
|
33
|
+
} from "./commands/GetContainerPolicyCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetCorsPolicyCommandInput,
|
|
36
|
+
GetCorsPolicyCommandOutput,
|
|
37
|
+
} from "./commands/GetCorsPolicyCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetLifecyclePolicyCommandInput,
|
|
40
|
+
GetLifecyclePolicyCommandOutput,
|
|
41
|
+
} from "./commands/GetLifecyclePolicyCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetMetricPolicyCommandInput,
|
|
44
|
+
GetMetricPolicyCommandOutput,
|
|
45
|
+
} from "./commands/GetMetricPolicyCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListContainersCommandInput,
|
|
48
|
+
ListContainersCommandOutput,
|
|
49
|
+
} from "./commands/ListContainersCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListTagsForResourceCommandInput,
|
|
52
|
+
ListTagsForResourceCommandOutput,
|
|
53
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
PutContainerPolicyCommandInput,
|
|
56
|
+
PutContainerPolicyCommandOutput,
|
|
57
|
+
} from "./commands/PutContainerPolicyCommand";
|
|
58
|
+
import {
|
|
59
|
+
PutCorsPolicyCommandInput,
|
|
60
|
+
PutCorsPolicyCommandOutput,
|
|
61
|
+
} from "./commands/PutCorsPolicyCommand";
|
|
62
|
+
import {
|
|
63
|
+
PutLifecyclePolicyCommandInput,
|
|
64
|
+
PutLifecyclePolicyCommandOutput,
|
|
65
|
+
} from "./commands/PutLifecyclePolicyCommand";
|
|
66
|
+
import {
|
|
67
|
+
PutMetricPolicyCommandInput,
|
|
68
|
+
PutMetricPolicyCommandOutput,
|
|
69
|
+
} from "./commands/PutMetricPolicyCommand";
|
|
70
|
+
import {
|
|
71
|
+
StartAccessLoggingCommandInput,
|
|
72
|
+
StartAccessLoggingCommandOutput,
|
|
73
|
+
} from "./commands/StartAccessLoggingCommand";
|
|
74
|
+
import {
|
|
75
|
+
StopAccessLoggingCommandInput,
|
|
76
|
+
StopAccessLoggingCommandOutput,
|
|
77
|
+
} from "./commands/StopAccessLoggingCommand";
|
|
78
|
+
import {
|
|
79
|
+
TagResourceCommandInput,
|
|
80
|
+
TagResourceCommandOutput,
|
|
81
|
+
} from "./commands/TagResourceCommand";
|
|
82
|
+
import {
|
|
83
|
+
UntagResourceCommandInput,
|
|
84
|
+
UntagResourceCommandOutput,
|
|
85
|
+
} from "./commands/UntagResourceCommand";
|
|
86
|
+
import { MediaStoreClient } from "./MediaStoreClient";
|
|
87
|
+
|
|
88
|
+
export declare class MediaStore extends MediaStoreClient {
|
|
89
|
+
createContainer(
|
|
90
|
+
args: CreateContainerCommandInput,
|
|
91
|
+
options?: __HttpHandlerOptions
|
|
92
|
+
): Promise<CreateContainerCommandOutput>;
|
|
93
|
+
createContainer(
|
|
94
|
+
args: CreateContainerCommandInput,
|
|
95
|
+
cb: (err: any, data?: CreateContainerCommandOutput) => void
|
|
96
|
+
): void;
|
|
97
|
+
createContainer(
|
|
98
|
+
args: CreateContainerCommandInput,
|
|
99
|
+
options: __HttpHandlerOptions,
|
|
100
|
+
cb: (err: any, data?: CreateContainerCommandOutput) => void
|
|
101
|
+
): void;
|
|
102
|
+
|
|
103
|
+
deleteContainer(
|
|
104
|
+
args: DeleteContainerCommandInput,
|
|
105
|
+
options?: __HttpHandlerOptions
|
|
106
|
+
): Promise<DeleteContainerCommandOutput>;
|
|
107
|
+
deleteContainer(
|
|
108
|
+
args: DeleteContainerCommandInput,
|
|
109
|
+
cb: (err: any, data?: DeleteContainerCommandOutput) => void
|
|
110
|
+
): void;
|
|
111
|
+
deleteContainer(
|
|
112
|
+
args: DeleteContainerCommandInput,
|
|
113
|
+
options: __HttpHandlerOptions,
|
|
114
|
+
cb: (err: any, data?: DeleteContainerCommandOutput) => void
|
|
115
|
+
): void;
|
|
116
|
+
|
|
117
|
+
deleteContainerPolicy(
|
|
118
|
+
args: DeleteContainerPolicyCommandInput,
|
|
119
|
+
options?: __HttpHandlerOptions
|
|
120
|
+
): Promise<DeleteContainerPolicyCommandOutput>;
|
|
121
|
+
deleteContainerPolicy(
|
|
122
|
+
args: DeleteContainerPolicyCommandInput,
|
|
123
|
+
cb: (err: any, data?: DeleteContainerPolicyCommandOutput) => void
|
|
124
|
+
): void;
|
|
125
|
+
deleteContainerPolicy(
|
|
126
|
+
args: DeleteContainerPolicyCommandInput,
|
|
127
|
+
options: __HttpHandlerOptions,
|
|
128
|
+
cb: (err: any, data?: DeleteContainerPolicyCommandOutput) => void
|
|
129
|
+
): void;
|
|
130
|
+
|
|
131
|
+
deleteCorsPolicy(
|
|
132
|
+
args: DeleteCorsPolicyCommandInput,
|
|
133
|
+
options?: __HttpHandlerOptions
|
|
134
|
+
): Promise<DeleteCorsPolicyCommandOutput>;
|
|
135
|
+
deleteCorsPolicy(
|
|
136
|
+
args: DeleteCorsPolicyCommandInput,
|
|
137
|
+
cb: (err: any, data?: DeleteCorsPolicyCommandOutput) => void
|
|
138
|
+
): void;
|
|
139
|
+
deleteCorsPolicy(
|
|
140
|
+
args: DeleteCorsPolicyCommandInput,
|
|
141
|
+
options: __HttpHandlerOptions,
|
|
142
|
+
cb: (err: any, data?: DeleteCorsPolicyCommandOutput) => void
|
|
143
|
+
): void;
|
|
144
|
+
|
|
145
|
+
deleteLifecyclePolicy(
|
|
146
|
+
args: DeleteLifecyclePolicyCommandInput,
|
|
147
|
+
options?: __HttpHandlerOptions
|
|
148
|
+
): Promise<DeleteLifecyclePolicyCommandOutput>;
|
|
149
|
+
deleteLifecyclePolicy(
|
|
150
|
+
args: DeleteLifecyclePolicyCommandInput,
|
|
151
|
+
cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void
|
|
152
|
+
): void;
|
|
153
|
+
deleteLifecyclePolicy(
|
|
154
|
+
args: DeleteLifecyclePolicyCommandInput,
|
|
155
|
+
options: __HttpHandlerOptions,
|
|
156
|
+
cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void
|
|
157
|
+
): void;
|
|
158
|
+
|
|
159
|
+
deleteMetricPolicy(
|
|
160
|
+
args: DeleteMetricPolicyCommandInput,
|
|
161
|
+
options?: __HttpHandlerOptions
|
|
162
|
+
): Promise<DeleteMetricPolicyCommandOutput>;
|
|
163
|
+
deleteMetricPolicy(
|
|
164
|
+
args: DeleteMetricPolicyCommandInput,
|
|
165
|
+
cb: (err: any, data?: DeleteMetricPolicyCommandOutput) => void
|
|
166
|
+
): void;
|
|
167
|
+
deleteMetricPolicy(
|
|
168
|
+
args: DeleteMetricPolicyCommandInput,
|
|
169
|
+
options: __HttpHandlerOptions,
|
|
170
|
+
cb: (err: any, data?: DeleteMetricPolicyCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
|
|
173
|
+
describeContainer(
|
|
174
|
+
args: DescribeContainerCommandInput,
|
|
175
|
+
options?: __HttpHandlerOptions
|
|
176
|
+
): Promise<DescribeContainerCommandOutput>;
|
|
177
|
+
describeContainer(
|
|
178
|
+
args: DescribeContainerCommandInput,
|
|
179
|
+
cb: (err: any, data?: DescribeContainerCommandOutput) => void
|
|
180
|
+
): void;
|
|
181
|
+
describeContainer(
|
|
182
|
+
args: DescribeContainerCommandInput,
|
|
183
|
+
options: __HttpHandlerOptions,
|
|
184
|
+
cb: (err: any, data?: DescribeContainerCommandOutput) => void
|
|
185
|
+
): void;
|
|
186
|
+
|
|
187
|
+
getContainerPolicy(
|
|
188
|
+
args: GetContainerPolicyCommandInput,
|
|
189
|
+
options?: __HttpHandlerOptions
|
|
190
|
+
): Promise<GetContainerPolicyCommandOutput>;
|
|
191
|
+
getContainerPolicy(
|
|
192
|
+
args: GetContainerPolicyCommandInput,
|
|
193
|
+
cb: (err: any, data?: GetContainerPolicyCommandOutput) => void
|
|
194
|
+
): void;
|
|
195
|
+
getContainerPolicy(
|
|
196
|
+
args: GetContainerPolicyCommandInput,
|
|
197
|
+
options: __HttpHandlerOptions,
|
|
198
|
+
cb: (err: any, data?: GetContainerPolicyCommandOutput) => void
|
|
199
|
+
): void;
|
|
200
|
+
|
|
201
|
+
getCorsPolicy(
|
|
202
|
+
args: GetCorsPolicyCommandInput,
|
|
203
|
+
options?: __HttpHandlerOptions
|
|
204
|
+
): Promise<GetCorsPolicyCommandOutput>;
|
|
205
|
+
getCorsPolicy(
|
|
206
|
+
args: GetCorsPolicyCommandInput,
|
|
207
|
+
cb: (err: any, data?: GetCorsPolicyCommandOutput) => void
|
|
208
|
+
): void;
|
|
209
|
+
getCorsPolicy(
|
|
210
|
+
args: GetCorsPolicyCommandInput,
|
|
211
|
+
options: __HttpHandlerOptions,
|
|
212
|
+
cb: (err: any, data?: GetCorsPolicyCommandOutput) => void
|
|
213
|
+
): void;
|
|
214
|
+
|
|
215
|
+
getLifecyclePolicy(
|
|
216
|
+
args: GetLifecyclePolicyCommandInput,
|
|
217
|
+
options?: __HttpHandlerOptions
|
|
218
|
+
): Promise<GetLifecyclePolicyCommandOutput>;
|
|
219
|
+
getLifecyclePolicy(
|
|
220
|
+
args: GetLifecyclePolicyCommandInput,
|
|
221
|
+
cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void
|
|
222
|
+
): void;
|
|
223
|
+
getLifecyclePolicy(
|
|
224
|
+
args: GetLifecyclePolicyCommandInput,
|
|
225
|
+
options: __HttpHandlerOptions,
|
|
226
|
+
cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void
|
|
227
|
+
): void;
|
|
228
|
+
|
|
229
|
+
getMetricPolicy(
|
|
230
|
+
args: GetMetricPolicyCommandInput,
|
|
231
|
+
options?: __HttpHandlerOptions
|
|
232
|
+
): Promise<GetMetricPolicyCommandOutput>;
|
|
233
|
+
getMetricPolicy(
|
|
234
|
+
args: GetMetricPolicyCommandInput,
|
|
235
|
+
cb: (err: any, data?: GetMetricPolicyCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
getMetricPolicy(
|
|
238
|
+
args: GetMetricPolicyCommandInput,
|
|
239
|
+
options: __HttpHandlerOptions,
|
|
240
|
+
cb: (err: any, data?: GetMetricPolicyCommandOutput) => void
|
|
241
|
+
): void;
|
|
242
|
+
|
|
243
|
+
listContainers(
|
|
244
|
+
args: ListContainersCommandInput,
|
|
245
|
+
options?: __HttpHandlerOptions
|
|
246
|
+
): Promise<ListContainersCommandOutput>;
|
|
247
|
+
listContainers(
|
|
248
|
+
args: ListContainersCommandInput,
|
|
249
|
+
cb: (err: any, data?: ListContainersCommandOutput) => void
|
|
250
|
+
): void;
|
|
251
|
+
listContainers(
|
|
252
|
+
args: ListContainersCommandInput,
|
|
253
|
+
options: __HttpHandlerOptions,
|
|
254
|
+
cb: (err: any, data?: ListContainersCommandOutput) => void
|
|
255
|
+
): void;
|
|
256
|
+
|
|
257
|
+
listTagsForResource(
|
|
258
|
+
args: ListTagsForResourceCommandInput,
|
|
259
|
+
options?: __HttpHandlerOptions
|
|
260
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
261
|
+
listTagsForResource(
|
|
262
|
+
args: ListTagsForResourceCommandInput,
|
|
263
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
264
|
+
): void;
|
|
265
|
+
listTagsForResource(
|
|
266
|
+
args: ListTagsForResourceCommandInput,
|
|
267
|
+
options: __HttpHandlerOptions,
|
|
268
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
269
|
+
): void;
|
|
270
|
+
|
|
271
|
+
putContainerPolicy(
|
|
272
|
+
args: PutContainerPolicyCommandInput,
|
|
273
|
+
options?: __HttpHandlerOptions
|
|
274
|
+
): Promise<PutContainerPolicyCommandOutput>;
|
|
275
|
+
putContainerPolicy(
|
|
276
|
+
args: PutContainerPolicyCommandInput,
|
|
277
|
+
cb: (err: any, data?: PutContainerPolicyCommandOutput) => void
|
|
278
|
+
): void;
|
|
279
|
+
putContainerPolicy(
|
|
280
|
+
args: PutContainerPolicyCommandInput,
|
|
281
|
+
options: __HttpHandlerOptions,
|
|
282
|
+
cb: (err: any, data?: PutContainerPolicyCommandOutput) => void
|
|
283
|
+
): void;
|
|
284
|
+
|
|
285
|
+
putCorsPolicy(
|
|
286
|
+
args: PutCorsPolicyCommandInput,
|
|
287
|
+
options?: __HttpHandlerOptions
|
|
288
|
+
): Promise<PutCorsPolicyCommandOutput>;
|
|
289
|
+
putCorsPolicy(
|
|
290
|
+
args: PutCorsPolicyCommandInput,
|
|
291
|
+
cb: (err: any, data?: PutCorsPolicyCommandOutput) => void
|
|
292
|
+
): void;
|
|
293
|
+
putCorsPolicy(
|
|
294
|
+
args: PutCorsPolicyCommandInput,
|
|
295
|
+
options: __HttpHandlerOptions,
|
|
296
|
+
cb: (err: any, data?: PutCorsPolicyCommandOutput) => void
|
|
297
|
+
): void;
|
|
298
|
+
|
|
299
|
+
putLifecyclePolicy(
|
|
300
|
+
args: PutLifecyclePolicyCommandInput,
|
|
301
|
+
options?: __HttpHandlerOptions
|
|
302
|
+
): Promise<PutLifecyclePolicyCommandOutput>;
|
|
303
|
+
putLifecyclePolicy(
|
|
304
|
+
args: PutLifecyclePolicyCommandInput,
|
|
305
|
+
cb: (err: any, data?: PutLifecyclePolicyCommandOutput) => void
|
|
306
|
+
): void;
|
|
307
|
+
putLifecyclePolicy(
|
|
308
|
+
args: PutLifecyclePolicyCommandInput,
|
|
309
|
+
options: __HttpHandlerOptions,
|
|
310
|
+
cb: (err: any, data?: PutLifecyclePolicyCommandOutput) => void
|
|
311
|
+
): void;
|
|
312
|
+
|
|
313
|
+
putMetricPolicy(
|
|
314
|
+
args: PutMetricPolicyCommandInput,
|
|
315
|
+
options?: __HttpHandlerOptions
|
|
316
|
+
): Promise<PutMetricPolicyCommandOutput>;
|
|
317
|
+
putMetricPolicy(
|
|
318
|
+
args: PutMetricPolicyCommandInput,
|
|
319
|
+
cb: (err: any, data?: PutMetricPolicyCommandOutput) => void
|
|
320
|
+
): void;
|
|
321
|
+
putMetricPolicy(
|
|
322
|
+
args: PutMetricPolicyCommandInput,
|
|
323
|
+
options: __HttpHandlerOptions,
|
|
324
|
+
cb: (err: any, data?: PutMetricPolicyCommandOutput) => void
|
|
325
|
+
): void;
|
|
326
|
+
|
|
327
|
+
startAccessLogging(
|
|
328
|
+
args: StartAccessLoggingCommandInput,
|
|
329
|
+
options?: __HttpHandlerOptions
|
|
330
|
+
): Promise<StartAccessLoggingCommandOutput>;
|
|
331
|
+
startAccessLogging(
|
|
332
|
+
args: StartAccessLoggingCommandInput,
|
|
333
|
+
cb: (err: any, data?: StartAccessLoggingCommandOutput) => void
|
|
334
|
+
): void;
|
|
335
|
+
startAccessLogging(
|
|
336
|
+
args: StartAccessLoggingCommandInput,
|
|
337
|
+
options: __HttpHandlerOptions,
|
|
338
|
+
cb: (err: any, data?: StartAccessLoggingCommandOutput) => void
|
|
339
|
+
): void;
|
|
340
|
+
|
|
341
|
+
stopAccessLogging(
|
|
342
|
+
args: StopAccessLoggingCommandInput,
|
|
343
|
+
options?: __HttpHandlerOptions
|
|
344
|
+
): Promise<StopAccessLoggingCommandOutput>;
|
|
345
|
+
stopAccessLogging(
|
|
346
|
+
args: StopAccessLoggingCommandInput,
|
|
347
|
+
cb: (err: any, data?: StopAccessLoggingCommandOutput) => void
|
|
348
|
+
): void;
|
|
349
|
+
stopAccessLogging(
|
|
350
|
+
args: StopAccessLoggingCommandInput,
|
|
351
|
+
options: __HttpHandlerOptions,
|
|
352
|
+
cb: (err: any, data?: StopAccessLoggingCommandOutput) => void
|
|
353
|
+
): void;
|
|
354
|
+
|
|
355
|
+
tagResource(
|
|
356
|
+
args: TagResourceCommandInput,
|
|
357
|
+
options?: __HttpHandlerOptions
|
|
358
|
+
): Promise<TagResourceCommandOutput>;
|
|
359
|
+
tagResource(
|
|
360
|
+
args: TagResourceCommandInput,
|
|
361
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
362
|
+
): void;
|
|
363
|
+
tagResource(
|
|
364
|
+
args: TagResourceCommandInput,
|
|
365
|
+
options: __HttpHandlerOptions,
|
|
366
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
367
|
+
): void;
|
|
368
|
+
|
|
369
|
+
untagResource(
|
|
370
|
+
args: UntagResourceCommandInput,
|
|
371
|
+
options?: __HttpHandlerOptions
|
|
372
|
+
): Promise<UntagResourceCommandOutput>;
|
|
373
|
+
untagResource(
|
|
374
|
+
args: UntagResourceCommandInput,
|
|
375
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
376
|
+
): void;
|
|
377
|
+
untagResource(
|
|
378
|
+
args: UntagResourceCommandInput,
|
|
379
|
+
options: __HttpHandlerOptions,
|
|
380
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
381
|
+
): void;
|
|
382
|
+
}
|