Struct rusoto_directconnect::DescribeDirectConnectGatewaysRequest[][src]

pub struct DescribeDirectConnectGatewaysRequest {
    pub direct_connect_gateway_id: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Container for the parameters to the DescribeDirectConnectGateways operation.

Fields

The ID of the direct connect gateway.

Example: "abcd1234-dcba-5678-be23-cdef9876ab45"

Default: None

The maximum number of direct connect gateways to return per page.

Example: 15

Default: None

The token provided in the previous describe result to retrieve the next page of the result.

Default: None

Trait Implementations

impl Default for DescribeDirectConnectGatewaysRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeDirectConnectGatewaysRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDirectConnectGatewaysRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeDirectConnectGatewaysRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations