#[non_exhaustive]pub struct ComposeEnvironmentsInput {
pub application_name: Option<String>,
pub group_name: Option<String>,
pub version_labels: Option<Vec<String>>,
}
Expand description
Request to create or update a group of environments.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_name: Option<String>
The name of the application to which the specified source bundles belong.
group_name: 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.
version_labels: 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ComposeEnvironments, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ComposeEnvironments, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ComposeEnvironments
>
Creates a new builder-style object to manufacture ComposeEnvironmentsInput
The name of the application to which the specified source bundles belong.
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.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ComposeEnvironmentsInput
impl Send for ComposeEnvironmentsInput
impl Sync for ComposeEnvironmentsInput
impl Unpin for ComposeEnvironmentsInput
impl UnwindSafe for ComposeEnvironmentsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more