#[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§
source§impl ComposeEnvironmentsInput
impl ComposeEnvironmentsInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of the application to which the specified source bundles belong.
sourcepub fn group_name(&self) -> Option<&str>
pub fn group_name(&self) -> Option<&str>
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) -> Option<&[String]>
pub fn version_labels(&self) -> Option<&[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.
source§impl ComposeEnvironmentsInput
impl ComposeEnvironmentsInput
sourcepub fn builder() -> ComposeEnvironmentsInputBuilder
pub fn builder() -> ComposeEnvironmentsInputBuilder
Creates a new builder-style object to manufacture ComposeEnvironmentsInput
.
Trait Implementations§
source§impl Clone for ComposeEnvironmentsInput
impl Clone for ComposeEnvironmentsInput
source§fn clone(&self) -> ComposeEnvironmentsInput
fn clone(&self) -> ComposeEnvironmentsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ComposeEnvironmentsInput
impl Debug for ComposeEnvironmentsInput
source§impl PartialEq<ComposeEnvironmentsInput> for ComposeEnvironmentsInput
impl PartialEq<ComposeEnvironmentsInput> for ComposeEnvironmentsInput
source§fn eq(&self, other: &ComposeEnvironmentsInput) -> bool
fn eq(&self, other: &ComposeEnvironmentsInput) -> bool
self
and other
values to be equal, and is used
by ==
.