#[non_exhaustive]pub struct CreateVpcConnectionOutput {
pub vpc_connection_arn: Option<String>,
pub state: Option<VpcConnectionState>,
pub authentication: Option<String>,
pub vpc_id: Option<String>,
pub client_subnets: Option<Vec<String>>,
pub security_groups: Option<Vec<String>>,
pub creation_time: Option<DateTime>,
pub tags: Option<HashMap<String, String>>,
/* 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.vpc_connection_arn: Option<String>
The VPC connection ARN.
state: Option<VpcConnectionState>
The State of Vpc Connection.
authentication: Option<String>
The authentication type of VPC connection.
vpc_id: Option<String>
The VPC ID of the VPC connection.
client_subnets: Option<Vec<String>>
The list of client subnets.
security_groups: Option<Vec<String>>
The list of security groups.
creation_time: Option<DateTime>
The creation time of VPC connection.
A map of tags for the VPC connection.
Implementations§
source§impl CreateVpcConnectionOutput
impl CreateVpcConnectionOutput
sourcepub fn vpc_connection_arn(&self) -> Option<&str>
pub fn vpc_connection_arn(&self) -> Option<&str>
The VPC connection ARN.
sourcepub fn state(&self) -> Option<&VpcConnectionState>
pub fn state(&self) -> Option<&VpcConnectionState>
The State of Vpc Connection.
sourcepub fn authentication(&self) -> Option<&str>
pub fn authentication(&self) -> Option<&str>
The authentication type of VPC connection.
sourcepub fn client_subnets(&self) -> &[String]
pub fn client_subnets(&self) -> &[String]
The list of client subnets.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .client_subnets.is_none()
.
sourcepub fn security_groups(&self) -> &[String]
pub fn security_groups(&self) -> &[String]
The list of security groups.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .security_groups.is_none()
.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The creation time of VPC connection.
A map of tags for the VPC connection.
source§impl CreateVpcConnectionOutput
impl CreateVpcConnectionOutput
sourcepub fn builder() -> CreateVpcConnectionOutputBuilder
pub fn builder() -> CreateVpcConnectionOutputBuilder
Creates a new builder-style object to manufacture CreateVpcConnectionOutput
.
Trait Implementations§
source§impl Clone for CreateVpcConnectionOutput
impl Clone for CreateVpcConnectionOutput
source§fn clone(&self) -> CreateVpcConnectionOutput
fn clone(&self) -> CreateVpcConnectionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateVpcConnectionOutput
impl Debug for CreateVpcConnectionOutput
source§impl PartialEq for CreateVpcConnectionOutput
impl PartialEq for CreateVpcConnectionOutput
source§fn eq(&self, other: &CreateVpcConnectionOutput) -> bool
fn eq(&self, other: &CreateVpcConnectionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateVpcConnectionOutput
impl RequestId for CreateVpcConnectionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for CreateVpcConnectionOutput
Auto Trait Implementations§
impl Freeze for CreateVpcConnectionOutput
impl RefUnwindSafe for CreateVpcConnectionOutput
impl Send for CreateVpcConnectionOutput
impl Sync for CreateVpcConnectionOutput
impl Unpin for CreateVpcConnectionOutput
impl UnwindSafe for CreateVpcConnectionOutput
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> 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