Skip to content

Commit ec57020

Browse files
author
awstools
committed
feat(client-ec2): Release to show the next hop IP address for routes propagated by VPC Route Server into VPC route tables.
1 parent f8bbc34 commit ec57020

24 files changed

+69
-78
lines changed

clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export interface AdvertiseByoipCidrCommandOutput extends AdvertiseByoipCidrResul
3838
* location and start advertising it through Amazon Web Services.</p>
3939
* <p>It can take a few minutes before traffic to the specified addresses starts routing to Amazon Web Services
4040
* because of BGP propagation delays.</p>
41-
* <p>To stop advertising the BYOIP CIDR, use <a>WithdrawByoipCidr</a>.</p>
4241
* @example
4342
* Use a bare-bones client and the command you need to make an API call.
4443
* ```javascript

clients/client-ec2/src/commands/CreateRouteTableCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ export interface CreateRouteTableCommandOutput extends CreateRouteTableResult, _
9595
* // VpcPeeringConnectionId: "STRING_VALUE",
9696
* // CoreNetworkArn: "STRING_VALUE",
9797
* // OdbNetworkArn: "STRING_VALUE",
98+
* // IpAddress: "STRING_VALUE",
9899
* // },
99100
* // ],
100101
* // Tags: [ // TagList

clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ export interface DeprovisionByoipCidrCommandOutput extends DeprovisionByoipCidrR
3030
/**
3131
* <p>Releases the specified address range that you provisioned for use with your Amazon Web Services resources
3232
* through bring your own IP addresses (BYOIP) and deletes the corresponding address pool.</p>
33-
* <p>Before you can release an address range, you must stop advertising it using <a>WithdrawByoipCidr</a> and you must not have any IP addresses allocated from its
34-
* address range.</p>
33+
* <p>Before you can release an address range, you must stop advertising it and you must not
34+
* have any IP addresses allocated from its address range.</p>
3535
* @example
3636
* Use a bare-bones client and the command you need to make an API call.
3737
* ```javascript

clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ export interface DescribeByoipCidrsCommandInput extends DescribeByoipCidrsReques
2828
export interface DescribeByoipCidrsCommandOutput extends DescribeByoipCidrsResult, __MetadataBearer {}
2929

3030
/**
31-
* <p>Describes the IP address ranges that were specified in calls to <a>ProvisionByoipCidr</a>.</p>
32-
* <p>To describe the address pools that were created when you provisioned the address
33-
* ranges, use <a>DescribePublicIpv4Pools</a> or <a>DescribeIpv6Pools</a>.</p>
31+
* <p>Describes the IP address ranges that were provisioned for use with Amazon Web Services resources
32+
* through through bring your own IP addresses (BYOIP).</p>
3433
* @example
3534
* Use a bare-bones client and the command you need to make an API call.
3635
* ```javascript

clients/client-ec2/src/commands/DescribeImagesCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
4141
* results, with the <code>imageAllowed</code> field set to <code>true</code> for each image. In
4242
* <code>audit-mode</code>, the <code>imageAllowed</code> field is set to <code>true</code> for
4343
* images that meet the account's Allowed AMIs criteria, and <code>false</code> for images that
44-
* don't meet the criteria. For more information, see <a>EnableAllowedImagesSettings</a>.</p>
44+
* don't meet the criteria. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-allowed-amis.html">Allowed AMIs</a>.</p>
4545
* <p>The Amazon EC2 API follows an eventual consistency model. This means that the result of an API
4646
* command you run that creates or modifies resources might not be immediately available to all
4747
* subsequent commands you run. For guidance on how to manage eventual consistency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/eventual-consistency.html">Eventual

clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ export interface DescribeManagedPrefixListsCommandOutput extends DescribeManaged
2929

3030
/**
3131
* <p>Describes your managed prefix lists and any Amazon Web Services-managed prefix lists.</p>
32-
* <p>To view the entries for your prefix list, use <a>GetManagedPrefixListEntries</a>.</p>
3332
* @example
3433
* Use a bare-bones client and the command you need to make an API call.
3534
* ```javascript

clients/client-ec2/src/commands/DescribePrefixListsCommand.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ export interface DescribePrefixListsCommandOutput extends DescribePrefixListsRes
3030
/**
3131
* <p>Describes available Amazon Web Services services in a prefix list format, which includes the prefix list
3232
* name and prefix list ID of the service and the IP address range for the service.</p>
33-
* <p>We recommend that you use <a>DescribeManagedPrefixLists</a> instead.</p>
3433
* @example
3534
* Use a bare-bones client and the command you need to make an API call.
3635
* ```javascript

clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ export interface DescribeRouteTablesCommandOutput extends DescribeRouteTablesRes
9999
* // VpcPeeringConnectionId: "STRING_VALUE",
100100
* // CoreNetworkArn: "STRING_VALUE",
101101
* // OdbNetworkArn: "STRING_VALUE",
102+
* // IpAddress: "STRING_VALUE",
102103
* // },
103104
* // ],
104105
* // Tags: [ // TagList

clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsResult,
6969
* <code>all</code> for public snapshots.</p>
7070
* <p>If you are describing a long list of snapshots, we recommend that you paginate the output to make the
7171
* list more manageable. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
72-
* <p>To get the state of fast snapshot restores for a snapshot, use <a>DescribeFastSnapshotRestores</a>.</p>
7372
* <p>For more information about EBS snapshots, see <a href="https://docs.aws.amazon.com/ebs/latest/userguide/ebs-snapshots.html">Amazon EBS snapshots</a> in the <i>Amazon EBS User Guide</i>.</p>
7473
* <important>
7574
* <p>We strongly recommend using only paginated requests. Unpaginated requests are

clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ export interface DescribeVolumeStatusCommandOutput extends DescribeVolumeStatusR
5656
* event. For example, if the status of the volume is <code>impaired</code> and the volume event
5757
* shows <code>potential-data-inconsistency</code>, then the action shows
5858
* <code>enable-volume-io</code>. This means that you may want to enable the I/O operations for
59-
* the volume by calling the <a>EnableVolumeIO</a> action and then check the volume
60-
* for data consistency.</p>
59+
* the volume and then check the volume for data consistency. For more information, see
60+
* <a href="https://docs.aws.amazon.com/ebs/latest/userguide/work_volumes_impaired.html">Work with an
61+
* impaired EBS volume</a>.</p>
6162
* <p>Volume status is based on the volume status checks, and does not reflect the volume state.
6263
* Therefore, volume status does not indicate volumes in the <code>error</code> state (for
6364
* example, when a volume is incapable of accepting I/O.)</p>

0 commit comments

Comments
 (0)