Struct aws_sdk_elasticbeanstalk::operation::compose_environments::builders::ComposeEnvironmentsInputBuilder
source · #[non_exhaustive]pub struct ComposeEnvironmentsInputBuilder { /* private fields */ }
Expand description
A builder for ComposeEnvironmentsInput
.
Implementations§
source§impl ComposeEnvironmentsInputBuilder
impl ComposeEnvironmentsInputBuilder
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 which the specified source bundles belong.
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 which the specified source bundles belong.
sourcepub fn get_application_name(&self) -> &Option<String>
pub fn get_application_name(&self) -> &Option<String>
The name of the application to which the specified source bundles belong.
sourcepub fn group_name(self, input: impl Into<String>) -> Self
pub fn group_name(self, input: impl Into<String>) -> Self
The name of the group to which the target environments belong. Specify a group name only if the environment name defined in each target environment's manifest ends with a + (plus) character. See Environment Manifest (env.yaml) for details.
sourcepub fn set_group_name(self, input: Option<String>) -> Self
pub fn set_group_name(self, input: Option<String>) -> Self
The name of the group to which the target environments belong. Specify a group name only if the environment name defined in each target environment's manifest ends with a + (plus) character. See Environment Manifest (env.yaml) for details.
sourcepub fn get_group_name(&self) -> &Option<String>
pub fn get_group_name(&self) -> &Option<String>
The name of the group to which the target environments belong. Specify a group name only if the environment name defined in each target environment's manifest ends with a + (plus) character. See Environment Manifest (env.yaml) for details.
sourcepub fn version_labels(self, input: impl Into<String>) -> Self
pub fn version_labels(self, input: impl Into<String>) -> Self
Appends an item to version_labels
.
To override the contents of this collection use set_version_labels
.
A list of version labels, specifying one or more application source bundles that belong to the target application. Each source bundle must include an environment manifest that specifies the name of the environment and the name of the solution stack to use, and optionally can specify environment links to create.
sourcepub fn set_version_labels(self, input: Option<Vec<String>>) -> Self
pub fn set_version_labels(self, input: Option<Vec<String>>) -> Self
A list of version labels, specifying one or more application source bundles that belong to the target application. Each source bundle must include an environment manifest that specifies the name of the environment and the name of the solution stack to use, and optionally can specify environment links to create.
sourcepub fn get_version_labels(&self) -> &Option<Vec<String>>
pub fn get_version_labels(&self) -> &Option<Vec<String>>
A list of version labels, specifying one or more application source bundles that belong to the target application. Each source bundle must include an environment manifest that specifies the name of the environment and the name of the solution stack to use, and optionally can specify environment links to create.
sourcepub fn build(self) -> Result<ComposeEnvironmentsInput, BuildError>
pub fn build(self) -> Result<ComposeEnvironmentsInput, BuildError>
Consumes the builder and constructs a ComposeEnvironmentsInput
.
source§impl ComposeEnvironmentsInputBuilder
impl ComposeEnvironmentsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ComposeEnvironmentsOutput, SdkError<ComposeEnvironmentsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ComposeEnvironmentsOutput, SdkError<ComposeEnvironmentsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ComposeEnvironmentsInputBuilder
impl Clone for ComposeEnvironmentsInputBuilder
source§fn clone(&self) -> ComposeEnvironmentsInputBuilder
fn clone(&self) -> ComposeEnvironmentsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ComposeEnvironmentsInputBuilder
impl Default for ComposeEnvironmentsInputBuilder
source§fn default() -> ComposeEnvironmentsInputBuilder
fn default() -> ComposeEnvironmentsInputBuilder
source§impl PartialEq<ComposeEnvironmentsInputBuilder> for ComposeEnvironmentsInputBuilder
impl PartialEq<ComposeEnvironmentsInputBuilder> for ComposeEnvironmentsInputBuilder
source§fn eq(&self, other: &ComposeEnvironmentsInputBuilder) -> bool
fn eq(&self, other: &ComposeEnvironmentsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.