#[non_exhaustive]pub struct DescribeVpcConnectionOutput {
pub vpc_connection: Option<VpcConnection>,
pub request_id: Option<String>,
pub status: i32,
/* 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.vpc_connection: Option<VpcConnection>A response object that provides information for the specified VPC connection.
request_id: Option<String>The Amazon Web Services request ID for this operation.
status: i32The HTTP status of the request.
Implementations§
source§impl DescribeVpcConnectionOutput
impl DescribeVpcConnectionOutput
sourcepub fn vpc_connection(&self) -> Option<&VpcConnection>
pub fn vpc_connection(&self) -> Option<&VpcConnection>
A response object that provides information for the specified VPC connection.
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
The Amazon Web Services request ID for this operation.
source§impl DescribeVpcConnectionOutput
impl DescribeVpcConnectionOutput
sourcepub fn builder() -> DescribeVpcConnectionOutputBuilder
pub fn builder() -> DescribeVpcConnectionOutputBuilder
Creates a new builder-style object to manufacture DescribeVpcConnectionOutput.
Trait Implementations§
source§impl Clone for DescribeVpcConnectionOutput
impl Clone for DescribeVpcConnectionOutput
source§fn clone(&self) -> DescribeVpcConnectionOutput
fn clone(&self) -> DescribeVpcConnectionOutput
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 Debug for DescribeVpcConnectionOutput
impl Debug for DescribeVpcConnectionOutput
source§impl PartialEq for DescribeVpcConnectionOutput
impl PartialEq for DescribeVpcConnectionOutput
source§fn eq(&self, other: &DescribeVpcConnectionOutput) -> bool
fn eq(&self, other: &DescribeVpcConnectionOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeVpcConnectionOutput
impl RequestId for DescribeVpcConnectionOutput
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 DescribeVpcConnectionOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeVpcConnectionOutput
impl Send for DescribeVpcConnectionOutput
impl Sync for DescribeVpcConnectionOutput
impl Unpin for DescribeVpcConnectionOutput
impl UnwindSafe for DescribeVpcConnectionOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.