Struct aws_sdk_applicationdiscovery::operation::describe_export_configurations::builders::DescribeExportConfigurationsInputBuilder
source · #[non_exhaustive]pub struct DescribeExportConfigurationsInputBuilder { /* private fields */ }Expand description
A builder for DescribeExportConfigurationsInput.
Implementations§
source§impl DescribeExportConfigurationsInputBuilder
impl DescribeExportConfigurationsInputBuilder
sourcepub fn export_ids(self, input: impl Into<String>) -> Self
pub fn export_ids(self, input: impl Into<String>) -> Self
Appends an item to export_ids.
To override the contents of this collection use set_export_ids.
A list of continuous export IDs to search for.
sourcepub fn set_export_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_export_ids(self, input: Option<Vec<String>>) -> Self
A list of continuous export IDs to search for.
sourcepub fn get_export_ids(&self) -> &Option<Vec<String>>
pub fn get_export_ids(&self) -> &Option<Vec<String>>
A list of continuous export IDs to search for.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
A number between 1 and 100 specifying the maximum number of continuous export descriptions returned.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
A number between 1 and 100 specifying the maximum number of continuous export descriptions returned.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
A number between 1 and 100 specifying the maximum number of continuous export descriptions returned.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token from the previous call to describe-export-tasks.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token from the previous call to describe-export-tasks.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token from the previous call to describe-export-tasks.
sourcepub fn build(self) -> Result<DescribeExportConfigurationsInput, BuildError>
pub fn build(self) -> Result<DescribeExportConfigurationsInput, BuildError>
Consumes the builder and constructs a DescribeExportConfigurationsInput.
source§impl DescribeExportConfigurationsInputBuilder
impl DescribeExportConfigurationsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeExportConfigurationsOutput, SdkError<DescribeExportConfigurationsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeExportConfigurationsOutput, SdkError<DescribeExportConfigurationsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeExportConfigurationsInputBuilder
impl Clone for DescribeExportConfigurationsInputBuilder
source§fn clone(&self) -> DescribeExportConfigurationsInputBuilder
fn clone(&self) -> DescribeExportConfigurationsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeExportConfigurationsInputBuilder
impl Default for DescribeExportConfigurationsInputBuilder
source§fn default() -> DescribeExportConfigurationsInputBuilder
fn default() -> DescribeExportConfigurationsInputBuilder
source§impl PartialEq for DescribeExportConfigurationsInputBuilder
impl PartialEq for DescribeExportConfigurationsInputBuilder
source§fn eq(&self, other: &DescribeExportConfigurationsInputBuilder) -> bool
fn eq(&self, other: &DescribeExportConfigurationsInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeExportConfigurationsInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeExportConfigurationsInputBuilder
impl RefUnwindSafe for DescribeExportConfigurationsInputBuilder
impl Send for DescribeExportConfigurationsInputBuilder
impl Sync for DescribeExportConfigurationsInputBuilder
impl Unpin for DescribeExportConfigurationsInputBuilder
impl UnwindSafe for DescribeExportConfigurationsInputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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