Struct aws_sdk_lexmodelsv2::operation::list_bot_resource_generations::builders::ListBotResourceGenerationsInputBuilder
source · #[non_exhaustive]pub struct ListBotResourceGenerationsInputBuilder { /* private fields */ }Expand description
A builder for ListBotResourceGenerationsInput.
Implementations§
source§impl ListBotResourceGenerationsInputBuilder
impl ListBotResourceGenerationsInputBuilder
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The unique identifier of the bot whose generation requests you want to view.
This field is required.sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The unique identifier of the bot whose generation requests you want to view.
sourcepub fn get_bot_id(&self) -> &Option<String>
pub fn get_bot_id(&self) -> &Option<String>
The unique identifier of the bot whose generation requests you want to view.
sourcepub fn bot_version(self, input: impl Into<String>) -> Self
pub fn bot_version(self, input: impl Into<String>) -> Self
The version of the bot whose generation requests you want to view.
This field is required.sourcepub fn set_bot_version(self, input: Option<String>) -> Self
pub fn set_bot_version(self, input: Option<String>) -> Self
The version of the bot whose generation requests you want to view.
sourcepub fn get_bot_version(&self) -> &Option<String>
pub fn get_bot_version(&self) -> &Option<String>
The version of the bot whose generation requests you want to view.
sourcepub fn locale_id(self, input: impl Into<String>) -> Self
pub fn locale_id(self, input: impl Into<String>) -> Self
The locale of the bot whose generation requests you want to view.
This field is required.sourcepub fn set_locale_id(self, input: Option<String>) -> Self
pub fn set_locale_id(self, input: Option<String>) -> Self
The locale of the bot whose generation requests you want to view.
sourcepub fn get_locale_id(&self) -> &Option<String>
pub fn get_locale_id(&self) -> &Option<String>
The locale of the bot whose generation requests you want to view.
sourcepub fn sort_by(self, input: GenerationSortBy) -> Self
pub fn sort_by(self, input: GenerationSortBy) -> Self
An object containing information about the attribute and the method by which to sort the results
sourcepub fn set_sort_by(self, input: Option<GenerationSortBy>) -> Self
pub fn set_sort_by(self, input: Option<GenerationSortBy>) -> Self
An object containing information about the attribute and the method by which to sort the results
sourcepub fn get_sort_by(&self) -> &Option<GenerationSortBy>
pub fn get_sort_by(&self) -> &Option<GenerationSortBy>
An object containing information about the attribute and the method by which to sort the results
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in the response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return in the response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to return in the response.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the total number of results is greater than the number specified in the maxResults, the response returns a token in the nextToken field. Use this token when making a request to return the next batch of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the total number of results is greater than the number specified in the maxResults, the response returns a token in the nextToken field. Use this token when making a request to return the next batch of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the total number of results is greater than the number specified in the maxResults, the response returns a token in the nextToken field. Use this token when making a request to return the next batch of results.
sourcepub fn build(self) -> Result<ListBotResourceGenerationsInput, BuildError>
pub fn build(self) -> Result<ListBotResourceGenerationsInput, BuildError>
Consumes the builder and constructs a ListBotResourceGenerationsInput.
source§impl ListBotResourceGenerationsInputBuilder
impl ListBotResourceGenerationsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListBotResourceGenerationsOutput, SdkError<ListBotResourceGenerationsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListBotResourceGenerationsOutput, SdkError<ListBotResourceGenerationsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListBotResourceGenerationsInputBuilder
impl Clone for ListBotResourceGenerationsInputBuilder
source§fn clone(&self) -> ListBotResourceGenerationsInputBuilder
fn clone(&self) -> ListBotResourceGenerationsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListBotResourceGenerationsInputBuilder
impl Default for ListBotResourceGenerationsInputBuilder
source§fn default() -> ListBotResourceGenerationsInputBuilder
fn default() -> ListBotResourceGenerationsInputBuilder
source§impl PartialEq for ListBotResourceGenerationsInputBuilder
impl PartialEq for ListBotResourceGenerationsInputBuilder
source§fn eq(&self, other: &ListBotResourceGenerationsInputBuilder) -> bool
fn eq(&self, other: &ListBotResourceGenerationsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.