Skip to content

Commit 4850e32

Browse files
author
awstools
committed
feat(client-lightsail): This release adds support to describe the synchronization status of the account-level block public access feature for your Amazon Lightsail buckets.
1 parent 2a9f8c3 commit 4850e32

File tree

9 files changed

+444
-202
lines changed

9 files changed

+444
-202
lines changed

clients/client-lightsail/src/Lightsail.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -1220,7 +1220,8 @@ export class Lightsail extends LightsailClient {
12201220
* configuration.</p>
12211221
*
12221222
* <p>You can deploy containers to your container service using container images from a public
1223-
* registry like Docker Hub, or from your local machine. For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-creating-container-images">Creating container images for your Amazon Lightsail container services</a> in the
1223+
* registry such as Amazon ECR Public, or from your local machine. For more information, see
1224+
* <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-creating-container-images">Creating container images for your Amazon Lightsail container services</a> in the
12241225
* <i>Amazon Lightsail Developer Guide</i>.</p>
12251226
*/
12261227
public createContainerServiceDeployment(
@@ -3113,10 +3114,12 @@ export class Lightsail extends LightsailClient {
31133114
}
31143115

31153116
/**
3116-
* <p>Returns information about one or more Amazon Lightsail buckets.</p>
3117+
* <p>Returns information about one or more Amazon Lightsail buckets. The information returned
3118+
* includes the synchronization status of the Amazon Simple Storage Service (Amazon S3)
3119+
* account-level block public access feature for your Lightsail buckets.</p>
31173120
*
31183121
* <p>For more information about buckets, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/buckets-in-amazon-lightsail">Buckets in Amazon Lightsail</a> in the <i>Amazon Lightsail Developer
3119-
* Guide</i>..</p>
3122+
* Guide</i>.</p>
31203123
*/
31213124
public getBuckets(args: GetBucketsCommandInput, options?: __HttpHandlerOptions): Promise<GetBucketsCommandOutput>;
31223125
public getBuckets(args: GetBucketsCommandInput, cb: (err: any, data?: GetBucketsCommandOutput) => void): void;
@@ -3660,7 +3663,7 @@ export class Lightsail extends LightsailClient {
36603663
* <p>Returns the bundles that can be applied to your Amazon Lightsail content delivery network
36613664
* (CDN) distributions.</p>
36623665
* <p>A distribution bundle specifies the monthly network transfer quota and monthly cost of
3663-
* your dsitribution.</p>
3666+
* your distribution.</p>
36643667
*/
36653668
public getDistributionBundles(
36663669
args: GetDistributionBundlesCommandInput,
@@ -5820,7 +5823,7 @@ export class Lightsail extends LightsailClient {
58205823
* <p>Updates the bundle of your Amazon Lightsail content delivery network (CDN)
58215824
* distribution.</p>
58225825
* <p>A distribution bundle specifies the monthly network transfer quota and monthly cost of
5823-
* your dsitribution.</p>
5826+
* your distribution.</p>
58245827
* <p>Update your distribution's bundle if your distribution is going over its monthly network
58255828
* transfer quota and is incurring an overage fee.</p>
58265829
* <p>You can update your distribution's bundle only one time within your monthly AWS billing

clients/client-lightsail/src/commands/CreateContainerServiceDeploymentCommand.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ export interface CreateContainerServiceDeploymentCommandOutput
3333
* configuration.</p>
3434
*
3535
* <p>You can deploy containers to your container service using container images from a public
36-
* registry like Docker Hub, or from your local machine. For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-creating-container-images">Creating container images for your Amazon Lightsail container services</a> in the
36+
* registry such as Amazon ECR Public, or from your local machine. For more information, see
37+
* <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-creating-container-images">Creating container images for your Amazon Lightsail container services</a> in the
3738
* <i>Amazon Lightsail Developer Guide</i>.</p>
3839
* @example
3940
* Use a bare-bones client and the command you need to make an API call.

clients/client-lightsail/src/commands/GetBucketsCommand.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ export interface GetBucketsCommandInput extends GetBucketsRequest {}
2222
export interface GetBucketsCommandOutput extends GetBucketsResult, __MetadataBearer {}
2323

2424
/**
25-
* <p>Returns information about one or more Amazon Lightsail buckets.</p>
25+
* <p>Returns information about one or more Amazon Lightsail buckets. The information returned
26+
* includes the synchronization status of the Amazon Simple Storage Service (Amazon S3)
27+
* account-level block public access feature for your Lightsail buckets.</p>
2628
*
2729
* <p>For more information about buckets, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/buckets-in-amazon-lightsail">Buckets in Amazon Lightsail</a> in the <i>Amazon Lightsail Developer
28-
* Guide</i>..</p>
30+
* Guide</i>.</p>
2931
* @example
3032
* Use a bare-bones client and the command you need to make an API call.
3133
* ```javascript

clients/client-lightsail/src/commands/GetDistributionBundlesCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface GetDistributionBundlesCommandOutput extends GetDistributionBund
2525
* <p>Returns the bundles that can be applied to your Amazon Lightsail content delivery network
2626
* (CDN) distributions.</p>
2727
* <p>A distribution bundle specifies the monthly network transfer quota and monthly cost of
28-
* your dsitribution.</p>
28+
* your distribution.</p>
2929
* @example
3030
* Use a bare-bones client and the command you need to make an API call.
3131
* ```javascript

clients/client-lightsail/src/commands/UpdateDistributionBundleCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface UpdateDistributionBundleCommandOutput extends UpdateDistributio
2525
* <p>Updates the bundle of your Amazon Lightsail content delivery network (CDN)
2626
* distribution.</p>
2727
* <p>A distribution bundle specifies the monthly network transfer quota and monthly cost of
28-
* your dsitribution.</p>
28+
* your distribution.</p>
2929
* <p>Update your distribution's bundle if your distribution is going over its monthly network
3030
* transfer quota and is incurring an overage fee.</p>
3131
* <p>You can update your distribution's bundle only one time within your monthly AWS billing

0 commit comments

Comments
 (0)