paws.storage (version 0.1.0)

storagegateway_list_gateways: Lists gateways owned by an AWS account in a region specified in the request

Description

Lists gateways owned by an AWS account in a region specified in the request. The returned list is ordered by gateway Amazon Resource Name (ARN).

Usage

storagegateway_list_gateways(Marker, Limit)

Arguments

Marker

An opaque string that indicates the position at which to begin the returned list of gateways.

Limit

Specifies that the list of gateways returned be limited to the specified number of items.

Request syntax

svc$list_gateways(
  Marker = "string",
  Limit = 123
)

Details

By default, the operation returns a maximum of 100 gateways. This operation supports pagination that allows you to optionally reduce the number of gateways returned in a response.

If you have more gateways than are returned in a response (that is, the response returns only a truncated list of your gateways), the response contains a marker that you can specify in your next request to fetch the next page of gateways.

Examples

Run this code
# NOT RUN {
# Lists gateways owned by an AWS account in a specified region as
# requested. Results are sorted by gateway ARN up to a maximum of 100
# gateways.
# }
# NOT RUN {
svc$list_gateways(
  Limit = 2L,
  Marker = "1"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace