pub struct CreateExperimentRequest {
pub description: Option<String>,
pub display_name: Option<String>,
pub experiment_name: String,
pub tags: Option<Vec<Tag>>,
}
Fields§
§description: Option<String>
The description of the experiment.
display_name: Option<String>
The name of the experiment as displayed. The name doesn't need to be unique. If you don't specify DisplayName
, the value in ExperimentName
is displayed.
experiment_name: String
The name of the experiment. The name must be unique in your AWS account and is not case-sensitive.
A list of tags to associate with the experiment. You can use Search API to search on the tags.
Trait Implementations§
Source§impl Clone for CreateExperimentRequest
impl Clone for CreateExperimentRequest
Source§fn clone(&self) -> CreateExperimentRequest
fn clone(&self) -> CreateExperimentRequest
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 CreateExperimentRequest
impl Debug for CreateExperimentRequest
Source§impl Default for CreateExperimentRequest
impl Default for CreateExperimentRequest
Source§fn default() -> CreateExperimentRequest
fn default() -> CreateExperimentRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateExperimentRequest
impl PartialEq for CreateExperimentRequest
Source§impl Serialize for CreateExperimentRequest
impl Serialize for CreateExperimentRequest
impl StructuralPartialEq for CreateExperimentRequest
Auto Trait Implementations§
impl Freeze for CreateExperimentRequest
impl RefUnwindSafe for CreateExperimentRequest
impl Send for CreateExperimentRequest
impl Sync for CreateExperimentRequest
impl Unpin for CreateExperimentRequest
impl UnwindSafe for CreateExperimentRequest
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