Class: Aws::ElasticBeanstalk::Types::DescribeConfigurationSettingsMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::DescribeConfigurationSettingsMessage
- Defined in:
- gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb
Overview
When making an API call, you may pass DescribeConfigurationSettingsMessage data as a hash:
{
application_name: "ApplicationName", # required
template_name: "ConfigurationTemplateName",
environment_name: "EnvironmentName",
}
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.
2029 2030 2031 2032 2033 2034 2035 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2029 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.
2029 2030 2031 2032 2033 2034 2035 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2029 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.
2029 2030 2031 2032 2033 2034 2035 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2029 class DescribeConfigurationSettingsMessage < Struct.new( :application_name, :template_name, :environment_name) SENSITIVE = [] include Aws::Structure end |