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.
1687 1688 1689 1690 1691 1692 1693 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1687 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, AWS Elastic Beanstalk returns an ‘InvalidParameterCombination` error. If you do not specify either, AWS Elastic Beanstalk returns `MissingRequiredParameter` error.
1687 1688 1689 1690 1691 1692 1693 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1687 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, AWS Elastic Beanstalk returns an ‘InvalidParameterCombination` error. If you do not specify either, AWS Elastic Beanstalk returns a `MissingRequiredParameter` error.
1687 1688 1689 1690 1691 1692 1693 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1687 class DescribeConfigurationSettingsMessage < Struct.new( :application_name, :template_name, :environment_name) SENSITIVE = [] include Aws::Structure end |