Struct aws_sdk_elasticsearch::operation::describe_inbound_cross_cluster_search_connections::builders::DescribeInboundCrossClusterSearchConnectionsOutputBuilder
source · #[non_exhaustive]pub struct DescribeInboundCrossClusterSearchConnectionsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeInboundCrossClusterSearchConnectionsOutput
.
Implementations§
source§impl DescribeInboundCrossClusterSearchConnectionsOutputBuilder
impl DescribeInboundCrossClusterSearchConnectionsOutputBuilder
sourcepub fn cross_cluster_search_connections(
self,
input: InboundCrossClusterSearchConnection
) -> Self
pub fn cross_cluster_search_connections( self, input: InboundCrossClusterSearchConnection ) -> Self
Appends an item to cross_cluster_search_connections
.
To override the contents of this collection use set_cross_cluster_search_connections
.
Consists of list of
matching the specified filter criteria.InboundCrossClusterSearchConnection
sourcepub fn set_cross_cluster_search_connections(
self,
input: Option<Vec<InboundCrossClusterSearchConnection>>
) -> Self
pub fn set_cross_cluster_search_connections( self, input: Option<Vec<InboundCrossClusterSearchConnection>> ) -> Self
Consists of list of
matching the specified filter criteria.InboundCrossClusterSearchConnection
sourcepub fn get_cross_cluster_search_connections(
&self
) -> &Option<Vec<InboundCrossClusterSearchConnection>>
pub fn get_cross_cluster_search_connections( &self ) -> &Option<Vec<InboundCrossClusterSearchConnection>>
Consists of list of
matching the specified filter criteria.InboundCrossClusterSearchConnection
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If more results are available and NextToken is present, make the next request to the same API with the received NextToken to paginate the remaining results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If more results are available and NextToken is present, make the next request to the same API with the received NextToken to paginate the remaining results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If more results are available and NextToken is present, make the next request to the same API with the received NextToken to paginate the remaining results.
sourcepub fn build(self) -> DescribeInboundCrossClusterSearchConnectionsOutput
pub fn build(self) -> DescribeInboundCrossClusterSearchConnectionsOutput
Consumes the builder and constructs a DescribeInboundCrossClusterSearchConnectionsOutput
.
Trait Implementations§
source§impl Clone for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
impl Clone for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
source§fn clone(&self) -> DescribeInboundCrossClusterSearchConnectionsOutputBuilder
fn clone(&self) -> DescribeInboundCrossClusterSearchConnectionsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
impl Default for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
source§fn default() -> DescribeInboundCrossClusterSearchConnectionsOutputBuilder
fn default() -> DescribeInboundCrossClusterSearchConnectionsOutputBuilder
source§impl PartialEq for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
impl PartialEq for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
source§fn eq(
&self,
other: &DescribeInboundCrossClusterSearchConnectionsOutputBuilder
) -> bool
fn eq( &self, other: &DescribeInboundCrossClusterSearchConnectionsOutputBuilder ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
impl RefUnwindSafe for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
impl Send for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
impl Sync for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
impl Unpin for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
impl UnwindSafe for DescribeInboundCrossClusterSearchConnectionsOutputBuilder
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> 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