Class: Aws::CodeCommit::Types::BatchGetRepositoriesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::BatchGetRepositoriesInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Note:
When making an API call, you may pass BatchGetRepositoriesInput data as a hash:
{
repository_names: ["RepositoryName"], # required
}
Represents the input of a batch get repositories operation.
Instance Attribute Summary collapse
-
#repository_names ⇒ Array<String>
The names of the repositories to get information about.
Instance Attribute Details
#repository_names ⇒ Array<String>
The names of the repositories to get information about.
26 27 28 29 |
# File 'lib/aws-sdk-codecommit/types.rb', line 26 class BatchGetRepositoriesInput < Struct.new( :repository_names) include Aws::Structure end |