Struct aws_sdk_iotdeviceadvisor::operation::update_suite_definition::builders::UpdateSuiteDefinitionOutputBuilder
source · #[non_exhaustive]pub struct UpdateSuiteDefinitionOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateSuiteDefinitionOutput
.
Implementations§
source§impl UpdateSuiteDefinitionOutputBuilder
impl UpdateSuiteDefinitionOutputBuilder
sourcepub fn suite_definition_id(self, input: impl Into<String>) -> Self
pub fn suite_definition_id(self, input: impl Into<String>) -> Self
Suite definition ID of the updated test suite.
sourcepub fn set_suite_definition_id(self, input: Option<String>) -> Self
pub fn set_suite_definition_id(self, input: Option<String>) -> Self
Suite definition ID of the updated test suite.
sourcepub fn get_suite_definition_id(&self) -> &Option<String>
pub fn get_suite_definition_id(&self) -> &Option<String>
Suite definition ID of the updated test suite.
sourcepub fn suite_definition_arn(self, input: impl Into<String>) -> Self
pub fn suite_definition_arn(self, input: impl Into<String>) -> Self
Amazon Resource Name (ARN) of the updated test suite.
sourcepub fn set_suite_definition_arn(self, input: Option<String>) -> Self
pub fn set_suite_definition_arn(self, input: Option<String>) -> Self
Amazon Resource Name (ARN) of the updated test suite.
sourcepub fn get_suite_definition_arn(&self) -> &Option<String>
pub fn get_suite_definition_arn(&self) -> &Option<String>
Amazon Resource Name (ARN) of the updated test suite.
sourcepub fn suite_definition_name(self, input: impl Into<String>) -> Self
pub fn suite_definition_name(self, input: impl Into<String>) -> Self
Updates the suite definition name. This is a required parameter.
sourcepub fn set_suite_definition_name(self, input: Option<String>) -> Self
pub fn set_suite_definition_name(self, input: Option<String>) -> Self
Updates the suite definition name. This is a required parameter.
sourcepub fn get_suite_definition_name(&self) -> &Option<String>
pub fn get_suite_definition_name(&self) -> &Option<String>
Updates the suite definition name. This is a required parameter.
sourcepub fn suite_definition_version(self, input: impl Into<String>) -> Self
pub fn suite_definition_version(self, input: impl Into<String>) -> Self
Suite definition version of the updated test suite.
sourcepub fn set_suite_definition_version(self, input: Option<String>) -> Self
pub fn set_suite_definition_version(self, input: Option<String>) -> Self
Suite definition version of the updated test suite.
sourcepub fn get_suite_definition_version(&self) -> &Option<String>
pub fn get_suite_definition_version(&self) -> &Option<String>
Suite definition version of the updated test suite.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
Timestamp of when the test suite was created.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
Timestamp of when the test suite was created.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
Timestamp of when the test suite was created.
sourcepub fn last_updated_at(self, input: DateTime) -> Self
pub fn last_updated_at(self, input: DateTime) -> Self
Timestamp of when the test suite was updated.
sourcepub fn set_last_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_at(self, input: Option<DateTime>) -> Self
Timestamp of when the test suite was updated.
sourcepub fn get_last_updated_at(&self) -> &Option<DateTime>
pub fn get_last_updated_at(&self) -> &Option<DateTime>
Timestamp of when the test suite was updated.
sourcepub fn build(self) -> UpdateSuiteDefinitionOutput
pub fn build(self) -> UpdateSuiteDefinitionOutput
Consumes the builder and constructs a UpdateSuiteDefinitionOutput
.
Trait Implementations§
source§impl Clone for UpdateSuiteDefinitionOutputBuilder
impl Clone for UpdateSuiteDefinitionOutputBuilder
source§fn clone(&self) -> UpdateSuiteDefinitionOutputBuilder
fn clone(&self) -> UpdateSuiteDefinitionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateSuiteDefinitionOutputBuilder
impl Default for UpdateSuiteDefinitionOutputBuilder
source§fn default() -> UpdateSuiteDefinitionOutputBuilder
fn default() -> UpdateSuiteDefinitionOutputBuilder
source§impl PartialEq for UpdateSuiteDefinitionOutputBuilder
impl PartialEq for UpdateSuiteDefinitionOutputBuilder
source§fn eq(&self, other: &UpdateSuiteDefinitionOutputBuilder) -> bool
fn eq(&self, other: &UpdateSuiteDefinitionOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateSuiteDefinitionOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateSuiteDefinitionOutputBuilder
impl RefUnwindSafe for UpdateSuiteDefinitionOutputBuilder
impl Send for UpdateSuiteDefinitionOutputBuilder
impl Sync for UpdateSuiteDefinitionOutputBuilder
impl Unpin for UpdateSuiteDefinitionOutputBuilder
impl UnwindSafe for UpdateSuiteDefinitionOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more