Struct aws_sdk_iot::types::VpcDestinationConfiguration
source · #[non_exhaustive]pub struct VpcDestinationConfiguration {
pub subnet_ids: Vec<String>,
pub security_groups: Option<Vec<String>>,
pub vpc_id: String,
pub role_arn: String,
}
Expand description
The configuration information for a virtual private cloud (VPC) destination.
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.subnet_ids: Vec<String>
The subnet IDs of the VPC destination.
security_groups: Option<Vec<String>>
The security groups of the VPC destination.
vpc_id: String
The ID of the VPC.
role_arn: String
The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).
Implementations§
source§impl VpcDestinationConfiguration
impl VpcDestinationConfiguration
sourcepub fn subnet_ids(&self) -> &[String]
pub fn subnet_ids(&self) -> &[String]
The subnet IDs of the VPC destination.
sourcepub fn security_groups(&self) -> &[String]
pub fn security_groups(&self) -> &[String]
The security groups of the VPC destination.
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()
.
source§impl VpcDestinationConfiguration
impl VpcDestinationConfiguration
sourcepub fn builder() -> VpcDestinationConfigurationBuilder
pub fn builder() -> VpcDestinationConfigurationBuilder
Creates a new builder-style object to manufacture VpcDestinationConfiguration
.
Trait Implementations§
source§impl Clone for VpcDestinationConfiguration
impl Clone for VpcDestinationConfiguration
source§fn clone(&self) -> VpcDestinationConfiguration
fn clone(&self) -> VpcDestinationConfiguration
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 VpcDestinationConfiguration
impl Debug for VpcDestinationConfiguration
source§impl PartialEq for VpcDestinationConfiguration
impl PartialEq for VpcDestinationConfiguration
source§fn eq(&self, other: &VpcDestinationConfiguration) -> bool
fn eq(&self, other: &VpcDestinationConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VpcDestinationConfiguration
Auto Trait Implementations§
impl Freeze for VpcDestinationConfiguration
impl RefUnwindSafe for VpcDestinationConfiguration
impl Send for VpcDestinationConfiguration
impl Sync for VpcDestinationConfiguration
impl Unpin for VpcDestinationConfiguration
impl UnwindSafe for VpcDestinationConfiguration
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.