pub struct RequestEnvironmentInfoMessage {
pub environment_id: Option<String>,
pub environment_name: Option<String>,
pub info_type: String,
}
Expand description
Request to retrieve logs from an environment and store them in your Elastic Beanstalk storage bucket.
Fields§
§environment_id: Option<String>
The ID of the environment of the requested data.
If no such environment is found, RequestEnvironmentInfo
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 environment of the requested data.
If no such environment is found, RequestEnvironmentInfo
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 request.
Trait Implementations§
Source§impl Clone for RequestEnvironmentInfoMessage
impl Clone for RequestEnvironmentInfoMessage
Source§fn clone(&self) -> RequestEnvironmentInfoMessage
fn clone(&self) -> RequestEnvironmentInfoMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for RequestEnvironmentInfoMessage
impl Default for RequestEnvironmentInfoMessage
Source§fn default() -> RequestEnvironmentInfoMessage
fn default() -> RequestEnvironmentInfoMessage
Source§impl PartialEq for RequestEnvironmentInfoMessage
impl PartialEq for RequestEnvironmentInfoMessage
Source§fn eq(&self, other: &RequestEnvironmentInfoMessage) -> bool
fn eq(&self, other: &RequestEnvironmentInfoMessage) -> bool
self
and other
values to be equal, and is used by ==
.