+72
-61
lines changedFilter options
+72
-61
lines changed Original file line number Diff line number Diff line change
@@ -38,7 +38,6 @@ export interface AdvertiseByoipCidrCommandOutput extends AdvertiseByoipCidrResul
38
38
* location and start advertising it through Amazon Web Services.</p>
39
39
* <p>It can take a few minutes before traffic to the specified addresses starts routing to Amazon Web Services
40
40
* because of BGP propagation delays.</p>
41
-
* <p>To stop advertising the BYOIP CIDR, use <a>WithdrawByoipCidr</a>.</p>
42
41
* @example
43
42
* Use a bare-bones client and the command you need to make an API call.
44
43
* ```javascript
Original file line number Diff line number Diff line change
@@ -43,6 +43,7 @@ export interface AssociateRouteTableCommandOutput extends AssociateRouteTableRes
43
43
* const client = new EC2Client(config);
44
44
* const input = { // AssociateRouteTableRequest
45
45
* GatewayId: "STRING_VALUE",
46
+
* PublicIpv4Pool: "STRING_VALUE",
46
47
* DryRun: true || false,
47
48
* SubnetId: "STRING_VALUE",
48
49
* RouteTableId: "STRING_VALUE", // required
Original file line number Diff line number Diff line change
@@ -64,6 +64,7 @@ export interface CreateRouteTableCommandOutput extends CreateRouteTableResult, _
64
64
* // RouteTableId: "STRING_VALUE",
65
65
* // SubnetId: "STRING_VALUE",
66
66
* // GatewayId: "STRING_VALUE",
67
+
* // PublicIpv4Pool: "STRING_VALUE",
67
68
* // AssociationState: { // RouteTableAssociationState
68
69
* // State: "associating" || "associated" || "disassociating" || "disassociated" || "failed",
69
70
* // StatusMessage: "STRING_VALUE",
Original file line number Diff line number Diff line change
@@ -30,8 +30,8 @@ export interface DeprovisionByoipCidrCommandOutput extends DeprovisionByoipCidrR
30
30
/**
31
31
* <p>Releases the specified address range that you provisioned for use with your Amazon Web Services resources
32
32
* 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>
35
35
* @example
36
36
* Use a bare-bones client and the command you need to make an API call.
37
37
* ```javascript
Original file line number Diff line number Diff line change
@@ -28,9 +28,8 @@ export interface DescribeByoipCidrsCommandInput extends DescribeByoipCidrsReques
28
28
export interface DescribeByoipCidrsCommandOutput extends DescribeByoipCidrsResult, __MetadataBearer {}
29
29
30
30
/**
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>
34
33
* @example
35
34
* Use a bare-bones client and the command you need to make an API call.
36
35
* ```javascript
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
41
41
* results, with the <code>imageAllowed</code> field set to <code>true</code> for each image. In
42
42
* <code>audit-mode</code>, the <code>imageAllowed</code> field is set to <code>true</code> for
43
43
* 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>
45
45
* <p>The Amazon EC2 API follows an eventual consistency model. This means that the result of an API
46
46
* command you run that creates or modifies resources might not be immediately available to all
47
47
* 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
Original file line number Diff line number Diff line change
@@ -29,7 +29,6 @@ export interface DescribeManagedPrefixListsCommandOutput extends DescribeManaged
29
29
30
30
/**
31
31
* <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>
33
32
* @example
34
33
* Use a bare-bones client and the command you need to make an API call.
35
34
* ```javascript
Original file line number Diff line number Diff line change
@@ -30,7 +30,6 @@ export interface DescribePrefixListsCommandOutput extends DescribePrefixListsRes
30
30
/**
31
31
* <p>Describes available Amazon Web Services services in a prefix list format, which includes the prefix list
32
32
* 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>
34
33
* @example
35
34
* Use a bare-bones client and the command you need to make an API call.
36
35
* ```javascript
Original file line number Diff line number Diff line change
@@ -68,6 +68,7 @@ export interface DescribeRouteTablesCommandOutput extends DescribeRouteTablesRes
68
68
* // RouteTableId: "STRING_VALUE",
69
69
* // SubnetId: "STRING_VALUE",
70
70
* // GatewayId: "STRING_VALUE",
71
+
* // PublicIpv4Pool: "STRING_VALUE",
71
72
* // AssociationState: { // RouteTableAssociationState
72
73
* // State: "associating" || "associated" || "disassociating" || "disassociated" || "failed",
73
74
* // StatusMessage: "STRING_VALUE",
Original file line number Diff line number Diff line change
@@ -38,8 +38,7 @@ export interface EnableImageDeregistrationProtectionCommandOutput
38
38
/**
39
39
* <p>Enables deregistration protection for an AMI. When deregistration protection is enabled,
40
40
* the AMI can't be deregistered.</p>
41
-
* <p>To allow the AMI to be deregistered, you must first disable deregistration protection
42
-
* using <a>DisableImageDeregistrationProtection</a>.</p>
41
+
* <p>To allow the AMI to be deregistered, you must first disable deregistration protection.</p>
43
42
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-deregistration-protection.html">Protect an
44
43
* Amazon EC2 AMI from deregistration</a> in the <i>Amazon EC2 User Guide</i>.</p>
45
44
* @example
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4