@@ -213,37 +213,46 @@ private void generateClientDefaults() {
213
213
214
214
writer .addImport ("HashConstructor" , "__HashConstructor" , "@aws-sdk/types" );
215
215
writer .writeDocs ("A constructor for a class implementing the @aws-sdk/types.Hash interface \n "
216
- + "that computes the SHA-256 HMAC or checksum of a string or binary buffer." );
216
+ + "that computes the SHA-256 HMAC or checksum of a string or binary buffer.\n "
217
+ + "@internal" );
217
218
writer .write ("sha256?: __HashConstructor;\n " );
218
219
219
220
writer .addImport ("UrlParser" , "__UrlParser" , "@aws-sdk/types" );
220
- writer .writeDocs ("The function that will be used to convert strings into HTTP endpoints." );
221
+ writer .writeDocs ("The function that will be used to convert strings into HTTP endpoints.\n "
222
+ + "@internal" );
221
223
writer .write ("urlParser?: __UrlParser;\n " );
222
224
223
- writer .writeDocs ("A function that can calculate the length of a request body." );
225
+ writer .writeDocs ("A function that can calculate the length of a request body.\n "
226
+ + "@internal" );
224
227
writer .write ("bodyLengthChecker?: (body: any) => number | undefined;\n " );
225
228
226
229
writer .addImport ("StreamCollector" , "__StreamCollector" , "@aws-sdk/types" );
227
- writer .writeDocs ("A function that converts a stream into an array of bytes." );
230
+ writer .writeDocs ("A function that converts a stream into an array of bytes.\n "
231
+ + "@internal" );
228
232
writer .write ("streamCollector?: __StreamCollector;\n " );
229
233
230
234
// Note: Encoder and Decoder are both used for base64 and UTF.
231
235
writer .addImport ("Encoder" , "__Encoder" , "@aws-sdk/types" );
232
236
writer .addImport ("Decoder" , "__Decoder" , "@aws-sdk/types" );
233
237
234
- writer .writeDocs ("The function that will be used to convert a base64-encoded string to a byte array" );
238
+ writer .writeDocs ("The function that will be used to convert a base64-encoded string to a byte array.\n "
239
+ + "@internal" );
235
240
writer .write ("base64Decoder?: __Decoder;\n " );
236
241
237
- writer .writeDocs ("The function that will be used to convert binary data to a base64-encoded string" );
242
+ writer .writeDocs ("The function that will be used to convert binary data to a base64-encoded string.\n "
243
+ + "@internal" );
238
244
writer .write ("base64Encoder?: __Encoder;\n " );
239
245
240
- writer .writeDocs ("The function that will be used to convert a UTF8-encoded string to a byte array" );
246
+ writer .writeDocs ("The function that will be used to convert a UTF8-encoded string to a byte array.\n "
247
+ + "@internal" );
241
248
writer .write ("utf8Decoder?: __Decoder;\n " );
242
249
243
- writer .writeDocs ("The function that will be used to convert binary data to a UTF-8 encoded string" );
250
+ writer .writeDocs ("The function that will be used to convert binary data to a UTF-8 encoded string.\n "
251
+ + "@internal" );
244
252
writer .write ("utf8Encoder?: __Encoder;\n " );
245
253
246
- writer .writeDocs ("The runtime environment" );
254
+ writer .writeDocs ("The runtime environment.\n "
255
+ + "@internal" );
247
256
writer .write ("runtime?: string;\n " );
248
257
249
258
writer .writeDocs ("Disable dyanamically changing the endpoint of the client based on the hostPrefix \n "
0 commit comments