Class: Aws::CodeCommit::Types::BatchGetRepositoriesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::BatchGetRepositoriesInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Represents the input of a batch get repositories operation.
Constant Summary collapse
- SENSITIVE =
[]
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.
<note markdown=“1”> The length constraint limit is for each string in the array. The array itself can be empty.
</note>
697 698 699 700 701 |
# File 'lib/aws-sdk-codecommit/types.rb', line 697 class BatchGetRepositoriesInput < Struct.new( :repository_names) SENSITIVE = [] include Aws::Structure end |