Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Create or update a group of environments that each run a separate
component of a single application. Takes a list of version labels that
specify application source bundles for each of the environments to
create or update. The name of each environment and other required
information must be included in the source bundles in an environment
manifest named env.yaml
. See
Compose Environments
for details.
Synopsis
- data ComposeEnvironments = ComposeEnvironments' {
- versionLabels :: Maybe [Text]
- applicationName :: Maybe Text
- groupName :: Maybe Text
- newComposeEnvironments :: ComposeEnvironments
- composeEnvironments_versionLabels :: Lens' ComposeEnvironments (Maybe [Text])
- composeEnvironments_applicationName :: Lens' ComposeEnvironments (Maybe Text)
- composeEnvironments_groupName :: Lens' ComposeEnvironments (Maybe Text)
- data EnvironmentDescriptionsMessage = EnvironmentDescriptionsMessage' {}
- newEnvironmentDescriptionsMessage :: EnvironmentDescriptionsMessage
- environmentDescriptionsMessage_nextToken :: Lens' EnvironmentDescriptionsMessage (Maybe Text)
- environmentDescriptionsMessage_environments :: Lens' EnvironmentDescriptionsMessage (Maybe [EnvironmentDescription])
Creating a Request
data ComposeEnvironments Source #
Request to create or update a group of environments.
See: newComposeEnvironments
smart constructor.
ComposeEnvironments' | |
|
Instances
newComposeEnvironments :: ComposeEnvironments Source #
Create a value of ComposeEnvironments
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:versionLabels:ComposeEnvironments'
, composeEnvironments_versionLabels
- 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.
$sel:applicationName:ComposeEnvironments'
, composeEnvironments_applicationName
- The name of the application to which the specified source bundles
belong.
$sel:groupName:ComposeEnvironments'
, composeEnvironments_groupName
- 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.
Request Lenses
composeEnvironments_versionLabels :: Lens' ComposeEnvironments (Maybe [Text]) Source #
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.
composeEnvironments_applicationName :: Lens' ComposeEnvironments (Maybe Text) Source #
The name of the application to which the specified source bundles belong.
composeEnvironments_groupName :: Lens' ComposeEnvironments (Maybe Text) Source #
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.
Destructuring the Response
data EnvironmentDescriptionsMessage Source #
Result message containing a list of environment descriptions.
See: newEnvironmentDescriptionsMessage
smart constructor.
EnvironmentDescriptionsMessage' | |
|
Instances
Eq EnvironmentDescriptionsMessage Source # | |
Read EnvironmentDescriptionsMessage Source # | |
Show EnvironmentDescriptionsMessage Source # | |
Generic EnvironmentDescriptionsMessage Source # | |
NFData EnvironmentDescriptionsMessage Source # | |
Hashable EnvironmentDescriptionsMessage Source # | |
FromXML EnvironmentDescriptionsMessage Source # | |
type Rep EnvironmentDescriptionsMessage Source # | |
Defined in Amazonka.ElasticBeanstalk.Types.EnvironmentDescriptionsMessage type Rep EnvironmentDescriptionsMessage = D1 ('MetaData "EnvironmentDescriptionsMessage" "Amazonka.ElasticBeanstalk.Types.EnvironmentDescriptionsMessage" "libZSservicesZSamazonka-elasticbeanstalkZSamazonka-elasticbeanstalk" 'False) (C1 ('MetaCons "EnvironmentDescriptionsMessage'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "environments") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [EnvironmentDescription])))) |
newEnvironmentDescriptionsMessage :: EnvironmentDescriptionsMessage Source #
Create a value of EnvironmentDescriptionsMessage
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:nextToken:EnvironmentDescriptionsMessage'
, environmentDescriptionsMessage_nextToken
- In a paginated request, the token that you can pass in a subsequent
request to get the next response page.
$sel:environments:EnvironmentDescriptionsMessage'
, environmentDescriptionsMessage_environments
- Returns an EnvironmentDescription list.
Response Lenses
environmentDescriptionsMessage_nextToken :: Lens' EnvironmentDescriptionsMessage (Maybe Text) Source #
In a paginated request, the token that you can pass in a subsequent request to get the next response page.
environmentDescriptionsMessage_environments :: Lens' EnvironmentDescriptionsMessage (Maybe [EnvironmentDescription]) Source #
Returns an EnvironmentDescription list.