Struct aws_sdk_ec2::operation::get_transit_gateway_policy_table_associations::GetTransitGatewayPolicyTableAssociationsOutput
source · #[non_exhaustive]pub struct GetTransitGatewayPolicyTableAssociationsOutput {
pub associations: Option<Vec<TransitGatewayPolicyTableAssociation>>,
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.associations: Option<Vec<TransitGatewayPolicyTableAssociation>>
Returns details about the transit gateway policy table association.
next_token: Option<String>
The token for the next page of results.
Implementations§
source§impl GetTransitGatewayPolicyTableAssociationsOutput
impl GetTransitGatewayPolicyTableAssociationsOutput
sourcepub fn associations(&self) -> Option<&[TransitGatewayPolicyTableAssociation]>
pub fn associations(&self) -> Option<&[TransitGatewayPolicyTableAssociation]>
Returns details about the transit gateway policy table association.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next page of results.
source§impl GetTransitGatewayPolicyTableAssociationsOutput
impl GetTransitGatewayPolicyTableAssociationsOutput
sourcepub fn builder() -> GetTransitGatewayPolicyTableAssociationsOutputBuilder
pub fn builder() -> GetTransitGatewayPolicyTableAssociationsOutputBuilder
Creates a new builder-style object to manufacture GetTransitGatewayPolicyTableAssociationsOutput
.
Trait Implementations§
source§impl Clone for GetTransitGatewayPolicyTableAssociationsOutput
impl Clone for GetTransitGatewayPolicyTableAssociationsOutput
source§fn clone(&self) -> GetTransitGatewayPolicyTableAssociationsOutput
fn clone(&self) -> GetTransitGatewayPolicyTableAssociationsOutput
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<GetTransitGatewayPolicyTableAssociationsOutput> for GetTransitGatewayPolicyTableAssociationsOutput
impl PartialEq<GetTransitGatewayPolicyTableAssociationsOutput> for GetTransitGatewayPolicyTableAssociationsOutput
source§fn eq(&self, other: &GetTransitGatewayPolicyTableAssociationsOutput) -> bool
fn eq(&self, other: &GetTransitGatewayPolicyTableAssociationsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetTransitGatewayPolicyTableAssociationsOutput
impl RequestId for GetTransitGatewayPolicyTableAssociationsOutput
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 GetTransitGatewayPolicyTableAssociationsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetTransitGatewayPolicyTableAssociationsOutput
impl Send for GetTransitGatewayPolicyTableAssociationsOutput
impl Sync for GetTransitGatewayPolicyTableAssociationsOutput
impl Unpin for GetTransitGatewayPolicyTableAssociationsOutput
impl UnwindSafe for GetTransitGatewayPolicyTableAssociationsOutput
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