pub struct RetrieveEnvironmentInfoMessage {
pub environment_id: Option<String>,
pub environment_name: Option<String>,
pub info_type: String,
}
Expand description
Request to download logs retrieved with RequestEnvironmentInfo.
Fields§
§environment_id: Option<String>
The ID of the data's environment.
If no such environment is found, returns an InvalidParameterValue
error.
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 data's environment.
If no such environment is found, returns an InvalidParameterValue
error.
Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
error.
info_type: String
The type of information to retrieve.
Trait Implementations§
Source§impl Clone for RetrieveEnvironmentInfoMessage
impl Clone for RetrieveEnvironmentInfoMessage
Source§fn clone(&self) -> RetrieveEnvironmentInfoMessage
fn clone(&self) -> RetrieveEnvironmentInfoMessage
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 RetrieveEnvironmentInfoMessage
impl Default for RetrieveEnvironmentInfoMessage
Source§fn default() -> RetrieveEnvironmentInfoMessage
fn default() -> RetrieveEnvironmentInfoMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for RetrieveEnvironmentInfoMessage
impl PartialEq for RetrieveEnvironmentInfoMessage
Source§fn eq(&self, other: &RetrieveEnvironmentInfoMessage) -> bool
fn eq(&self, other: &RetrieveEnvironmentInfoMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RetrieveEnvironmentInfoMessage
Auto Trait Implementations§
impl Freeze for RetrieveEnvironmentInfoMessage
impl RefUnwindSafe for RetrieveEnvironmentInfoMessage
impl Send for RetrieveEnvironmentInfoMessage
impl Sync for RetrieveEnvironmentInfoMessage
impl Unpin for RetrieveEnvironmentInfoMessage
impl UnwindSafe for RetrieveEnvironmentInfoMessage
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