pub struct CreateBotVersionRequest {
pub checksum: Option<String>,
pub name: String,
}Fields§
§checksum: Option<String>Identifies a specific revision of the $LATEST version of the bot. If you specify a checksum and the $LATEST version of the bot has a different checksum, a PreconditionFailedException exception is returned and Amazon Lex doesn't publish a new version. If you don't specify a checksum, Amazon Lex publishes the $LATEST version.
name: StringThe name of the bot that you want to create a new version of. The name is case sensitive.
Trait Implementations§
Source§impl Clone for CreateBotVersionRequest
impl Clone for CreateBotVersionRequest
Source§fn clone(&self) -> CreateBotVersionRequest
fn clone(&self) -> CreateBotVersionRequest
Returns a duplicate 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 CreateBotVersionRequest
impl Debug for CreateBotVersionRequest
Source§impl Default for CreateBotVersionRequest
impl Default for CreateBotVersionRequest
Source§fn default() -> CreateBotVersionRequest
fn default() -> CreateBotVersionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateBotVersionRequest
impl PartialEq for CreateBotVersionRequest
Source§impl Serialize for CreateBotVersionRequest
impl Serialize for CreateBotVersionRequest
impl StructuralPartialEq for CreateBotVersionRequest
Auto Trait Implementations§
impl Freeze for CreateBotVersionRequest
impl RefUnwindSafe for CreateBotVersionRequest
impl Send for CreateBotVersionRequest
impl Sync for CreateBotVersionRequest
impl Unpin for CreateBotVersionRequest
impl UnwindSafe for CreateBotVersionRequest
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