HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/doc/awscli/examples/ec2/describe-transit-gateway-connect-peers.rst
**To describe a Transit Gateway Connect peer**

The following ``describe-transit-gateway-connect-peers`` example describes the specified Connect peer. ::

    aws ec2 describe-transit-gateway-connect-peers \
        --transit-gateway-connect-peer-ids tgw-connect-peer-0666adbac4EXAMPLE

Output::

    {
        "TransitGatewayConnectPeers": [
            {
                "TransitGatewayAttachmentId": "tgw-attach-0f0927767cEXAMPLE",
                "TransitGatewayConnectPeerId": "tgw-connect-peer-0666adbac4EXAMPLE",
                "State": "available",
                "CreationTime": "2021-10-13T03:35:17.000Z",
                "ConnectPeerConfiguration": {
                    "TransitGatewayAddress": "10.0.0.234",
                    "PeerAddress": "172.31.1.11",
                    "InsideCidrBlocks": [
                        "169.254.6.0/29"
                    ],
                    "Protocol": "gre",
                    "BgpConfigurations": [
                        {
                            "TransitGatewayAsn": 64512,
                            "PeerAsn": 64512,
                            "TransitGatewayAddress": "169.254.6.2",
                            "PeerAddress": "169.254.6.1",
                            "BgpStatus": "down"
                        },
                        {
                            "TransitGatewayAsn": 64512,
                            "PeerAsn": 64512,
                            "TransitGatewayAddress": "169.254.6.3",
                            "PeerAddress": "169.254.6.1",
                            "BgpStatus": "down"
                        }
                    ]
                },
                "Tags": []
            }
        ]
    }

For more information, see `Transit gateway Connect attachments and Transit Gateway Connect peers <https://docs.aws.amazon.com/vpc/latest/tgw/tgw-connect.html>`__ in the *Transit Gateways Guide*.