#[non_exhaustive]pub struct ListGatewaysOutput {
pub gateways: Option<Vec<ListedGateway>>,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.gateways: Option<Vec<ListedGateway>>A list of gateway summaries.
next_token: Option<String>The token that identifies which batch of results that you want to see. For example, you submit a ListGateways request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListGateways request a second time and specify the NextToken value.
Implementations§
source§impl ListGatewaysOutput
impl ListGatewaysOutput
sourcepub fn gateways(&self) -> &[ListedGateway]
pub fn gateways(&self) -> &[ListedGateway]
A list of gateway summaries.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .gateways.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token that identifies which batch of results that you want to see. For example, you submit a ListGateways request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListGateways request a second time and specify the NextToken value.
source§impl ListGatewaysOutput
impl ListGatewaysOutput
sourcepub fn builder() -> ListGatewaysOutputBuilder
pub fn builder() -> ListGatewaysOutputBuilder
Creates a new builder-style object to manufacture ListGatewaysOutput.
Trait Implementations§
source§impl Clone for ListGatewaysOutput
impl Clone for ListGatewaysOutput
source§fn clone(&self) -> ListGatewaysOutput
fn clone(&self) -> ListGatewaysOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListGatewaysOutput
impl Debug for ListGatewaysOutput
source§impl PartialEq for ListGatewaysOutput
impl PartialEq for ListGatewaysOutput
source§fn eq(&self, other: &ListGatewaysOutput) -> bool
fn eq(&self, other: &ListGatewaysOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ListGatewaysOutput
impl RequestId for ListGatewaysOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.