Class: Aws::CodeCommit::Types::GetBlobInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::GetBlobInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Represents the input of a get blob operation.
Constant Summary collapse
- SENSITIVE =
[]
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.
2692 2693 2694 2695 2696 2697 |
# File 'lib/aws-sdk-codecommit/types.rb', line 2692 class GetBlobInput < Struct.new( :repository_name, :blob_id) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository that contains the blob.
2692 2693 2694 2695 2696 2697 |
# File 'lib/aws-sdk-codecommit/types.rb', line 2692 class GetBlobInput < Struct.new( :repository_name, :blob_id) SENSITIVE = [] include Aws::Structure end |