pub struct ApplyEnvironmentManagedActionRequest {
pub action_id: String,
pub environment_id: Option<String>,
pub environment_name: Option<String>,
}
Expand description
Request to execute a scheduled managed action immediately.
Fields§
§action_id: String
The action ID of the scheduled managed action to execute.
environment_id: Option<String>
The environment ID of the target environment.
environment_name: Option<String>
The name of the target environment.
Trait Implementations§
Source§impl Clone for ApplyEnvironmentManagedActionRequest
impl Clone for ApplyEnvironmentManagedActionRequest
Source§fn clone(&self) -> ApplyEnvironmentManagedActionRequest
fn clone(&self) -> ApplyEnvironmentManagedActionRequest
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 Default for ApplyEnvironmentManagedActionRequest
impl Default for ApplyEnvironmentManagedActionRequest
Source§fn default() -> ApplyEnvironmentManagedActionRequest
fn default() -> ApplyEnvironmentManagedActionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApplyEnvironmentManagedActionRequest
impl PartialEq for ApplyEnvironmentManagedActionRequest
Source§fn eq(&self, other: &ApplyEnvironmentManagedActionRequest) -> bool
fn eq(&self, other: &ApplyEnvironmentManagedActionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ApplyEnvironmentManagedActionRequest
Auto Trait Implementations§
impl Freeze for ApplyEnvironmentManagedActionRequest
impl RefUnwindSafe for ApplyEnvironmentManagedActionRequest
impl Send for ApplyEnvironmentManagedActionRequest
impl Sync for ApplyEnvironmentManagedActionRequest
impl Unpin for ApplyEnvironmentManagedActionRequest
impl UnwindSafe for ApplyEnvironmentManagedActionRequest
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