Class: Aws::ElasticBeanstalk::Types::EnvironmentTier
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::EnvironmentTier
- Defined in:
- gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Note:
When making an API call, you may pass EnvironmentTier data as a hash:
{
name: "String",
type: "String",
version: "String",
}
Describes the properties of an environment tier
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of this environment tier.
-
#type ⇒ String
The type of this environment tier.
-
#version ⇒ String
The version of this environment tier.
Instance Attribute Details
#name ⇒ String
The name of this environment tier.
Valid values:
For Web server tier –
WebServer
For Worker tier –
Worker
2967 2968 2969 2970 2971 2972 2973 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2967 class EnvironmentTier < Struct.new( :name, :type, :version) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of this environment tier.
Valid values:
For Web server tier –
Standard
For Worker tier –
SQS/HTTP
2967 2968 2969 2970 2971 2972 2973 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2967 class EnvironmentTier < Struct.new( :name, :type, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The version of this environment tier. When you don't set a value to it, Elastic Beanstalk uses the latest compatible worker tier version.
2967 2968 2969 2970 2971 2972 2973 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2967 class EnvironmentTier < Struct.new( :name, :type, :version) SENSITIVE = [] include Aws::Structure end |