Class: Aws::CodeDeploy::Types::BatchGetApplicationsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::BatchGetApplicationsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass BatchGetApplicationsInput data as a hash:
{
application_names: ["ApplicationName"], # required
}
Represents the input of a ‘BatchGetApplications` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_names ⇒ Array<String>
A list of application names separated by spaces.
Instance Attribute Details
#application_names ⇒ Array<String>
A list of application names separated by spaces. The maximum number of application names you can specify is 100.
384 385 386 387 388 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 384 class BatchGetApplicationsInput < Struct.new( :application_names) SENSITIVE = [] include Aws::Structure end |