1**To describe your transit gateway route tables** 2 3The following ``describe-transit-gateway-route-tables`` examples displays details for all of your transit gateway route tables. :: 4 5 aws ec2 describe-transit-gateway-route-tables 6 7Output:: 8 9 { 10 "TransitGatewayRouteTables": [ 11 { 12 "TransitGatewayRouteTableId": "tgw-rtb-0ca78a549EXAMPLE", 13 "TransitGatewayId": "tgw-0bc994abffEXAMPLE", 14 "State": "available", 15 "DefaultAssociationRouteTable": true, 16 "DefaultPropagationRouteTable": true, 17 "CreationTime": "2018-11-28T14:24:49.000Z", 18 "Tags": [] 19 }, 20 { 21 "TransitGatewayRouteTableId": "tgw-rtb-0e8f48f148EXAMPLE", 22 "TransitGatewayId": "tgw-0043d72bb4EXAMPLE", 23 "State": "available", 24 "DefaultAssociationRouteTable": true, 25 "DefaultPropagationRouteTable": true, 26 "CreationTime": "2018-11-28T14:24:00.000Z", 27 "Tags": [] 28 } 29 ] 30 } 31 32For more information, see `View Transit Gateway Route Tables <https://docs.aws.amazon.com/vpc/latest/tgw/tgw-route-tables.html#view-tgw-route-tables>`__ in the *AWS Transit Gateways Guide*. 33