Struct aws_sdk_elasticsearch::operation::list_vpc_endpoint_access::builders::ListVpcEndpointAccessOutputBuilder
source · #[non_exhaustive]pub struct ListVpcEndpointAccessOutputBuilder { /* private fields */ }
Expand description
A builder for ListVpcEndpointAccessOutput
.
Implementations§
source§impl ListVpcEndpointAccessOutputBuilder
impl ListVpcEndpointAccessOutputBuilder
Appends an item to authorized_principal_list
.
To override the contents of this collection use set_authorized_principal_list
.
List of AuthorizedPrincipal
describing the details of the permissions to manage VPC endpoints against the specified domain.
List of AuthorizedPrincipal
describing the details of the permissions to manage VPC endpoints against the specified domain.
List of AuthorizedPrincipal
describing the details of the permissions to manage VPC endpoints against the specified domain.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Provides an identifier to allow retrieval of paginated results.
This field is required.sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Provides an identifier to allow retrieval of paginated results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Provides an identifier to allow retrieval of paginated results.
sourcepub fn build(self) -> Result<ListVpcEndpointAccessOutput, BuildError>
pub fn build(self) -> Result<ListVpcEndpointAccessOutput, BuildError>
Consumes the builder and constructs a ListVpcEndpointAccessOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ListVpcEndpointAccessOutputBuilder
impl Clone for ListVpcEndpointAccessOutputBuilder
source§fn clone(&self) -> ListVpcEndpointAccessOutputBuilder
fn clone(&self) -> ListVpcEndpointAccessOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListVpcEndpointAccessOutputBuilder
impl Default for ListVpcEndpointAccessOutputBuilder
source§fn default() -> ListVpcEndpointAccessOutputBuilder
fn default() -> ListVpcEndpointAccessOutputBuilder
source§impl PartialEq for ListVpcEndpointAccessOutputBuilder
impl PartialEq for ListVpcEndpointAccessOutputBuilder
source§fn eq(&self, other: &ListVpcEndpointAccessOutputBuilder) -> bool
fn eq(&self, other: &ListVpcEndpointAccessOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListVpcEndpointAccessOutputBuilder
Auto Trait Implementations§
impl Freeze for ListVpcEndpointAccessOutputBuilder
impl RefUnwindSafe for ListVpcEndpointAccessOutputBuilder
impl Send for ListVpcEndpointAccessOutputBuilder
impl Sync for ListVpcEndpointAccessOutputBuilder
impl Unpin for ListVpcEndpointAccessOutputBuilder
impl UnwindSafe for ListVpcEndpointAccessOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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