Struct aws_sdk_elasticbeanstalk::operation::retrieve_environment_info::builders::RetrieveEnvironmentInfoInputBuilder
source · #[non_exhaustive]pub struct RetrieveEnvironmentInfoInputBuilder { /* private fields */ }
Expand description
A builder for RetrieveEnvironmentInfoInput
.
Implementations§
source§impl RetrieveEnvironmentInfoInputBuilder
impl RetrieveEnvironmentInfoInputBuilder
sourcepub fn environment_id(self, input: impl Into<String>) -> Self
pub fn environment_id(self, input: impl Into<String>) -> Self
The ID of the data's environment.
If no such environment is found, 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.
sourcepub fn set_environment_id(self, input: Option<String>) -> Self
pub fn set_environment_id(self, input: Option<String>) -> Self
The ID of the data's environment.
If no such environment is found, 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.
sourcepub fn get_environment_id(&self) -> &Option<String>
pub fn get_environment_id(&self) -> &Option<String>
The ID of the data's environment.
If no such environment is found, 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.
sourcepub fn environment_name(self, input: impl Into<String>) -> Self
pub fn environment_name(self, input: impl Into<String>) -> Self
The name of the data's environment.
If no such environment is found, 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.
sourcepub fn set_environment_name(self, input: Option<String>) -> Self
pub fn set_environment_name(self, input: Option<String>) -> Self
The name of the data's environment.
If no such environment is found, 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.
sourcepub fn get_environment_name(&self) -> &Option<String>
pub fn get_environment_name(&self) -> &Option<String>
The name of the data's environment.
If no such environment is found, 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.
sourcepub fn info_type(self, input: EnvironmentInfoType) -> Self
pub fn info_type(self, input: EnvironmentInfoType) -> Self
The type of information to retrieve.
sourcepub fn set_info_type(self, input: Option<EnvironmentInfoType>) -> Self
pub fn set_info_type(self, input: Option<EnvironmentInfoType>) -> Self
The type of information to retrieve.
sourcepub fn get_info_type(&self) -> &Option<EnvironmentInfoType>
pub fn get_info_type(&self) -> &Option<EnvironmentInfoType>
The type of information to retrieve.
sourcepub fn build(self) -> Result<RetrieveEnvironmentInfoInput, BuildError>
pub fn build(self) -> Result<RetrieveEnvironmentInfoInput, BuildError>
Consumes the builder and constructs a RetrieveEnvironmentInfoInput
.
source§impl RetrieveEnvironmentInfoInputBuilder
impl RetrieveEnvironmentInfoInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<RetrieveEnvironmentInfoOutput, SdkError<RetrieveEnvironmentInfoError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<RetrieveEnvironmentInfoOutput, SdkError<RetrieveEnvironmentInfoError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for RetrieveEnvironmentInfoInputBuilder
impl Clone for RetrieveEnvironmentInfoInputBuilder
source§fn clone(&self) -> RetrieveEnvironmentInfoInputBuilder
fn clone(&self) -> RetrieveEnvironmentInfoInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for RetrieveEnvironmentInfoInputBuilder
impl Default for RetrieveEnvironmentInfoInputBuilder
source§fn default() -> RetrieveEnvironmentInfoInputBuilder
fn default() -> RetrieveEnvironmentInfoInputBuilder
source§impl PartialEq<RetrieveEnvironmentInfoInputBuilder> for RetrieveEnvironmentInfoInputBuilder
impl PartialEq<RetrieveEnvironmentInfoInputBuilder> for RetrieveEnvironmentInfoInputBuilder
source§fn eq(&self, other: &RetrieveEnvironmentInfoInputBuilder) -> bool
fn eq(&self, other: &RetrieveEnvironmentInfoInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.