Skip to content

Commit b9d20b0

Browse files
committed
chores: regenerate clients using prettified code generator
1 parent b88c800 commit b9d20b0

File tree

10 files changed

+26
-25
lines changed

10 files changed

+26
-25
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"jest": "^20.0.4",
3333
"lerna": "3.13.4",
3434
"lint-staged": "^8.1.5",
35+
"prettier": "1.17.0",
3536
"typescript": "^3.0.0"
3637
},
3738
"workspaces": [

packages/client-cognito-identity-browser/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ To send a request, you:
4747
const cognitoIdentity = new CognitoIdentityClient({region: 'region'});
4848
//clients can be shared by different commands
4949
const params = {
50-
IdentityPoolName: /**a string value*/,
51-
AllowUnauthenticatedIdentities: /**a boolean value*/,
50+
IdentityPoolName: /**a string value*/,
51+
AllowUnauthenticatedIdentities: /**a boolean value*/,
5252
};
5353
const createIdentityPoolCommand = new CreateIdentityPoolCommand(params);
5454
cognitoIdentity.send(createIdentityPoolCommand).then(data => {

packages/client-glacier-node/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ To send a request, you:
4545
const glacier = new GlacierClient({region: 'region'});
4646
//clients can be shared by different commands
4747
const params = {
48-
vaultName: /**a string value*/,
49-
accountId: /**a string value*/,
50-
body: /**a blob value*/
51-
/**You can supply readable stream to streaming input. e.g. fs.createReadStream(file) */,
48+
vaultName: /**a string value*/,
49+
accountId: /**a string value*/,
50+
body: /**a blob value*/
51+
/**You can supply readable stream to streaming input. e.g. fs.createReadStream(file) */,
5252
};
5353
const uploadArchiveCommand = new UploadArchiveCommand(params);
5454
glacier.send(uploadArchiveCommand).then(data => {

packages/client-kinesis-browser/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ To send a request, you:
4747
const kinesis = new KinesisClient({region: 'region'});
4848
//clients can be shared by different commands
4949
const params = {
50-
StreamName: /**a string value*/,
51-
Tags: { /**a map with key of string and value of string*/ },
50+
StreamName: /**a string value*/,
51+
Tags: { /**a map with key of string and value of string*/ },
5252
};
5353
const addTagsToStreamCommand = new AddTagsToStreamCommand(params);
5454
kinesis.send(addTagsToStreamCommand).then(data => {

packages/client-kms-browser/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To send a request, you:
4545
const kMS = new KMSClient({region: 'region'});
4646
//clients can be shared by different commands
4747
const params = {
48-
KeyId: /**a string value*/,
48+
KeyId: /**a string value*/,
4949
};
5050
const cancelKeyDeletionCommand = new CancelKeyDeletionCommand(params);
5151
kMS.send(cancelKeyDeletionCommand).then(data => {

packages/client-kms-node/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To send a request, you:
4545
const kMS = new KMSClient({region: 'region'});
4646
//clients can be shared by different commands
4747
const params = {
48-
KeyId: /**a string value*/,
48+
KeyId: /**a string value*/,
4949
};
5050
const cancelKeyDeletionCommand = new CancelKeyDeletionCommand(params);
5151
kMS.send(cancelKeyDeletionCommand).then(data => {

packages/client-lambda-node/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ To send a request, you:
4545
const lambda = new LambdaClient({region: 'region'});
4646
//clients can be shared by different commands
4747
const params = {
48-
FunctionName: /**a string value*/,
49-
InvokeArgs: /**a blob value*/
50-
/**You can supply readable stream to streaming input. e.g. fs.createReadStream(file) */,
48+
FunctionName: /**a string value*/,
49+
InvokeArgs: /**a blob value*/
50+
/**You can supply readable stream to streaming input. e.g. fs.createReadStream(file) */,
5151
};
5252
const invokeAsyncCommand = new InvokeAsyncCommand(params);
5353
lambda.send(invokeAsyncCommand).then(data => {

packages/client-s3-browser/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ To send a request, you:
4545
const s3 = new S3Client({region: 'region'});
4646
//clients can be shared by different commands
4747
const params = {
48-
Body: /**a blob value*/
49-
/**You can supply readable stream to streaming input. e.g. (await fetch(input)).body */,
50-
Bucket: /**a string value*/,
51-
Key: /**a string value*/,
48+
Body: /**a blob value*/
49+
/**You can supply readable stream to streaming input. e.g. (await fetch(input)).body */,
50+
Bucket: /**a string value*/,
51+
Key: /**a string value*/,
5252
};
5353
const putObjectCommand = new PutObjectCommand(params);
5454
s3.send(putObjectCommand).then(data => {

packages/client-s3-node/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ To send a request, you:
4545
const s3 = new S3Client({region: 'region'});
4646
//clients can be shared by different commands
4747
const params = {
48-
Body: /**a blob value*/
49-
/**You can supply readable stream to streaming input. e.g. fs.createReadStream(file) */,
50-
Bucket: /**a string value*/,
51-
Key: /**a string value*/,
48+
Body: /**a blob value*/
49+
/**You can supply readable stream to streaming input. e.g. fs.createReadStream(file) */,
50+
Bucket: /**a string value*/,
51+
Key: /**a string value*/,
5252
};
5353
const putObjectCommand = new PutObjectCommand(params);
5454
s3.send(putObjectCommand).then(data => {

packages/client-sqs-node/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ To send a request, you:
4545
const sQS = new SQSClient({region: 'region'});
4646
//clients can be shared by different commands
4747
const params = {
48-
QueueUrl: /**a string value*/,
49-
Label: /**a string value*/,
50-
AWSAccountIds: [ /**a list of string*/ ],
51-
Actions: [ /**a list of string*/ ],
48+
QueueUrl: /**a string value*/,
49+
Label: /**a string value*/,
50+
AWSAccountIds: [ /**a list of string*/ ],
51+
Actions: [ /**a list of string*/ ],
5252
};
5353
const addPermissionCommand = new AddPermissionCommand(params);
5454
sQS.send(addPermissionCommand).then(data => {

0 commit comments

Comments
 (0)