amazonka-ec2-2.0: Amazon Elastic Compute Cloud SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.EC2.DescribeRouteTables

Description

Describes one or more of your route tables.

Each subnet in your VPC must be associated with a route table. If a subnet is not explicitly associated with any route table, it is implicitly associated with the main route table. This command does not return the subnet ID for implicit associations.

For more information, see Route tables in the Amazon Virtual Private Cloud User Guide.

This operation returns paginated results.

Synopsis

Creating a Request

data DescribeRouteTables Source #

See: newDescribeRouteTables smart constructor.

Constructors

DescribeRouteTables' 

Fields

  • dryRun :: Maybe Bool

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

  • filters :: Maybe [Filter]

    One or more filters.

    • association.route-table-association-id - The ID of an association ID for the route table.
    • association.route-table-id - The ID of the route table involved in the association.
    • association.subnet-id - The ID of the subnet involved in the association.
    • association.main - Indicates whether the route table is the main route table for the VPC (true | false). Route tables that do not have an association ID are not returned in the response.
    • owner-id - The ID of the Amazon Web Services account that owns the route table.
    • route-table-id - The ID of the route table.
    • route.destination-cidr-block - The IPv4 CIDR range specified in a route in the table.
    • route.destination-ipv6-cidr-block - The IPv6 CIDR range specified in a route in the route table.
    • route.destination-prefix-list-id - The ID (prefix) of the Amazon Web Service specified in a route in the table.
    • route.egress-only-internet-gateway-id - The ID of an egress-only Internet gateway specified in a route in the route table.
    • route.gateway-id - The ID of a gateway specified in a route in the table.
    • route.instance-id - The ID of an instance specified in a route in the table.
    • route.nat-gateway-id - The ID of a NAT gateway.
    • route.transit-gateway-id - The ID of a transit gateway.
    • route.origin - Describes how the route was created. CreateRouteTable indicates that the route was automatically created when the route table was created; CreateRoute indicates that the route was manually added to the route table; EnableVgwRoutePropagation indicates that the route was propagated by route propagation.
    • route.state - The state of a route in the route table (active | blackhole). The blackhole state indicates that the route's target isn't available (for example, the specified gateway isn't attached to the VPC, the specified NAT instance has been terminated, and so on).
    • route.vpc-peering-connection-id - The ID of a VPC peering connection specified in a route in the table.
    • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.
    • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
    • vpc-id - The ID of the VPC for the route table.
  • maxResults :: Maybe Natural

    The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

  • nextToken :: Maybe Text

    The token for the next page of results.

  • routeTableIds :: Maybe [Text]

    One or more route table IDs.

    Default: Describes all your route tables.

Instances

Instances details
ToHeaders DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

ToPath DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

ToQuery DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

AWSPager DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

AWSRequest DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

Associated Types

type AWSResponse DescribeRouteTables #

Generic DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

Associated Types

type Rep DescribeRouteTables :: Type -> Type #

Read DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

Show DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

NFData DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

Methods

rnf :: DescribeRouteTables -> () #

Eq DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

Hashable DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

type AWSResponse DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

type Rep DescribeRouteTables Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

type Rep DescribeRouteTables = D1 ('MetaData "DescribeRouteTables" "Amazonka.EC2.DescribeRouteTables" "amazonka-ec2-2.0-48L9RAJvmvzAdBkRegqWCL" 'False) (C1 ('MetaCons "DescribeRouteTables'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "dryRun") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "filters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Filter]))) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "routeTableIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))))))

newDescribeRouteTables :: DescribeRouteTables Source #

Create a value of DescribeRouteTables with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:dryRun:DescribeRouteTables', describeRouteTables_dryRun - Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

$sel:filters:DescribeRouteTables', describeRouteTables_filters - One or more filters.

  • association.route-table-association-id - The ID of an association ID for the route table.
  • association.route-table-id - The ID of the route table involved in the association.
  • association.subnet-id - The ID of the subnet involved in the association.
  • association.main - Indicates whether the route table is the main route table for the VPC (true | false). Route tables that do not have an association ID are not returned in the response.
  • owner-id - The ID of the Amazon Web Services account that owns the route table.
  • route-table-id - The ID of the route table.
  • route.destination-cidr-block - The IPv4 CIDR range specified in a route in the table.
  • route.destination-ipv6-cidr-block - The IPv6 CIDR range specified in a route in the route table.
  • route.destination-prefix-list-id - The ID (prefix) of the Amazon Web Service specified in a route in the table.
  • route.egress-only-internet-gateway-id - The ID of an egress-only Internet gateway specified in a route in the route table.
  • route.gateway-id - The ID of a gateway specified in a route in the table.
  • route.instance-id - The ID of an instance specified in a route in the table.
  • route.nat-gateway-id - The ID of a NAT gateway.
  • route.transit-gateway-id - The ID of a transit gateway.
  • route.origin - Describes how the route was created. CreateRouteTable indicates that the route was automatically created when the route table was created; CreateRoute indicates that the route was manually added to the route table; EnableVgwRoutePropagation indicates that the route was propagated by route propagation.
  • route.state - The state of a route in the route table (active | blackhole). The blackhole state indicates that the route's target isn't available (for example, the specified gateway isn't attached to the VPC, the specified NAT instance has been terminated, and so on).
  • route.vpc-peering-connection-id - The ID of a VPC peering connection specified in a route in the table.
  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.
  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
  • vpc-id - The ID of the VPC for the route table.

$sel:maxResults:DescribeRouteTables', describeRouteTables_maxResults - The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

DescribeRouteTables, describeRouteTables_nextToken - The token for the next page of results.

DescribeRouteTables, describeRouteTables_routeTableIds - One or more route table IDs.

Default: Describes all your route tables.

Request Lenses

describeRouteTables_dryRun :: Lens' DescribeRouteTables (Maybe Bool) Source #

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

describeRouteTables_filters :: Lens' DescribeRouteTables (Maybe [Filter]) Source #

One or more filters.

  • association.route-table-association-id - The ID of an association ID for the route table.
  • association.route-table-id - The ID of the route table involved in the association.
  • association.subnet-id - The ID of the subnet involved in the association.
  • association.main - Indicates whether the route table is the main route table for the VPC (true | false). Route tables that do not have an association ID are not returned in the response.
  • owner-id - The ID of the Amazon Web Services account that owns the route table.
  • route-table-id - The ID of the route table.
  • route.destination-cidr-block - The IPv4 CIDR range specified in a route in the table.
  • route.destination-ipv6-cidr-block - The IPv6 CIDR range specified in a route in the route table.
  • route.destination-prefix-list-id - The ID (prefix) of the Amazon Web Service specified in a route in the table.
  • route.egress-only-internet-gateway-id - The ID of an egress-only Internet gateway specified in a route in the route table.
  • route.gateway-id - The ID of a gateway specified in a route in the table.
  • route.instance-id - The ID of an instance specified in a route in the table.
  • route.nat-gateway-id - The ID of a NAT gateway.
  • route.transit-gateway-id - The ID of a transit gateway.
  • route.origin - Describes how the route was created. CreateRouteTable indicates that the route was automatically created when the route table was created; CreateRoute indicates that the route was manually added to the route table; EnableVgwRoutePropagation indicates that the route was propagated by route propagation.
  • route.state - The state of a route in the route table (active | blackhole). The blackhole state indicates that the route's target isn't available (for example, the specified gateway isn't attached to the VPC, the specified NAT instance has been terminated, and so on).
  • route.vpc-peering-connection-id - The ID of a VPC peering connection specified in a route in the table.
  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.
  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
  • vpc-id - The ID of the VPC for the route table.

describeRouteTables_maxResults :: Lens' DescribeRouteTables (Maybe Natural) Source #

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

describeRouteTables_nextToken :: Lens' DescribeRouteTables (Maybe Text) Source #

The token for the next page of results.

describeRouteTables_routeTableIds :: Lens' DescribeRouteTables (Maybe [Text]) Source #

One or more route table IDs.

Default: Describes all your route tables.

Destructuring the Response

data DescribeRouteTablesResponse Source #

Contains the output of DescribeRouteTables.

See: newDescribeRouteTablesResponse smart constructor.

Constructors

DescribeRouteTablesResponse' 

Fields

Instances

Instances details
Generic DescribeRouteTablesResponse Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

Associated Types

type Rep DescribeRouteTablesResponse :: Type -> Type #

Read DescribeRouteTablesResponse Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

Show DescribeRouteTablesResponse Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

NFData DescribeRouteTablesResponse Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

Eq DescribeRouteTablesResponse Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

type Rep DescribeRouteTablesResponse Source # 
Instance details

Defined in Amazonka.EC2.DescribeRouteTables

type Rep DescribeRouteTablesResponse = D1 ('MetaData "DescribeRouteTablesResponse" "Amazonka.EC2.DescribeRouteTables" "amazonka-ec2-2.0-48L9RAJvmvzAdBkRegqWCL" 'False) (C1 ('MetaCons "DescribeRouteTablesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "routeTables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [RouteTable])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDescribeRouteTablesResponse Source #

Create a value of DescribeRouteTablesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

DescribeRouteTables, describeRouteTablesResponse_nextToken - The token to use to retrieve the next page of results. This value is null when there are no more results to return.

$sel:routeTables:DescribeRouteTablesResponse', describeRouteTablesResponse_routeTables - Information about one or more route tables.

$sel:httpStatus:DescribeRouteTablesResponse', describeRouteTablesResponse_httpStatus - The response's http status code.

Response Lenses

describeRouteTablesResponse_nextToken :: Lens' DescribeRouteTablesResponse (Maybe Text) Source #

The token to use to retrieve the next page of results. This value is null when there are no more results to return.