Class: Aws::ElasticBeanstalk::Types::DescribeConfigurationSettingsMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::DescribeConfigurationSettingsMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Result message containing all of the configuration settings for a specified solution stack or configuration template.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The application for the environment or configuration template.
-
#environment_name ⇒ String
The name of the environment to describe.
-
#template_name ⇒ String
The name of the configuration template to describe.
Instance Attribute Details
#application_name ⇒ String
The application for the environment or configuration template.
1745 1746 1747 1748 1749 1750 1751 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1745 class DescribeConfigurationSettingsMessage < Struct.new( :application_name, :template_name, :environment_name) SENSITIVE = [] include Aws::Structure end |
#environment_name ⇒ String
The name of the environment to describe.
Condition: You must specify either this or a TemplateName, but not
both. If you specify both, Elastic Beanstalk returns an
InvalidParameterCombination error. If you do not specify either,
Elastic Beanstalk returns MissingRequiredParameter error.
1745 1746 1747 1748 1749 1750 1751 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1745 class DescribeConfigurationSettingsMessage < Struct.new( :application_name, :template_name, :environment_name) SENSITIVE = [] include Aws::Structure end |
#template_name ⇒ String
The name of the configuration template to describe.
Conditional: You must specify either this parameter or an
EnvironmentName, but not both. If you specify both, Elastic
Beanstalk returns an InvalidParameterCombination error. If you do
not specify either, Elastic Beanstalk returns a
MissingRequiredParameter error.
1745 1746 1747 1748 1749 1750 1751 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1745 class DescribeConfigurationSettingsMessage < Struct.new( :application_name, :template_name, :environment_name) SENSITIVE = [] include Aws::Structure end |