Struct aws_sdk_ec2::operation::describe_transit_gateway_connects::DescribeTransitGatewayConnectsOutput
source · #[non_exhaustive]pub struct DescribeTransitGatewayConnectsOutput {
pub transit_gateway_connects: Option<Vec<TransitGatewayConnect>>,
pub next_token: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.transit_gateway_connects: Option<Vec<TransitGatewayConnect>>
Information about the Connect attachments.
next_token: Option<String>
The token to use to retrieve the next page of results. This value is null
when there are no more results to return.
Implementations§
source§impl DescribeTransitGatewayConnectsOutput
impl DescribeTransitGatewayConnectsOutput
sourcepub fn transit_gateway_connects(&self) -> Option<&[TransitGatewayConnect]>
pub fn transit_gateway_connects(&self) -> Option<&[TransitGatewayConnect]>
Information about the Connect attachments.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use to retrieve the next page of results. This value is null
when there are no more results to return.
source§impl DescribeTransitGatewayConnectsOutput
impl DescribeTransitGatewayConnectsOutput
sourcepub fn builder() -> DescribeTransitGatewayConnectsOutputBuilder
pub fn builder() -> DescribeTransitGatewayConnectsOutputBuilder
Creates a new builder-style object to manufacture DescribeTransitGatewayConnectsOutput
.
Trait Implementations§
source§impl Clone for DescribeTransitGatewayConnectsOutput
impl Clone for DescribeTransitGatewayConnectsOutput
source§fn clone(&self) -> DescribeTransitGatewayConnectsOutput
fn clone(&self) -> DescribeTransitGatewayConnectsOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<DescribeTransitGatewayConnectsOutput> for DescribeTransitGatewayConnectsOutput
impl PartialEq<DescribeTransitGatewayConnectsOutput> for DescribeTransitGatewayConnectsOutput
source§fn eq(&self, other: &DescribeTransitGatewayConnectsOutput) -> bool
fn eq(&self, other: &DescribeTransitGatewayConnectsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeTransitGatewayConnectsOutput
impl RequestId for DescribeTransitGatewayConnectsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeTransitGatewayConnectsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeTransitGatewayConnectsOutput
impl Send for DescribeTransitGatewayConnectsOutput
impl Sync for DescribeTransitGatewayConnectsOutput
impl Unpin for DescribeTransitGatewayConnectsOutput
impl UnwindSafe for DescribeTransitGatewayConnectsOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more