Class: Aws::CodeCommit::Types::GetBlobInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::GetBlobInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Note:
When making an API call, you may pass GetBlobInput data as a hash:
{
repository_name: "RepositoryName", # required
blob_id: "ObjectId", # required
}
Represents the input of a get blob operation.
Instance Attribute Summary collapse
-
#blob_id ⇒ String
The ID of the blob, which is its SHA-1 pointer.
-
#repository_name ⇒ String
The name of the repository that contains the blob.
Instance Attribute Details
#blob_id ⇒ String
The ID of the blob, which is its SHA-1 pointer.
326 327 328 329 330 |
# File 'lib/aws-sdk-codecommit/types.rb', line 326 class GetBlobInput < Struct.new( :repository_name, :blob_id) include Aws::Structure end |
#repository_name ⇒ String
The name of the repository that contains the blob.
326 327 328 329 330 |
# File 'lib/aws-sdk-codecommit/types.rb', line 326 class GetBlobInput < Struct.new( :repository_name, :blob_id) include Aws::Structure end |