Skip to content

Commit d6ca964

Browse files
committed
chore(docs): convert example generation to Smithy
1 parent c7523db commit d6ca964

File tree

101 files changed

+660
-1154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+660
-1154
lines changed

clients/client-s3/src/commands/AbortMultipartUploadCommand.ts

+10-7
Original file line numberDiff line numberDiff line change
@@ -132,20 +132,23 @@ export interface AbortMultipartUploadCommandOutput extends AbortMultipartUploadO
132132
* @throws {@link S3ServiceException}
133133
* <p>Base exception class for all service exceptions from S3 service.</p>
134134
*
135-
* @public
135+
*
136136
* @example To abort a multipart upload
137137
* ```javascript
138-
* // The following example aborts a multipart upload.
138+
* /* The following example aborts a multipart upload. *\/
139139
* const input = {
140-
* "Bucket": "examplebucket",
141-
* "Key": "bigobject",
142-
* "UploadId": "xadcOB_7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--"
140+
* Bucket: "examplebucket",
141+
* Key: "bigobject",
142+
* UploadId: "xadcOB_7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--"
143143
* };
144144
* const command = new AbortMultipartUploadCommand(input);
145-
* await client.send(command);
146-
* // example id: to-abort-a-multipart-upload-1481853354987
145+
* const response = await client.send(command);
146+
* /* response is
147+
* { /* empty *\/ }
148+
* *\/
147149
* ```
148150
*
151+
* @public
149152
*/
150153
export class AbortMultipartUploadCommand extends $Command
151154
.classBuilder<

clients/client-s3/src/commands/CompleteMultipartUploadCommand.ts

+1-33
Original file line numberDiff line numberDiff line change
@@ -252,40 +252,8 @@ export interface CompleteMultipartUploadCommandOutput extends CompleteMultipartU
252252
* @throws {@link S3ServiceException}
253253
* <p>Base exception class for all service exceptions from S3 service.</p>
254254
*
255-
* @public
256-
* @example To complete multipart upload
257-
* ```javascript
258-
* // The following example completes a multipart upload.
259-
* const input = {
260-
* "Bucket": "examplebucket",
261-
* "Key": "bigobject",
262-
* "MultipartUpload": {
263-
* "Parts": [
264-
* {
265-
* "ETag": "\"d8c2eafd90c266e19ab9dcacc479f8af\"",
266-
* "PartNumber": "1"
267-
* },
268-
* {
269-
* "ETag": "\"d8c2eafd90c266e19ab9dcacc479f8af\"",
270-
* "PartNumber": "2"
271-
* }
272-
* ]
273-
* },
274-
* "UploadId": "7YPBOJuoFiQ9cz4P3Pe6FIZwO4f7wN93uHsNBEw97pl5eNwzExg0LAT2dUN91cOmrEQHDsP3WA60CEg--"
275-
* };
276-
* const command = new CompleteMultipartUploadCommand(input);
277-
* const response = await client.send(command);
278-
* /* response ==
279-
* {
280-
* "Bucket": "acexamplebucket",
281-
* "ETag": "\"4d9031c7644d8081c2829f4ea23c55f7-2\"",
282-
* "Key": "bigobject",
283-
* "Location": "https://examplebucket.s3.<Region>.amazonaws.com/bigobject"
284-
* }
285-
* *\/
286-
* // example id: to-complete-multipart-upload-1481851590483
287-
* ```
288255
*
256+
* @public
289257
*/
290258
export class CompleteMultipartUploadCommand extends $Command
291259
.classBuilder<

clients/client-s3/src/commands/CopyObjectCommand.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -284,28 +284,28 @@ export interface CopyObjectCommandOutput extends CopyObjectOutput, __MetadataBea
284284
* @throws {@link S3ServiceException}
285285
* <p>Base exception class for all service exceptions from S3 service.</p>
286286
*
287-
* @public
287+
*
288288
* @example To copy an object
289289
* ```javascript
290-
* // The following example copies an object from one bucket to another.
290+
* /* The following example copies an object from one bucket to another. *\/
291291
* const input = {
292-
* "Bucket": "destinationbucket",
293-
* "CopySource": "/sourcebucket/HappyFacejpg",
294-
* "Key": "HappyFaceCopyjpg"
292+
* Bucket: "destinationbucket",
293+
* CopySource: "/sourcebucket/HappyFacejpg",
294+
* Key: "HappyFaceCopyjpg"
295295
* };
296296
* const command = new CopyObjectCommand(input);
297297
* const response = await client.send(command);
298-
* /* response ==
298+
* /* response is
299299
* {
300-
* "CopyObjectResult": {
301-
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
302-
* "LastModified": "2016-12-15T17:38:53.000Z"
300+
* CopyObjectResult: {
301+
* ETag: ""6805f2cfc46c0f04559748bb039d69ae"",
302+
* LastModified: "2016-12-15T17:38:53.000Z"
303303
* }
304304
* }
305305
* *\/
306-
* // example id: to-copy-an-object-1481823186878
307306
* ```
308307
*
308+
* @public
309309
*/
310310
export class CopyObjectCommand extends $Command
311311
.classBuilder<

clients/client-s3/src/commands/CreateBucketCommand.ts

+12-13
Original file line numberDiff line numberDiff line change
@@ -217,42 +217,41 @@ export interface CreateBucketCommandOutput extends CreateBucketOutput, __Metadat
217217
* @throws {@link S3ServiceException}
218218
* <p>Base exception class for all service exceptions from S3 service.</p>
219219
*
220-
* @public
220+
*
221221
* @example To create a bucket
222222
* ```javascript
223-
* // The following example creates a bucket.
223+
* /* The following example creates a bucket. *\/
224224
* const input = {
225-
* "Bucket": "examplebucket"
225+
* Bucket: "examplebucket"
226226
* };
227227
* const command = new CreateBucketCommand(input);
228228
* const response = await client.send(command);
229-
* /* response ==
229+
* /* response is
230230
* {
231-
* "Location": "/examplebucket"
231+
* Location: "/examplebucket"
232232
* }
233233
* *\/
234-
* // example id: to-create-a-bucket--1472851826060
235234
* ```
236235
*
237236
* @example To create a bucket in a specific region
238237
* ```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. *\/
240239
* const input = {
241-
* "Bucket": "examplebucket",
242-
* "CreateBucketConfiguration": {
243-
* "LocationConstraint": "eu-west-1"
240+
* Bucket: "examplebucket",
241+
* CreateBucketConfiguration: {
242+
* LocationConstraint: "eu-west-1"
244243
* }
245244
* };
246245
* const command = new CreateBucketCommand(input);
247246
* const response = await client.send(command);
248-
* /* response ==
247+
* /* response is
249248
* {
250-
* "Location": "http://examplebucket.<Region>.s3.amazonaws.com/"
249+
* Location: "http://examplebucket.<Region>.s3.amazonaws.com/"
251250
* }
252251
* *\/
253-
* // example id: to-create-a-bucket-in-a-specific-region-1483399072992
254252
* ```
255253
*
254+
* @public
256255
*/
257256
export class CreateBucketCommand extends $Command
258257
.classBuilder<

clients/client-s3/src/commands/CreateMultipartUploadCommand.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -320,26 +320,26 @@ export interface CreateMultipartUploadCommandOutput extends CreateMultipartUploa
320320
* @throws {@link S3ServiceException}
321321
* <p>Base exception class for all service exceptions from S3 service.</p>
322322
*
323-
* @public
323+
*
324324
* @example To initiate a multipart upload
325325
* ```javascript
326-
* // The following example initiates a multipart upload.
326+
* /* The following example initiates a multipart upload. *\/
327327
* const input = {
328-
* "Bucket": "examplebucket",
329-
* "Key": "largeobject"
328+
* Bucket: "examplebucket",
329+
* Key: "largeobject"
330330
* };
331331
* const command = new CreateMultipartUploadCommand(input);
332332
* const response = await client.send(command);
333-
* /* response ==
333+
* /* response is
334334
* {
335-
* "Bucket": "examplebucket",
336-
* "Key": "largeobject",
337-
* "UploadId": "ibZBv_75gd9r8lH_gqXatLdxMVpAlj6ZQjEs.OwyF3953YdwbcQnMA2BLGn8Lx12fQNICtMw5KyteFeHw.Sjng--"
335+
* Bucket: "examplebucket",
336+
* Key: "largeobject",
337+
* UploadId: "ibZBv_75gd9r8lH_gqXatLdxMVpAlj6ZQjEs.OwyF3953YdwbcQnMA2BLGn8Lx12fQNICtMw5KyteFeHw.Sjng--"
338338
* }
339339
* *\/
340-
* // example id: to-initiate-a-multipart-upload-1481836794513
341340
* ```
342341
*
342+
* @public
343343
*/
344344
export class CreateMultipartUploadCommand extends $Command
345345
.classBuilder<

clients/client-s3/src/commands/CreateSessionCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ export interface CreateSessionCommandOutput extends CreateSessionOutput, __Metad
127127
* @throws {@link S3ServiceException}
128128
* <p>Base exception class for all service exceptions from S3 service.</p>
129129
*
130+
*
130131
* @public
131132
*/
132133
export class CreateSessionCommand extends $Command

clients/client-s3/src/commands/DeleteBucketAnalyticsConfigurationCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ export interface DeleteBucketAnalyticsConfigurationCommandOutput extends __Metad
8888
* @throws {@link S3ServiceException}
8989
* <p>Base exception class for all service exceptions from S3 service.</p>
9090
*
91+
*
9192
* @public
9293
*/
9394
export class DeleteBucketAnalyticsConfigurationCommand extends $Command

clients/client-s3/src/commands/DeleteBucketCommand.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -103,18 +103,21 @@ export interface DeleteBucketCommandOutput extends __MetadataBearer {}
103103
* @throws {@link S3ServiceException}
104104
* <p>Base exception class for all service exceptions from S3 service.</p>
105105
*
106-
* @public
106+
*
107107
* @example To delete a bucket
108108
* ```javascript
109-
* // The following example deletes the specified bucket.
109+
* /* The following example deletes the specified bucket. *\/
110110
* const input = {
111-
* "Bucket": "forrandall2"
111+
* Bucket: "forrandall2"
112112
* };
113113
* const command = new DeleteBucketCommand(input);
114-
* await client.send(command);
115-
* // example id: to-delete-a-bucket-1473108514262
114+
* const response = await client.send(command);
115+
* /* response is
116+
* { /* metadata only *\/ }
117+
* *\/
116118
* ```
117119
*
120+
* @public
118121
*/
119122
export class DeleteBucketCommand extends $Command
120123
.classBuilder<

clients/client-s3/src/commands/DeleteBucketCorsCommand.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -77,18 +77,21 @@ export interface DeleteBucketCorsCommandOutput extends __MetadataBearer {}
7777
* @throws {@link S3ServiceException}
7878
* <p>Base exception class for all service exceptions from S3 service.</p>
7979
*
80-
* @public
80+
*
8181
* @example To delete cors configuration on a bucket.
8282
* ```javascript
83-
* // The following example deletes CORS configuration on a bucket.
83+
* /* The following example deletes CORS configuration on a bucket. *\/
8484
* const input = {
85-
* "Bucket": "examplebucket"
85+
* Bucket: "examplebucket"
8686
* };
8787
* const command = new DeleteBucketCorsCommand(input);
88-
* await client.send(command);
89-
* // example id: to-delete-cors-configuration-on-a-bucket-1483042856112
88+
* const response = await client.send(command);
89+
* /* response is
90+
* { /* metadata only *\/ }
91+
* *\/
9092
* ```
9193
*
94+
* @public
9295
*/
9396
export class DeleteBucketCorsCommand extends $Command
9497
.classBuilder<

clients/client-s3/src/commands/DeleteBucketEncryptionCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export interface DeleteBucketEncryptionCommandOutput extends __MetadataBearer {}
7979
* @throws {@link S3ServiceException}
8080
* <p>Base exception class for all service exceptions from S3 service.</p>
8181
*
82+
*
8283
* @public
8384
*/
8485
export class DeleteBucketEncryptionCommand extends $Command

clients/client-s3/src/commands/DeleteBucketIntelligentTieringConfigurationCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ export interface DeleteBucketIntelligentTieringConfigurationCommandOutput extend
8282
* @throws {@link S3ServiceException}
8383
* <p>Base exception class for all service exceptions from S3 service.</p>
8484
*
85+
*
8586
* @public
8687
*/
8788
export class DeleteBucketIntelligentTieringConfigurationCommand extends $Command

clients/client-s3/src/commands/DeleteBucketInventoryConfigurationCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export interface DeleteBucketInventoryConfigurationCommandOutput extends __Metad
8686
* @throws {@link S3ServiceException}
8787
* <p>Base exception class for all service exceptions from S3 service.</p>
8888
*
89+
*
8990
* @public
9091
*/
9192
export class DeleteBucketInventoryConfigurationCommand extends $Command

clients/client-s3/src/commands/DeleteBucketLifecycleCommand.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -79,18 +79,21 @@ export interface DeleteBucketLifecycleCommandOutput extends __MetadataBearer {}
7979
* @throws {@link S3ServiceException}
8080
* <p>Base exception class for all service exceptions from S3 service.</p>
8181
*
82-
* @public
82+
*
8383
* @example To delete lifecycle configuration on a bucket.
8484
* ```javascript
85-
* // The following example deletes lifecycle configuration on a bucket.
85+
* /* The following example deletes lifecycle configuration on a bucket. *\/
8686
* const input = {
87-
* "Bucket": "examplebucket"
87+
* Bucket: "examplebucket"
8888
* };
8989
* const command = new DeleteBucketLifecycleCommand(input);
90-
* await client.send(command);
91-
* // example id: to-delete-lifecycle-configuration-on-a-bucket-1483043310583
90+
* const response = await client.send(command);
91+
* /* response is
92+
* { /* metadata only *\/ }
93+
* *\/
9294
* ```
9395
*
96+
* @public
9497
*/
9598
export class DeleteBucketLifecycleCommand extends $Command
9699
.classBuilder<

clients/client-s3/src/commands/DeleteBucketMetricsConfigurationCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ export interface DeleteBucketMetricsConfigurationCommandOutput extends __Metadat
9494
* @throws {@link S3ServiceException}
9595
* <p>Base exception class for all service exceptions from S3 service.</p>
9696
*
97+
*
9798
* @public
9899
*/
99100
export class DeleteBucketMetricsConfigurationCommand extends $Command

clients/client-s3/src/commands/DeleteBucketOwnershipControlsCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ export interface DeleteBucketOwnershipControlsCommandOutput extends __MetadataBe
7878
* @throws {@link S3ServiceException}
7979
* <p>Base exception class for all service exceptions from S3 service.</p>
8080
*
81+
*
8182
* @public
8283
*/
8384
export class DeleteBucketOwnershipControlsCommand extends $Command

clients/client-s3/src/commands/DeleteBucketPolicyCommand.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -115,18 +115,21 @@ export interface DeleteBucketPolicyCommandOutput extends __MetadataBearer {}
115115
* @throws {@link S3ServiceException}
116116
* <p>Base exception class for all service exceptions from S3 service.</p>
117117
*
118-
* @public
118+
*
119119
* @example To delete bucket policy
120120
* ```javascript
121-
* // The following example deletes bucket policy on the specified bucket.
121+
* /* The following example deletes bucket policy on the specified bucket. *\/
122122
* const input = {
123-
* "Bucket": "examplebucket"
123+
* Bucket: "examplebucket"
124124
* };
125125
* const command = new DeleteBucketPolicyCommand(input);
126-
* await client.send(command);
127-
* // example id: to-delete-bucket-policy-1483043406577
126+
* const response = await client.send(command);
127+
* /* response is
128+
* { /* metadata only *\/ }
129+
* *\/
128130
* ```
129131
*
132+
* @public
130133
*/
131134
export class DeleteBucketPolicyCommand extends $Command
132135
.classBuilder<

clients/client-s3/src/commands/DeleteBucketReplicationCommand.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -81,18 +81,21 @@ export interface DeleteBucketReplicationCommandOutput extends __MetadataBearer {
8181
* @throws {@link S3ServiceException}
8282
* <p>Base exception class for all service exceptions from S3 service.</p>
8383
*
84-
* @public
84+
*
8585
* @example To delete bucket replication configuration
8686
* ```javascript
87-
* // The following example deletes replication configuration set on bucket.
87+
* /* The following example deletes replication configuration set on bucket. *\/
8888
* const input = {
89-
* "Bucket": "example"
89+
* Bucket: "example"
9090
* };
9191
* const command = new DeleteBucketReplicationCommand(input);
92-
* await client.send(command);
93-
* // example id: to-delete-bucket-replication-configuration-1483043684668
92+
* const response = await client.send(command);
93+
* /* response is
94+
* { /* metadata only *\/ }
95+
* *\/
9496
* ```
9597
*
98+
* @public
9699
*/
97100
export class DeleteBucketReplicationCommand extends $Command
98101
.classBuilder<

0 commit comments

Comments
 (0)