#[non_exhaustive]pub struct AwsElasticBeanstalkEnvironmentDetails { /* private fields */ }
Expand description
Contains details about an Elastic Beanstalk environment.
Implementations
sourceimpl 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
) -> Option<&[AwsElasticBeanstalkEnvironmentEnvironmentLink]>
pub fn environment_links(
&self
) -> Option<&[AwsElasticBeanstalkEnvironmentEnvironmentLink]>
Links to other environments in the same group.
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
The name of the environment.
sourcepub fn option_settings(
&self
) -> Option<&[AwsElasticBeanstalkEnvironmentOptionSetting]>
pub fn option_settings(
&self
) -> Option<&[AwsElasticBeanstalkEnvironmentOptionSetting]>
The configuration setting for the environment.
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 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.
sourceimpl AwsElasticBeanstalkEnvironmentDetails
impl AwsElasticBeanstalkEnvironmentDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsElasticBeanstalkEnvironmentDetails
.
Trait Implementations
sourceimpl Clone for AwsElasticBeanstalkEnvironmentDetails
impl Clone for AwsElasticBeanstalkEnvironmentDetails
sourcefn clone(&self) -> AwsElasticBeanstalkEnvironmentDetails
fn clone(&self) -> AwsElasticBeanstalkEnvironmentDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<AwsElasticBeanstalkEnvironmentDetails> for AwsElasticBeanstalkEnvironmentDetails
impl PartialEq<AwsElasticBeanstalkEnvironmentDetails> for AwsElasticBeanstalkEnvironmentDetails
sourcefn eq(&self, other: &AwsElasticBeanstalkEnvironmentDetails) -> bool
fn eq(&self, other: &AwsElasticBeanstalkEnvironmentDetails) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AwsElasticBeanstalkEnvironmentDetails) -> bool
fn ne(&self, other: &AwsElasticBeanstalkEnvironmentDetails) -> bool
This method tests for !=
.
impl StructuralPartialEq for AwsElasticBeanstalkEnvironmentDetails
Auto Trait Implementations
impl RefUnwindSafe for AwsElasticBeanstalkEnvironmentDetails
impl Send for AwsElasticBeanstalkEnvironmentDetails
impl Sync for AwsElasticBeanstalkEnvironmentDetails
impl Unpin for AwsElasticBeanstalkEnvironmentDetails
impl UnwindSafe for AwsElasticBeanstalkEnvironmentDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more