Class: Aws::ElasticBeanstalk::Types::UpdateApplicationVersionMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::UpdateApplicationVersionMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of the application associated with this version.
-
#description ⇒ String
A new description for this version.
-
#version_label ⇒ String
The name of the version to update.
Instance Attribute Details
#application_name ⇒ String
The name of the application associated with this version.
If no application is found with this name, ‘UpdateApplication` returns an `InvalidParameterValue` error.
4331 4332 4333 4334 4335 4336 4337 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4331 class UpdateApplicationVersionMessage < Struct.new( :application_name, :version_label, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A new description for this version.
4331 4332 4333 4334 4335 4336 4337 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4331 class UpdateApplicationVersionMessage < Struct.new( :application_name, :version_label, :description) SENSITIVE = [] include Aws::Structure end |
#version_label ⇒ String
The name of the version to update.
If no application version is found with this label, ‘UpdateApplication` returns an `InvalidParameterValue` error.
4331 4332 4333 4334 4335 4336 4337 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4331 class UpdateApplicationVersionMessage < Struct.new( :application_name, :version_label, :description) SENSITIVE = [] include Aws::Structure end |