#[non_exhaustive]pub struct DescribeEnvironmentsInput { /* private fields */ }
Expand description
Request to describe one or more environments.
Implementations§
source§impl DescribeEnvironmentsInput
impl DescribeEnvironmentsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeEnvironments, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeEnvironments, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DescribeEnvironments
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeEnvironmentsInput
.
source§impl DescribeEnvironmentsInput
impl DescribeEnvironmentsInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application.
sourcepub fn version_label(&self) -> Option<&str>
pub fn version_label(&self) -> Option<&str>
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application version.
sourcepub fn environment_ids(&self) -> Option<&[String]>
pub fn environment_ids(&self) -> Option<&[String]>
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified IDs.
sourcepub fn environment_names(&self) -> Option<&[String]>
pub fn environment_names(&self) -> Option<&[String]>
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified names.
sourcepub fn include_deleted(&self) -> Option<bool>
pub fn include_deleted(&self) -> Option<bool>
Indicates whether to include deleted environments:
true
: Environments that have been deleted after IncludedDeletedBackTo
are displayed.
false
: Do not include deleted environments.
sourcepub fn included_deleted_back_to(&self) -> Option<&DateTime>
pub fn included_deleted_back_to(&self) -> Option<&DateTime>
If specified when IncludeDeleted
is set to true
, then environments deleted after this date are displayed.
sourcepub fn max_records(&self) -> Option<i32>
pub fn max_records(&self) -> Option<i32>
For a paginated request. Specify a maximum number of environments to include in each response.
If no MaxRecords
is specified, all available environments are retrieved in a single response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request.
If no NextToken
is specified, the first page is retrieved.
Trait Implementations§
source§impl Clone for DescribeEnvironmentsInput
impl Clone for DescribeEnvironmentsInput
source§fn clone(&self) -> DescribeEnvironmentsInput
fn clone(&self) -> DescribeEnvironmentsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeEnvironmentsInput
impl Debug for DescribeEnvironmentsInput
source§impl PartialEq<DescribeEnvironmentsInput> for DescribeEnvironmentsInput
impl PartialEq<DescribeEnvironmentsInput> for DescribeEnvironmentsInput
source§fn eq(&self, other: &DescribeEnvironmentsInput) -> bool
fn eq(&self, other: &DescribeEnvironmentsInput) -> bool
self
and other
values to be equal, and is used
by ==
.