paws.compute (version 0.1.0)

ec2_describe_nat_gateways: Describes one or more of your NAT gateways

Description

Describes one or more of your NAT gateways.

Usage

ec2_describe_nat_gateways(Filter, MaxResults, NatGatewayIds, NextToken)

Arguments

Filter

One or more filters.

  • nat-gateway-id - The ID of the NAT gateway.

  • state - The state of the NAT gateway (pending \| failed \| available \| deleting \| deleted).

  • subnet-id - The ID of the subnet in which the NAT gateway resides.

  • 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 in which the NAT gateway resides.

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.

NatGatewayIds

One or more NAT gateway IDs.

NextToken

The token for the next page of results.

Request syntax

svc$describe_nat_gateways(
  Filter = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NatGatewayIds = list(
    "string"
  ),
  NextToken = "string"
)

Examples

Run this code
# NOT RUN {
# This example describes the NAT gateway for the specified VPC.
# }
# NOT RUN {
svc$describe_nat_gateways(
  Filter = list(
    list(
      Name = "vpc-id",
      Values = list(
        "vpc-1a2b3c4d"
      )
    )
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab