Class: Aws::AppRegistry::Types::UpdateApplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRegistry::Types::UpdateApplicationRequest
- Defined in:
- gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb
Overview
Note:
When making an API call, you may pass UpdateApplicationRequest data as a hash:
{
application: "ApplicationSpecifier", # required
name: "Name",
description: "Description",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application ⇒ String
The name or ID of the application that will be updated.
-
#description ⇒ String
The new description of the application.
-
#name ⇒ String
Deprecated: The new name of the application.
Instance Attribute Details
#application ⇒ String
The name or ID of the application that will be updated.
1378 1379 1380 1381 1382 1383 1384 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 1378 class UpdateApplicationRequest < Struct.new( :application, :name, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The new description of the application.
1378 1379 1380 1381 1382 1383 1384 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 1378 class UpdateApplicationRequest < Struct.new( :application, :name, :description) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Deprecated: The new name of the application. The name must be unique in the region in which you are updating the application. Please do not use this field as we have stopped supporting name updates.
1378 1379 1380 1381 1382 1383 1384 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 1378 class UpdateApplicationRequest < Struct.new( :application, :name, :description) SENSITIVE = [] include Aws::Structure end |