#[non_exhaustive]pub struct CreateExperimentInput { /* private fields */ }
Implementations§
source§impl CreateExperimentInput
impl CreateExperimentInput
sourcepub fn experiment_name(&self) -> Option<&str>
pub fn experiment_name(&self) -> Option<&str>
The name of the experiment. The name must be unique in your Amazon Web Services account and is not case-sensitive.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
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.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the experiment.
A list of tags to associate with the experiment. You can use Search API to search on the tags.
source§impl CreateExperimentInput
impl CreateExperimentInput
sourcepub fn builder() -> CreateExperimentInputBuilder
pub fn builder() -> CreateExperimentInputBuilder
Creates a new builder-style object to manufacture CreateExperimentInput
.
source§impl CreateExperimentInput
impl CreateExperimentInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateExperiment, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<CreateExperiment, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateExperiment
>
Trait Implementations§
source§impl Clone for CreateExperimentInput
impl Clone for CreateExperimentInput
source§fn clone(&self) -> CreateExperimentInput
fn clone(&self) -> CreateExperimentInput
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 CreateExperimentInput
impl Debug for CreateExperimentInput
source§impl PartialEq<CreateExperimentInput> for CreateExperimentInput
impl PartialEq<CreateExperimentInput> for CreateExperimentInput
source§fn eq(&self, other: &CreateExperimentInput) -> bool
fn eq(&self, other: &CreateExperimentInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateExperimentInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateExperimentInput
impl Send for CreateExperimentInput
impl Sync for CreateExperimentInput
impl Unpin for CreateExperimentInput
impl UnwindSafe for CreateExperimentInput
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