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