pub struct CreateSolutionVersionRequest {
pub solution_arn: String,
pub training_mode: Option<String>,
}
Fields§
§solution_arn: String
The Amazon Resource Name (ARN) of the solution containing the training configuration information.
training_mode: Option<String>
The scope of training to be performed when creating the solution version. The FULL
option trains the solution version based on the entirety of the input solution's training data, while the UPDATE
option processes only the data that has changed in comparison to the input solution. Choose UPDATE
when you want to incrementally update your solution version instead of creating an entirely new one.
The UPDATE
option can only be used when you already have an active solution version created from the input solution using the FULL
option and the input solution was trained with the native-recipe-hrnn-coldstart recipe.
Trait Implementations§
Source§impl Clone for CreateSolutionVersionRequest
impl Clone for CreateSolutionVersionRequest
Source§fn clone(&self) -> CreateSolutionVersionRequest
fn clone(&self) -> CreateSolutionVersionRequest
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 CreateSolutionVersionRequest
impl Debug for CreateSolutionVersionRequest
Source§impl Default for CreateSolutionVersionRequest
impl Default for CreateSolutionVersionRequest
Source§fn default() -> CreateSolutionVersionRequest
fn default() -> CreateSolutionVersionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateSolutionVersionRequest
impl PartialEq for CreateSolutionVersionRequest
Source§fn eq(&self, other: &CreateSolutionVersionRequest) -> bool
fn eq(&self, other: &CreateSolutionVersionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateSolutionVersionRequest
Auto Trait Implementations§
impl Freeze for CreateSolutionVersionRequest
impl RefUnwindSafe for CreateSolutionVersionRequest
impl Send for CreateSolutionVersionRequest
impl Sync for CreateSolutionVersionRequest
impl Unpin for CreateSolutionVersionRequest
impl UnwindSafe for CreateSolutionVersionRequest
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