Struct aws_sdk_lexmodelsv2::operation::list_bot_resource_generations::ListBotResourceGenerationsOutput
source · #[non_exhaustive]pub struct ListBotResourceGenerationsOutput {
pub bot_id: Option<String>,
pub bot_version: Option<String>,
pub locale_id: Option<String>,
pub generation_summaries: Option<Vec<GenerationSummary>>,
pub next_token: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bot_id: Option<String>
The unique identifier of the bot for which the generation requests were made.
bot_version: Option<String>
The version of the bot for which the generation requests were made.
locale_id: Option<String>
The locale of the bot for which the generation requests were made.
generation_summaries: Option<Vec<GenerationSummary>>
A list of objects, each containing information about a generation request for the bot locale.
next_token: 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.
Implementations§
source§impl ListBotResourceGenerationsOutput
impl ListBotResourceGenerationsOutput
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier of the bot for which the generation requests were made.
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The version of the bot for which the generation requests were made.
sourcepub fn locale_id(&self) -> Option<&str>
pub fn locale_id(&self) -> Option<&str>
The locale of the bot for which the generation requests were made.
sourcepub fn generation_summaries(&self) -> &[GenerationSummary]
pub fn generation_summaries(&self) -> &[GenerationSummary]
A list of objects, each containing information about a generation request for the bot locale.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .generation_summaries.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
source§impl ListBotResourceGenerationsOutput
impl ListBotResourceGenerationsOutput
sourcepub fn builder() -> ListBotResourceGenerationsOutputBuilder
pub fn builder() -> ListBotResourceGenerationsOutputBuilder
Creates a new builder-style object to manufacture ListBotResourceGenerationsOutput
.
Trait Implementations§
source§impl Clone for ListBotResourceGenerationsOutput
impl Clone for ListBotResourceGenerationsOutput
source§fn clone(&self) -> ListBotResourceGenerationsOutput
fn clone(&self) -> ListBotResourceGenerationsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ListBotResourceGenerationsOutput
impl PartialEq for ListBotResourceGenerationsOutput
source§fn eq(&self, other: &ListBotResourceGenerationsOutput) -> bool
fn eq(&self, other: &ListBotResourceGenerationsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListBotResourceGenerationsOutput
impl RequestId for ListBotResourceGenerationsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.