-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release-1.29.52: Bumping version to 1.29.52 Update changelog based on model updates CLI examples directconnect, ec2, iam, iot, lambda, sqs Add Swift support for CodeArtifact login command
- Loading branch information
Showing
63 changed files
with
2,163 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[ | ||
{ | ||
"category": "``appconfig``", | ||
"description": "Enabling boto3 paginators for list APIs and adding documentation around ServiceQuotaExceededException errors", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``apprunner``", | ||
"description": "This release adds improvements for managing App Runner auto scaling configuration resources. New APIs: UpdateDefaultAutoScalingConfiguration and ListServicesForAutoScalingConfiguration. Updated API: DeleteAutoScalingConfiguration.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``codeartifact``", | ||
"description": "Add support for the Swift package format.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``kinesisvideo``", | ||
"description": "Updated DescribeMediaStorageConfiguration, StartEdgeConfigurationUpdate, ImageGenerationConfiguration$SamplingInterval, and UpdateMediaStorageConfiguration to match AWS Docs.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``logs``", | ||
"description": "Add ClientToken to QueryDefinition CFN Handler in CWL", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``s3``", | ||
"description": "Fix an issue where the SDK can fail to unmarshall response due to NumberFormatException", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``servicediscovery``", | ||
"description": "Adds a new DiscoverInstancesRevision API and also adds InstanceRevision field to the DiscoverInstances API response.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``sso-oidc``", | ||
"description": "Update FIPS endpoints in aws-us-gov.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``codeartifact login``", | ||
"description": "Add Swift support for CodeArtifact login command", | ||
"type": "enhancement" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
114 changes: 57 additions & 57 deletions
114
awscli/examples/directconnect/create-transit-virtual-interface.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,57 @@ | ||
**To create a transit virtual interface** | ||
|
||
The following ``create-transit-virtual-interface`` example creates a transit virtual interface for the specified connection. :: | ||
|
||
ws directconnect create-transit-virtual-interface \ | ||
--connection-id dxlag-fEXAMPLE \ | ||
--new-transit-virtual-interface "virtualInterfaceName=Example Transit Virtual Interface,vlan=126,asn=65110,mtu=1500,authKey=0xzxgA9YoW9h58u8SvEXAMPLE,amazonAddress=192.168.1.1/30,customerAddress=192.168.1.2/30,addressFamily=ipv4,directConnectGatewayId=8384da05-13ce-4a91-aada-5a1baEXAMPLE,tags=[{key=Tag,value=Example}]" | ||
|
||
Output:: | ||
|
||
{ | ||
"virtualInterface": { | ||
"ownerAccount": "1111222233333", | ||
"virtualInterfaceId": "dxvif-fEXAMPLE", | ||
"location": "loc1", | ||
"connectionId": "dxlag-fEXAMPLE", | ||
"virtualInterfaceType": "transit", | ||
"virtualInterfaceName": "Example Transit Virtual Interface", | ||
"vlan": 126, | ||
"asn": 65110, | ||
"amazonSideAsn": 4200000000, | ||
"authKey": "0xzxgA9YoW9h58u8SEXAMPLE", | ||
"amazonAddress": "192.168.1.1/30", | ||
"customerAddress": "192.168.1.2/30", | ||
"addressFamily": "ipv4", | ||
"virtualInterfaceState": "pending", | ||
"customerRouterConfig": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<logical_connection id=\"dxvif-fEXAMPLE\">\n <vlan>126</vlan>\n <customer_address>192.168.1.2/30</customer_address>\n <amazon_address>192.168.1.1/30</amazon_address>\n <bgp_asn>65110</bgp_asn>\n <bgp_auth_key>0xzxgA9YoW9h58u8SvOmXRTw</bgp_auth_key>\n <amazon_bgp_asn>4200000000</amazon_bgp_asn>\n <connection_type>transit</connection_type>\n</logical_connection>\n", | ||
"mtu": 1500, | ||
"jumboFrameCapable": true, | ||
"virtualGatewayId": "", | ||
"directConnectGatewayId": "8384da05-13ce-4a91-aada-5a1baEXAMPLE", | ||
"routeFilterPrefixes": [], | ||
"bgpPeers": [ | ||
{ | ||
"bgpPeerId": "dxpeer-EXAMPLE", | ||
"asn": 65110, | ||
"authKey": "0xzxgA9YoW9h58u8SEXAMPLE", | ||
"addressFamily": "ipv4", | ||
"amazonAddress": "192.168.1.1/30", | ||
"customerAddress": "192.168.1.2/30", | ||
"bgpPeerState": "pending", | ||
"bgpStatus": "down", | ||
"awsDeviceV2": "loc1-26wz6vEXAMPLE" | ||
} | ||
], | ||
"region": "sa-east-1", | ||
"awsDeviceV2": "loc1-26wz6vEXAMPLE", | ||
"tags": [ | ||
{ | ||
"key": "Tag", | ||
"value": "Example" | ||
} | ||
] | ||
} | ||
} | ||
|
||
For more information, see `Creating a Transit Virtual Interface to the Direct Connect Gateway <https://docs.aws.amazon.com/directconnect/latest/UserGuide/create-vif.html#create-transit-vif>`__ in the *AWS Direct Connect User Guide*. | ||
**To create a transit virtual interface** | ||
|
||
The following ``create-transit-virtual-interface`` example creates a transit virtual interface for the specified connection. :: | ||
|
||
aws directconnect create-transit-virtual-interface \ | ||
--connection-id dxlag-fEXAMPLE \ | ||
--new-transit-virtual-interface "virtualInterfaceName=Example Transit Virtual Interface,vlan=126,asn=65110,mtu=1500,authKey=0xzxgA9YoW9h58u8SvEXAMPLE,amazonAddress=192.168.1.1/30,customerAddress=192.168.1.2/30,addressFamily=ipv4,directConnectGatewayId=8384da05-13ce-4a91-aada-5a1baEXAMPLE,tags=[{key=Tag,value=Example}]" | ||
|
||
Output:: | ||
|
||
{ | ||
"virtualInterface": { | ||
"ownerAccount": "1111222233333", | ||
"virtualInterfaceId": "dxvif-fEXAMPLE", | ||
"location": "loc1", | ||
"connectionId": "dxlag-fEXAMPLE", | ||
"virtualInterfaceType": "transit", | ||
"virtualInterfaceName": "Example Transit Virtual Interface", | ||
"vlan": 126, | ||
"asn": 65110, | ||
"amazonSideAsn": 4200000000, | ||
"authKey": "0xzxgA9YoW9h58u8SEXAMPLE", | ||
"amazonAddress": "192.168.1.1/30", | ||
"customerAddress": "192.168.1.2/30", | ||
"addressFamily": "ipv4", | ||
"virtualInterfaceState": "pending", | ||
"customerRouterConfig": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<logical_connection id=\"dxvif-fEXAMPLE\">\n <vlan>126</vlan>\n <customer_address>192.168.1.2/30</customer_address>\n <amazon_address>192.168.1.1/30</amazon_address>\n <bgp_asn>65110</bgp_asn>\n <bgp_auth_key>0xzxgA9YoW9h58u8SvOmXRTw</bgp_auth_key>\n <amazon_bgp_asn>4200000000</amazon_bgp_asn>\n <connection_type>transit</connection_type>\n</logical_connection>\n", | ||
"mtu": 1500, | ||
"jumboFrameCapable": true, | ||
"virtualGatewayId": "", | ||
"directConnectGatewayId": "8384da05-13ce-4a91-aada-5a1baEXAMPLE", | ||
"routeFilterPrefixes": [], | ||
"bgpPeers": [ | ||
{ | ||
"bgpPeerId": "dxpeer-EXAMPLE", | ||
"asn": 65110, | ||
"authKey": "0xzxgA9YoW9h58u8SEXAMPLE", | ||
"addressFamily": "ipv4", | ||
"amazonAddress": "192.168.1.1/30", | ||
"customerAddress": "192.168.1.2/30", | ||
"bgpPeerState": "pending", | ||
"bgpStatus": "down", | ||
"awsDeviceV2": "loc1-26wz6vEXAMPLE" | ||
} | ||
], | ||
"region": "sa-east-1", | ||
"awsDeviceV2": "loc1-26wz6vEXAMPLE", | ||
"tags": [ | ||
{ | ||
"key": "Tag", | ||
"value": "Example" | ||
} | ||
] | ||
} | ||
} | ||
|
||
For more information, see `Creating a Transit Virtual Interface to the Direct Connect Gateway <https://docs.aws.amazon.com/directconnect/latest/UserGuide/create-vif.html#create-transit-vif>`__ in the *AWS Direct Connect User Guide*. |
27 changes: 27 additions & 0 deletions
27
awscli/examples/ec2/assign-private-nat-gateway-address.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
**To assign private IP addresses to your private NAT gateway** | ||
|
||
The following ``assign-private-nat-gateway-address`` example assigns two private IP addresses to the specified private NAT gateway. :: | ||
|
||
aws ec2 assign-private-nat-gateway-address \ | ||
--nat-gateway-id nat-1234567890abcdef0 \ | ||
--private-ip-address-count 2 | ||
|
||
Output:: | ||
|
||
{ | ||
"NatGatewayId": "nat-1234567890abcdef0", | ||
"NatGatewayAddresses": [ | ||
{ | ||
"NetworkInterfaceId": "eni-0065a61b324d1897a", | ||
"IsPrimary": false, | ||
"Status": "assigning" | ||
}, | ||
{ | ||
"NetworkInterfaceId": "eni-0065a61b324d1897a", | ||
"IsPrimary": false, | ||
"Status": "assigning" | ||
} | ||
] | ||
} | ||
|
||
For more information, see `NAT gateways <https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html>`__ in the *Amazon VPC User Guide*. |
Oops, something went wrong.