Class: Aws::ElasticBeanstalk::Types::PlatformBranchSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::PlatformBranchSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Summary information about a platform branch.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#branch_name ⇒ String
The name of the platform branch.
-
#branch_order ⇒ Integer
An ordinal number that designates the order in which platform branches have been added to a platform.
-
#lifecycle_state ⇒ String
The support life cycle state of the platform branch.
-
#platform_name ⇒ String
The name of the platform to which this platform branch belongs.
-
#supported_tier_list ⇒ Array<String>
The environment tiers that platform versions in this branch support.
Instance Attribute Details
#branch_name ⇒ String
The name of the platform branch.
3232 3233 3234 3235 3236 3237 3238 3239 3240 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3232 class PlatformBranchSummary < Struct.new( :platform_name, :branch_name, :lifecycle_state, :branch_order, :supported_tier_list) SENSITIVE = [] include Aws::Structure end |
#branch_order ⇒ Integer
An ordinal number that designates the order in which platform branches have been added to a platform. This can be helpful, for example, if your code calls the ‘ListPlatformBranches` action and then displays a list of platform branches.
A larger ‘BranchOrder` value designates a newer platform branch within the platform.
3232 3233 3234 3235 3236 3237 3238 3239 3240 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3232 class PlatformBranchSummary < Struct.new( :platform_name, :branch_name, :lifecycle_state, :branch_order, :supported_tier_list) SENSITIVE = [] include Aws::Structure end |
#lifecycle_state ⇒ String
The support life cycle state of the platform branch.
Possible values: ‘beta` | `supported` | `deprecated` | `retired`
3232 3233 3234 3235 3236 3237 3238 3239 3240 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3232 class PlatformBranchSummary < Struct.new( :platform_name, :branch_name, :lifecycle_state, :branch_order, :supported_tier_list) SENSITIVE = [] include Aws::Structure end |
#platform_name ⇒ String
The name of the platform to which this platform branch belongs.
3232 3233 3234 3235 3236 3237 3238 3239 3240 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3232 class PlatformBranchSummary < Struct.new( :platform_name, :branch_name, :lifecycle_state, :branch_order, :supported_tier_list) SENSITIVE = [] include Aws::Structure end |
#supported_tier_list ⇒ Array<String>
The environment tiers that platform versions in this branch support.
Possible values: ‘WebServer/Standard` | `Worker/SQS/HTTP`
3232 3233 3234 3235 3236 3237 3238 3239 3240 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3232 class PlatformBranchSummary < Struct.new( :platform_name, :branch_name, :lifecycle_state, :branch_order, :supported_tier_list) SENSITIVE = [] include Aws::Structure end |