#[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<ManagedActionBuilder> for ManagedActionBuilder
impl PartialEq<ManagedActionBuilder> 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 ==
.