pub struct RestartAppServerMessage {
pub environment_id: Option<String>,
pub environment_name: Option<String>,
}
Expand description
Fields§
§environment_id: Option<String>
The ID of the environment to restart the server for.
Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
error.
environment_name: Option<String>
The name of the environment to restart the server for.
Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
error.
Trait Implementations§
Source§impl Clone for RestartAppServerMessage
impl Clone for RestartAppServerMessage
Source§fn clone(&self) -> RestartAppServerMessage
fn clone(&self) -> RestartAppServerMessage
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 Debug for RestartAppServerMessage
impl Debug for RestartAppServerMessage
Source§impl Default for RestartAppServerMessage
impl Default for RestartAppServerMessage
Source§fn default() -> RestartAppServerMessage
fn default() -> RestartAppServerMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for RestartAppServerMessage
impl PartialEq for RestartAppServerMessage
impl StructuralPartialEq for RestartAppServerMessage
Auto Trait Implementations§
impl Freeze for RestartAppServerMessage
impl RefUnwindSafe for RestartAppServerMessage
impl Send for RestartAppServerMessage
impl Sync for RestartAppServerMessage
impl Unpin for RestartAppServerMessage
impl UnwindSafe for RestartAppServerMessage
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