#[non_exhaustive]pub struct DescribeVpcEndpointsInput {
pub vpc_endpoint_ids: Option<Vec<String>>,
}
Expand description
Container for request parameters to the
operation. Specifies the list of VPC endpoints to be described.DescribeVpcEndpoints
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_endpoint_ids: Option<Vec<String>>
The unique identifiers of the endpoints to get information about.
Implementations§
source§impl DescribeVpcEndpointsInput
impl DescribeVpcEndpointsInput
sourcepub fn vpc_endpoint_ids(&self) -> &[String]
pub fn vpc_endpoint_ids(&self) -> &[String]
The unique identifiers of the endpoints to get information about.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .vpc_endpoint_ids.is_none()
.
source§impl DescribeVpcEndpointsInput
impl DescribeVpcEndpointsInput
sourcepub fn builder() -> DescribeVpcEndpointsInputBuilder
pub fn builder() -> DescribeVpcEndpointsInputBuilder
Creates a new builder-style object to manufacture DescribeVpcEndpointsInput
.
Trait Implementations§
source§impl Clone for DescribeVpcEndpointsInput
impl Clone for DescribeVpcEndpointsInput
source§fn clone(&self) -> DescribeVpcEndpointsInput
fn clone(&self) -> DescribeVpcEndpointsInput
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 DescribeVpcEndpointsInput
impl Debug for DescribeVpcEndpointsInput
source§impl PartialEq for DescribeVpcEndpointsInput
impl PartialEq for DescribeVpcEndpointsInput
source§fn eq(&self, other: &DescribeVpcEndpointsInput) -> bool
fn eq(&self, other: &DescribeVpcEndpointsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeVpcEndpointsInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeVpcEndpointsInput
impl Send for DescribeVpcEndpointsInput
impl Sync for DescribeVpcEndpointsInput
impl Unpin for DescribeVpcEndpointsInput
impl UnwindSafe for DescribeVpcEndpointsInput
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.