Struct xray_lite::ElasticBeanstalk
source · pub struct ElasticBeanstalk {
pub environment_name: Option<String>,
pub version_label: Option<String>,
pub deployment_id: Option<usize>,
}
Expand description
Information about an Elastic Beanstalk environment. You can find this information in a file named /var/elasticbeanstalk/xray/environment.conf on the latest Elastic Beanstalk platforms.
Fields§
§environment_name: Option<String>
The name of the environment.
version_label: Option<String>
The name of the application version that is currently deployed to the instance that served the request.
deployment_id: Option<usize>
number indicating the ID of the last successful deployment to the instance that served the request.
Trait Implementations§
source§impl Debug for ElasticBeanstalk
impl Debug for ElasticBeanstalk
source§impl Default for ElasticBeanstalk
impl Default for ElasticBeanstalk
source§fn default() -> ElasticBeanstalk
fn default() -> ElasticBeanstalk
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ElasticBeanstalk
impl Send for ElasticBeanstalk
impl Sync for ElasticBeanstalk
impl Unpin for ElasticBeanstalk
impl UnwindSafe for ElasticBeanstalk
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