Struct aws_sdk_elasticsearch::operation::describe_inbound_cross_cluster_search_connections::builders::DescribeInboundCrossClusterSearchConnectionsInputBuilder
source · #[non_exhaustive]pub struct DescribeInboundCrossClusterSearchConnectionsInputBuilder { /* private fields */ }Expand description
A builder for DescribeInboundCrossClusterSearchConnectionsInput.
Implementations§
source§impl DescribeInboundCrossClusterSearchConnectionsInputBuilder
impl DescribeInboundCrossClusterSearchConnectionsInputBuilder
sourcepub fn filters(self, input: Filter) -> Self
pub fn filters(self, input: Filter) -> Self
Appends an item to filters.
To override the contents of this collection use set_filters.
A list of filters used to match properties for inbound cross-cluster search connection. Available names for this operation are:Filter
- cross-cluster-search-connection-id
- source-domain-info.domain-name
- source-domain-info.owner-id
- source-domain-info.region
- destination-domain-info.domain-name
sourcepub fn set_filters(self, input: Option<Vec<Filter>>) -> Self
pub fn set_filters(self, input: Option<Vec<Filter>>) -> Self
A list of filters used to match properties for inbound cross-cluster search connection. Available names for this operation are:Filter
- cross-cluster-search-connection-id
- source-domain-info.domain-name
- source-domain-info.owner-id
- source-domain-info.region
- destination-domain-info.domain-name
sourcepub fn get_filters(&self) -> &Option<Vec<Filter>>
pub fn get_filters(&self) -> &Option<Vec<Filter>>
A list of filters used to match properties for inbound cross-cluster search connection. Available names for this operation are:Filter
- cross-cluster-search-connection-id
- source-domain-info.domain-name
- source-domain-info.owner-id
- source-domain-info.region
- destination-domain-info.domain-name
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
Set this value to limit the number of results returned. If not specified, defaults to 100.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
Set this value to limit the number of results returned. If not specified, defaults to 100.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
Set this value to limit the number of results returned. If not specified, defaults to 100.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
sourcepub fn build(
self,
) -> Result<DescribeInboundCrossClusterSearchConnectionsInput, BuildError>
pub fn build( self, ) -> Result<DescribeInboundCrossClusterSearchConnectionsInput, BuildError>
Consumes the builder and constructs a DescribeInboundCrossClusterSearchConnectionsInput.
source§impl DescribeInboundCrossClusterSearchConnectionsInputBuilder
impl DescribeInboundCrossClusterSearchConnectionsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeInboundCrossClusterSearchConnectionsOutput, SdkError<DescribeInboundCrossClusterSearchConnectionsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeInboundCrossClusterSearchConnectionsOutput, SdkError<DescribeInboundCrossClusterSearchConnectionsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeInboundCrossClusterSearchConnectionsInputBuilder
impl Clone for DescribeInboundCrossClusterSearchConnectionsInputBuilder
source§fn clone(&self) -> DescribeInboundCrossClusterSearchConnectionsInputBuilder
fn clone(&self) -> DescribeInboundCrossClusterSearchConnectionsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeInboundCrossClusterSearchConnectionsInputBuilder
impl Default for DescribeInboundCrossClusterSearchConnectionsInputBuilder
source§fn default() -> DescribeInboundCrossClusterSearchConnectionsInputBuilder
fn default() -> DescribeInboundCrossClusterSearchConnectionsInputBuilder
source§impl PartialEq for DescribeInboundCrossClusterSearchConnectionsInputBuilder
impl PartialEq for DescribeInboundCrossClusterSearchConnectionsInputBuilder
source§fn eq(
&self,
other: &DescribeInboundCrossClusterSearchConnectionsInputBuilder,
) -> bool
fn eq( &self, other: &DescribeInboundCrossClusterSearchConnectionsInputBuilder, ) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeInboundCrossClusterSearchConnectionsInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeInboundCrossClusterSearchConnectionsInputBuilder
impl RefUnwindSafe for DescribeInboundCrossClusterSearchConnectionsInputBuilder
impl Send for DescribeInboundCrossClusterSearchConnectionsInputBuilder
impl Sync for DescribeInboundCrossClusterSearchConnectionsInputBuilder
impl Unpin for DescribeInboundCrossClusterSearchConnectionsInputBuilder
impl UnwindSafe for DescribeInboundCrossClusterSearchConnectionsInputBuilder
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