@@ -217,42 +217,41 @@ export interface CreateBucketCommandOutput extends CreateBucketOutput, __Metadat
217
217
* @throws {@link S3ServiceException }
218
218
* <p>Base exception class for all service exceptions from S3 service.</p>
219
219
*
220
- * @public
220
+ *
221
221
* @example To create a bucket
222
222
* ```javascript
223
- * // The following example creates a bucket.
223
+ * /* The following example creates a bucket. *\/
224
224
* const input = {
225
- * " Bucket" : "examplebucket"
225
+ * Bucket: "examplebucket"
226
226
* };
227
227
* const command = new CreateBucketCommand(input);
228
228
* const response = await client.send(command);
229
- * /* response ==
229
+ * /* response is
230
230
* {
231
- * " Location" : "/examplebucket"
231
+ * Location: "/examplebucket"
232
232
* }
233
233
* *\/
234
- * // example id: to-create-a-bucket--1472851826060
235
234
* ```
236
235
*
237
236
* @example To create a bucket in a specific region
238
237
* ```javascript
239
- * // The following example creates a bucket. The request specifies an AWS region where to create the bucket.
238
+ * /* The following example creates a bucket. The request specifies an AWS region where to create the bucket. *\/
240
239
* const input = {
241
- * " Bucket" : "examplebucket",
242
- * " CreateBucketConfiguration" : {
243
- * " LocationConstraint" : "eu-west-1"
240
+ * Bucket: "examplebucket",
241
+ * CreateBucketConfiguration: {
242
+ * LocationConstraint: "eu-west-1"
244
243
* }
245
244
* };
246
245
* const command = new CreateBucketCommand(input);
247
246
* const response = await client.send(command);
248
- * /* response ==
247
+ * /* response is
249
248
* {
250
- * " Location" : "http://examplebucket.<Region>.s3.amazonaws.com/"
249
+ * Location: "http://examplebucket.<Region>.s3.amazonaws.com/"
251
250
* }
252
251
* *\/
253
- * // example id: to-create-a-bucket-in-a-specific-region-1483399072992
254
252
* ```
255
253
*
254
+ * @public
256
255
*/
257
256
export class CreateBucketCommand extends $Command
258
257
. classBuilder <
0 commit comments