Struct aws_sdk_chimesdkidentity::operation::create_app_instance_bot::CreateAppInstanceBotInput
source · #[non_exhaustive]pub struct CreateAppInstanceBotInput {
pub app_instance_arn: Option<String>,
pub name: Option<String>,
pub metadata: Option<String>,
pub client_request_token: Option<String>,
pub tags: Option<Vec<Tag>>,
pub configuration: Option<Configuration>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.app_instance_arn: Option<String>The ARN of the AppInstance request.
name: Option<String>The user's name.
metadata: Option<String>The request metadata. Limited to a 1KB string in UTF-8.
client_request_token: Option<String>The unique ID for the client making the request. Use different tokens for different AppInstanceBots.
The tags assigned to the AppInstanceBot.
configuration: Option<Configuration>Configuration information about the Amazon Lex V2 V2 bot.
Implementations§
source§impl CreateAppInstanceBotInput
impl CreateAppInstanceBotInput
sourcepub fn app_instance_arn(&self) -> Option<&str>
pub fn app_instance_arn(&self) -> Option<&str>
The ARN of the AppInstance request.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
The unique ID for the client making the request. Use different tokens for different AppInstanceBots.
The tags assigned to the AppInstanceBot.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
sourcepub fn configuration(&self) -> Option<&Configuration>
pub fn configuration(&self) -> Option<&Configuration>
Configuration information about the Amazon Lex V2 V2 bot.
source§impl CreateAppInstanceBotInput
impl CreateAppInstanceBotInput
sourcepub fn builder() -> CreateAppInstanceBotInputBuilder
pub fn builder() -> CreateAppInstanceBotInputBuilder
Creates a new builder-style object to manufacture CreateAppInstanceBotInput.
Trait Implementations§
source§impl Clone for CreateAppInstanceBotInput
impl Clone for CreateAppInstanceBotInput
source§fn clone(&self) -> CreateAppInstanceBotInput
fn clone(&self) -> CreateAppInstanceBotInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CreateAppInstanceBotInput
impl Debug for CreateAppInstanceBotInput
source§impl PartialEq for CreateAppInstanceBotInput
impl PartialEq for CreateAppInstanceBotInput
source§fn eq(&self, other: &CreateAppInstanceBotInput) -> bool
fn eq(&self, other: &CreateAppInstanceBotInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateAppInstanceBotInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateAppInstanceBotInput
impl Send for CreateAppInstanceBotInput
impl Sync for CreateAppInstanceBotInput
impl Unpin for CreateAppInstanceBotInput
impl UnwindSafe for CreateAppInstanceBotInput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.