Class: Aws::ElasticBeanstalk::Types::UpdateApplicationMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::UpdateApplicationMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Request to update an application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of the application to update.
-
#description ⇒ String
A new description for the application.
Instance Attribute Details
#application_name ⇒ String
The name of the application to update. If no such application is
found, UpdateApplication returns an InvalidParameterValue error.
4505 4506 4507 4508 4509 4510 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4505 class UpdateApplicationMessage < Struct.new( :application_name, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A new description for the application.
Default: If not specified, Elastic Beanstalk does not update the description.
4505 4506 4507 4508 4509 4510 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4505 class UpdateApplicationMessage < Struct.new( :application_name, :description) SENSITIVE = [] include Aws::Structure end |