Class: Aws::CodeDeploy::Types::DeleteApplicationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::DeleteApplicationInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass DeleteApplicationInput data as a hash:
{
application_name: "ApplicationName", # required
}
Represents the input of a DeleteApplication operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of an AWS CodeDeploy application associated with the IAM user or AWS account.
Instance Attribute Details
#application_name ⇒ String
The name of an AWS CodeDeploy application associated with the IAM user or AWS account.
1443 1444 1445 1446 1447 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1443 class DeleteApplicationInput < Struct.new( :application_name) SENSITIVE = [] include Aws::Structure end |