#[non_exhaustive]pub struct ManagedActionBuilder { /* private fields */ }
Expand description
A builder for ManagedAction
.
Implementations§
source§impl ManagedActionBuilder
impl ManagedActionBuilder
sourcepub fn action_id(self, input: impl Into<String>) -> Self
pub fn action_id(self, input: impl Into<String>) -> Self
A unique identifier for the managed action.
sourcepub fn set_action_id(self, input: Option<String>) -> Self
pub fn set_action_id(self, input: Option<String>) -> Self
A unique identifier for the managed action.
sourcepub fn get_action_id(&self) -> &Option<String>
pub fn get_action_id(&self) -> &Option<String>
A unique identifier for the managed action.
sourcepub fn action_description(self, input: impl Into<String>) -> Self
pub fn action_description(self, input: impl Into<String>) -> Self
A description of the managed action.
sourcepub fn set_action_description(self, input: Option<String>) -> Self
pub fn set_action_description(self, input: Option<String>) -> Self
A description of the managed action.
sourcepub fn get_action_description(&self) -> &Option<String>
pub fn get_action_description(&self) -> &Option<String>
A description of the managed action.
sourcepub fn action_type(self, input: ActionType) -> Self
pub fn action_type(self, input: ActionType) -> Self
The type of managed action.
sourcepub fn set_action_type(self, input: Option<ActionType>) -> Self
pub fn set_action_type(self, input: Option<ActionType>) -> Self
The type of managed action.
sourcepub fn get_action_type(&self) -> &Option<ActionType>
pub fn get_action_type(&self) -> &Option<ActionType>
The type of managed action.
sourcepub fn status(self, input: ActionStatus) -> Self
pub fn status(self, input: ActionStatus) -> Self
The status of the managed action. If the action is Scheduled
, you can apply it immediately with ApplyEnvironmentManagedAction
.
sourcepub fn set_status(self, input: Option<ActionStatus>) -> Self
pub fn set_status(self, input: Option<ActionStatus>) -> Self
The status of the managed action. If the action is Scheduled
, you can apply it immediately with ApplyEnvironmentManagedAction
.
sourcepub fn get_status(&self) -> &Option<ActionStatus>
pub fn get_status(&self) -> &Option<ActionStatus>
The status of the managed action. If the action is Scheduled
, you can apply it immediately with ApplyEnvironmentManagedAction
.
sourcepub fn window_start_time(self, input: DateTime) -> Self
pub fn window_start_time(self, input: DateTime) -> Self
The start time of the maintenance window in which the managed action will execute.
sourcepub fn set_window_start_time(self, input: Option<DateTime>) -> Self
pub fn set_window_start_time(self, input: Option<DateTime>) -> Self
The start time of the maintenance window in which the managed action will execute.
sourcepub fn get_window_start_time(&self) -> &Option<DateTime>
pub fn get_window_start_time(&self) -> &Option<DateTime>
The start time of the maintenance window in which the managed action will execute.
sourcepub fn build(self) -> ManagedAction
pub fn build(self) -> ManagedAction
Consumes the builder and constructs a ManagedAction
.
Trait Implementations§
source§impl Clone for ManagedActionBuilder
impl Clone for ManagedActionBuilder
source§fn clone(&self) -> ManagedActionBuilder
fn clone(&self) -> ManagedActionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ManagedActionBuilder
impl Debug for ManagedActionBuilder
source§impl Default for ManagedActionBuilder
impl Default for ManagedActionBuilder
source§fn default() -> ManagedActionBuilder
fn default() -> ManagedActionBuilder
source§impl PartialEq for ManagedActionBuilder
impl PartialEq for ManagedActionBuilder
source§fn eq(&self, other: &ManagedActionBuilder) -> bool
fn eq(&self, other: &ManagedActionBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ManagedActionBuilder
Auto Trait Implementations§
impl Freeze for ManagedActionBuilder
impl RefUnwindSafe for ManagedActionBuilder
impl Send for ManagedActionBuilder
impl Sync for ManagedActionBuilder
impl Unpin for ManagedActionBuilder
impl UnwindSafe for ManagedActionBuilder
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