Struct aws_sdk_ec2::operation::describe_vpc_endpoint_services::DescribeVpcEndpointServicesOutput
source · #[non_exhaustive]pub struct DescribeVpcEndpointServicesOutput {
pub service_names: Option<Vec<String>>,
pub service_details: Option<Vec<ServiceDetail>>,
pub next_token: Option<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.service_names: Option<Vec<String>>
The supported services.
service_details: Option<Vec<ServiceDetail>>
Information about the service.
next_token: Option<String>
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
Implementations§
source§impl DescribeVpcEndpointServicesOutput
impl DescribeVpcEndpointServicesOutput
sourcepub fn service_names(&self) -> Option<&[String]>
pub fn service_names(&self) -> Option<&[String]>
The supported services.
sourcepub fn service_details(&self) -> Option<&[ServiceDetail]>
pub fn service_details(&self) -> Option<&[ServiceDetail]>
Information about the service.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
source§impl DescribeVpcEndpointServicesOutput
impl DescribeVpcEndpointServicesOutput
sourcepub fn builder() -> DescribeVpcEndpointServicesOutputBuilder
pub fn builder() -> DescribeVpcEndpointServicesOutputBuilder
Creates a new builder-style object to manufacture DescribeVpcEndpointServicesOutput
.
Trait Implementations§
source§impl Clone for DescribeVpcEndpointServicesOutput
impl Clone for DescribeVpcEndpointServicesOutput
source§fn clone(&self) -> DescribeVpcEndpointServicesOutput
fn clone(&self) -> DescribeVpcEndpointServicesOutput
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 PartialEq<DescribeVpcEndpointServicesOutput> for DescribeVpcEndpointServicesOutput
impl PartialEq<DescribeVpcEndpointServicesOutput> for DescribeVpcEndpointServicesOutput
source§fn eq(&self, other: &DescribeVpcEndpointServicesOutput) -> bool
fn eq(&self, other: &DescribeVpcEndpointServicesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeVpcEndpointServicesOutput
impl RequestId for DescribeVpcEndpointServicesOutput
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 DescribeVpcEndpointServicesOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeVpcEndpointServicesOutput
impl Send for DescribeVpcEndpointServicesOutput
impl Sync for DescribeVpcEndpointServicesOutput
impl Unpin for DescribeVpcEndpointServicesOutput
impl UnwindSafe for DescribeVpcEndpointServicesOutput
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