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.
4284 4285 4286 4287 4288 4289 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4284 class UpdateApplicationMessage < Struct.new( :application_name, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A new description for the application.
Default: If not specified, AWS Elastic Beanstalk does not update the description.
4284 4285 4286 4287 4288 4289 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 4284 class UpdateApplicationMessage < Struct.new( :application_name, :description) SENSITIVE = [] include Aws::Structure end |