#[non_exhaustive]pub struct UpdateVpcConnectionOutput {
pub arn: Option<String>,
pub vpc_connection_id: Option<String>,
pub update_status: Option<VpcConnectionResourceStatus>,
pub availability_status: Option<VpcConnectionAvailabilityStatus>,
pub request_id: Option<String>,
pub status: i32,
/* 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.arn: Option<String>
The Amazon Resource Name (ARN) of the VPC connection.
vpc_connection_id: Option<String>
The ID of the VPC connection that you are updating. This ID is a unique identifier for each Amazon Web Services Region in anAmazon Web Services account.
update_status: Option<VpcConnectionResourceStatus>
The update status of the VPC connection's last update.
availability_status: Option<VpcConnectionAvailabilityStatus>
The availability status of the VPC connection.
request_id: Option<String>
The Amazon Web Services request ID for this operation.
status: i32
The HTTP status of the request.
Implementations§
source§impl UpdateVpcConnectionOutput
impl UpdateVpcConnectionOutput
sourcepub fn vpc_connection_id(&self) -> Option<&str>
pub fn vpc_connection_id(&self) -> Option<&str>
The ID of the VPC connection that you are updating. This ID is a unique identifier for each Amazon Web Services Region in anAmazon Web Services account.
sourcepub fn update_status(&self) -> Option<&VpcConnectionResourceStatus>
pub fn update_status(&self) -> Option<&VpcConnectionResourceStatus>
The update status of the VPC connection's last update.
sourcepub fn availability_status(&self) -> Option<&VpcConnectionAvailabilityStatus>
pub fn availability_status(&self) -> Option<&VpcConnectionAvailabilityStatus>
The availability status of the 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 UpdateVpcConnectionOutput
impl UpdateVpcConnectionOutput
sourcepub fn builder() -> UpdateVpcConnectionOutputBuilder
pub fn builder() -> UpdateVpcConnectionOutputBuilder
Creates a new builder-style object to manufacture UpdateVpcConnectionOutput
.
Trait Implementations§
source§impl Clone for UpdateVpcConnectionOutput
impl Clone for UpdateVpcConnectionOutput
source§fn clone(&self) -> UpdateVpcConnectionOutput
fn clone(&self) -> UpdateVpcConnectionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateVpcConnectionOutput
impl Debug for UpdateVpcConnectionOutput
source§impl RequestId for UpdateVpcConnectionOutput
impl RequestId for UpdateVpcConnectionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for UpdateVpcConnectionOutput
Auto Trait Implementations§
impl Freeze for UpdateVpcConnectionOutput
impl RefUnwindSafe for UpdateVpcConnectionOutput
impl Send for UpdateVpcConnectionOutput
impl Sync for UpdateVpcConnectionOutput
impl Unpin for UpdateVpcConnectionOutput
impl UnwindSafe for UpdateVpcConnectionOutput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more