Struct aws_sdk_qbusiness::operation::get_chat_controls_configuration::GetChatControlsConfigurationInput
source · #[non_exhaustive]pub struct GetChatControlsConfigurationInput {
pub application_id: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}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.application_id: Option<String>The identifier of the application for which the chat controls are configured.
max_results: Option<i32>The maximum number of configured chat controls to return.
next_token: Option<String>If the maxResults response was incomplete because there is more data to retrieve, Amazon Q returns a pagination token in the response. You can use this pagination token to retrieve the next set of Amazon Q chat controls configured.
Implementations§
source§impl GetChatControlsConfigurationInput
impl GetChatControlsConfigurationInput
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The identifier of the application for which the chat controls are configured.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of configured chat controls to return.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the maxResults response was incomplete because there is more data to retrieve, Amazon Q returns a pagination token in the response. You can use this pagination token to retrieve the next set of Amazon Q chat controls configured.
source§impl GetChatControlsConfigurationInput
impl GetChatControlsConfigurationInput
sourcepub fn builder() -> GetChatControlsConfigurationInputBuilder
pub fn builder() -> GetChatControlsConfigurationInputBuilder
Creates a new builder-style object to manufacture GetChatControlsConfigurationInput.
Trait Implementations§
source§impl Clone for GetChatControlsConfigurationInput
impl Clone for GetChatControlsConfigurationInput
source§fn clone(&self) -> GetChatControlsConfigurationInput
fn clone(&self) -> GetChatControlsConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for GetChatControlsConfigurationInput
impl PartialEq for GetChatControlsConfigurationInput
source§fn eq(&self, other: &GetChatControlsConfigurationInput) -> bool
fn eq(&self, other: &GetChatControlsConfigurationInput) -> bool
self and other values to be equal, and is used
by ==.