#[non_exhaustive]pub struct AwsElasticBeanstalkEnvironmentDetails {Show 16 fields
pub application_name: Option<String>,
pub cname: Option<String>,
pub date_created: Option<String>,
pub date_updated: Option<String>,
pub description: Option<String>,
pub endpoint_url: Option<String>,
pub environment_arn: Option<String>,
pub environment_id: Option<String>,
pub environment_links: Option<Vec<AwsElasticBeanstalkEnvironmentEnvironmentLink>>,
pub environment_name: Option<String>,
pub option_settings: Option<Vec<AwsElasticBeanstalkEnvironmentOptionSetting>>,
pub platform_arn: Option<String>,
pub solution_stack_name: Option<String>,
pub status: Option<String>,
pub tier: Option<AwsElasticBeanstalkEnvironmentTier>,
pub version_label: Option<String>,
}
Expand description
Contains details about an Elastic Beanstalk environment.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_name: Option<String>
The name of the application that is associated with the environment.
cname: Option<String>
The URL to the CNAME for this environment.
date_created: Option<String>
The creation date for this environment.
date_updated: Option<String>
The date when this environment was last modified.
description: Option<String>
A description of the environment.
endpoint_url: Option<String>
For load-balanced, autoscaling environments, the URL to the load balancer. For single-instance environments, the IP address of the instance.
environment_arn: Option<String>
The ARN of the environment.
environment_id: Option<String>
The identifier of the environment.
environment_links: Option<Vec<AwsElasticBeanstalkEnvironmentEnvironmentLink>>
Links to other environments in the same group.
environment_name: Option<String>
The name of the environment.
option_settings: Option<Vec<AwsElasticBeanstalkEnvironmentOptionSetting>>
The configuration setting for the environment.
platform_arn: Option<String>
The ARN of the platform version for the environment.
solution_stack_name: Option<String>
The name of the solution stack that is deployed with the environment.
status: Option<String>
The current operational status of the environment. Valid values are as follows:
-
Aborting
-
Launching
-
LinkingFrom
-
LinkingTo
-
Ready
-
Terminated
-
Terminating
-
Updating
tier: Option<AwsElasticBeanstalkEnvironmentTier>
The tier of the environment.
version_label: Option<String>
The application version of the environment.
Implementations§
source§impl AwsElasticBeanstalkEnvironmentDetails
impl AwsElasticBeanstalkEnvironmentDetails
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of the application that is associated with the environment.
sourcepub fn date_created(&self) -> Option<&str>
pub fn date_created(&self) -> Option<&str>
The creation date for this environment.
sourcepub fn date_updated(&self) -> Option<&str>
pub fn date_updated(&self) -> Option<&str>
The date when this environment was last modified.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the environment.
sourcepub fn endpoint_url(&self) -> Option<&str>
pub fn endpoint_url(&self) -> Option<&str>
For load-balanced, autoscaling environments, the URL to the load balancer. For single-instance environments, the IP address of the instance.
sourcepub fn environment_arn(&self) -> Option<&str>
pub fn environment_arn(&self) -> Option<&str>
The ARN of the environment.
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The identifier of the environment.
sourcepub fn environment_links(
&self
) -> &[AwsElasticBeanstalkEnvironmentEnvironmentLink]
pub fn environment_links( &self ) -> &[AwsElasticBeanstalkEnvironmentEnvironmentLink]
Links to other environments in the same group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .environment_links.is_none()
.
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
The name of the environment.
sourcepub fn option_settings(&self) -> &[AwsElasticBeanstalkEnvironmentOptionSetting]
pub fn option_settings(&self) -> &[AwsElasticBeanstalkEnvironmentOptionSetting]
The configuration setting for the environment.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .option_settings.is_none()
.
sourcepub fn platform_arn(&self) -> Option<&str>
pub fn platform_arn(&self) -> Option<&str>
The ARN of the platform version for the environment.
sourcepub fn solution_stack_name(&self) -> Option<&str>
pub fn solution_stack_name(&self) -> Option<&str>
The name of the solution stack that is deployed with the environment.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The current operational status of the environment. Valid values are as follows:
-
Aborting
-
Launching
-
LinkingFrom
-
LinkingTo
-
Ready
-
Terminated
-
Terminating
-
Updating
sourcepub fn tier(&self) -> Option<&AwsElasticBeanstalkEnvironmentTier>
pub fn tier(&self) -> Option<&AwsElasticBeanstalkEnvironmentTier>
The tier of the environment.
sourcepub fn version_label(&self) -> Option<&str>
pub fn version_label(&self) -> Option<&str>
The application version of the environment.
source§impl AwsElasticBeanstalkEnvironmentDetails
impl AwsElasticBeanstalkEnvironmentDetails
sourcepub fn builder() -> AwsElasticBeanstalkEnvironmentDetailsBuilder
pub fn builder() -> AwsElasticBeanstalkEnvironmentDetailsBuilder
Creates a new builder-style object to manufacture AwsElasticBeanstalkEnvironmentDetails
.
Trait Implementations§
source§impl Clone for AwsElasticBeanstalkEnvironmentDetails
impl Clone for AwsElasticBeanstalkEnvironmentDetails
source§fn clone(&self) -> AwsElasticBeanstalkEnvironmentDetails
fn clone(&self) -> AwsElasticBeanstalkEnvironmentDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AwsElasticBeanstalkEnvironmentDetails
impl PartialEq for AwsElasticBeanstalkEnvironmentDetails
source§fn eq(&self, other: &AwsElasticBeanstalkEnvironmentDetails) -> bool
fn eq(&self, other: &AwsElasticBeanstalkEnvironmentDetails) -> bool
self
and other
values to be equal, and is used
by ==
.