Class: Aws::ElasticBeanstalk::Types::ConfigurationOptionSetting
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::ConfigurationOptionSetting
- Defined in:
- gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb
Overview
A specification identifying an individual configuration option along with its current value. For a list of possible namespaces and option values, see Option Values in the AWS Elastic Beanstalk Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#namespace ⇒ String
A unique namespace that identifies the option's associated AWS resource.
-
#option_name ⇒ String
The name of the configuration option.
-
#resource_name ⇒ String
A unique resource name for the option setting.
-
#value ⇒ String
The current value for the configuration option.
Instance Attribute Details
#namespace ⇒ String
A unique namespace that identifies the option's associated AWS resource.
782 783 784 785 786 787 788 789 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 782 class ConfigurationOptionSetting < Struct.new( :resource_name, :namespace, :option_name, :value) SENSITIVE = [] include Aws::Structure end |
#option_name ⇒ String
The name of the configuration option.
782 783 784 785 786 787 788 789 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 782 class ConfigurationOptionSetting < Struct.new( :resource_name, :namespace, :option_name, :value) SENSITIVE = [] include Aws::Structure end |
#resource_name ⇒ String
A unique resource name for the option setting. Use it for a time–based scaling configuration option.
782 783 784 785 786 787 788 789 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 782 class ConfigurationOptionSetting < Struct.new( :resource_name, :namespace, :option_name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The current value for the configuration option.
782 783 784 785 786 787 788 789 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 782 class ConfigurationOptionSetting < Struct.new( :resource_name, :namespace, :option_name, :value) SENSITIVE = [] include Aws::Structure end |