pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateApplicationInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn application_name(self, input: impl Into<String>) -> Self
pub fn application_name(self, input: impl Into<String>) -> Self
The name of the application to update. If no such application is found, UpdateApplication
returns an InvalidParameterValue
error.
sourcepub fn set_application_name(self, input: Option<String>) -> Self
pub fn set_application_name(self, input: Option<String>) -> Self
The name of the application to update. If no such application is found, UpdateApplication
returns an InvalidParameterValue
error.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A new description for the application.
Default: If not specified, AWS Elastic Beanstalk does not update the description.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A new description for the application.
Default: If not specified, AWS Elastic Beanstalk does not update the description.
sourcepub fn build(self) -> Result<UpdateApplicationInput, BuildError>
pub fn build(self) -> Result<UpdateApplicationInput, BuildError>
Consumes the builder and constructs a UpdateApplicationInput
.