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