#[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
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_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) -> Option<&[String]>
pub fn client_subnets(&self) -> Option<&[String]>
The list of client subnets.
sourcepub fn security_groups(&self) -> Option<&[String]>
pub fn security_groups(&self) -> Option<&[String]>
The list of security groups.
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
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 CreateVpcConnectionOutput
impl Debug for CreateVpcConnectionOutput
source§impl PartialEq<CreateVpcConnectionOutput> for CreateVpcConnectionOutput
impl PartialEq<CreateVpcConnectionOutput> for CreateVpcConnectionOutput
source§fn eq(&self, other: &CreateVpcConnectionOutput) -> bool
fn eq(&self, other: &CreateVpcConnectionOutput) -> bool
This method tests for
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>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateVpcConnectionOutput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more