Class: Aws::CodeDeploy::Types::GetApplicationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::GetApplicationInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass GetApplicationInput data as a hash:
{
application_name: "ApplicationName", # required
}
Represents the input of a ‘GetApplication` 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.
2701 2702 2703 2704 2705 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2701 class GetApplicationInput < Struct.new( :application_name) SENSITIVE = [] include Aws::Structure end |