Class: Aws::ElasticBeanstalk::Types::ComposeEnvironmentsMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::ComposeEnvironmentsMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
When making an API call, you may pass ComposeEnvironmentsMessage data as a hash:
{
application_name: "ApplicationName",
group_name: "GroupName",
version_labels: ["VersionLabel"],
}
Request to create or update a group of environments.
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of the application to which the specified source bundles belong.
-
#group_name ⇒ String
The name of the group to which the target environments belong.
-
#version_labels ⇒ Array<String>
A list of version labels, specifying one or more application source bundles that belong to the target application.
Instance Attribute Details
#application_name ⇒ String
The name of the application to which the specified source bundles belong.
611 612 613 614 615 616 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 611 class ComposeEnvironmentsMessage < Struct.new( :application_name, :group_name, :version_labels) include Aws::Structure end |
#group_name ⇒ 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)][1
-
for details.
[1]: docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
611 612 613 614 615 616 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 611 class ComposeEnvironmentsMessage < Struct.new( :application_name, :group_name, :version_labels) include Aws::Structure end |
#version_labels ⇒ Array<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.
611 612 613 614 615 616 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 611 class ComposeEnvironmentsMessage < Struct.new( :application_name, :group_name, :version_labels) include Aws::Structure end |