Class: Aws::CodeDeploy::Types::UpdateApplicationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::UpdateApplicationInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass UpdateApplicationInput data as a hash:
{
application_name: "ApplicationName",
new_application_name: "ApplicationName",
}
Represents the input of an ‘UpdateApplication` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The current name of the application you want to change.
-
#new_application_name ⇒ String
The new name to give the application.
Instance Attribute Details
#application_name ⇒ String
The current name of the application you want to change.
5761 5762 5763 5764 5765 5766 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5761 class UpdateApplicationInput < Struct.new( :application_name, :new_application_name) SENSITIVE = [] include Aws::Structure end |
#new_application_name ⇒ String
The new name to give the application.
5761 5762 5763 5764 5765 5766 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5761 class UpdateApplicationInput < Struct.new( :application_name, :new_application_name) SENSITIVE = [] include Aws::Structure end |