Struct rusoto_directconnect::DescribeDirectConnectGatewayAssociationsRequest[][src]

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

Container for the parameters to the DescribeDirectConnectGatewayAssociations operation.

Fields

The ID of the direct connect gateway.

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

Default: None

The maximum number of direct connect gateway associations 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

The ID of the virtual private gateway.

Example: "vgw-abc123ef"

Default: None

Trait Implementations

impl Default for DescribeDirectConnectGatewayAssociationsRequest
[src]

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

impl Debug for DescribeDirectConnectGatewayAssociationsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDirectConnectGatewayAssociationsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeDirectConnectGatewayAssociationsRequest
[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