Class: Aws::CodeCommit::Types::Folder
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::Folder
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Returns information about a folder in a repository.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#absolute_path ⇒ String
The fully qualified path of the folder in the repository.
-
#relative_path ⇒ String
The relative path of the specified folder from the folder where the query originated.
-
#tree_id ⇒ String
The full SHA-1 pointer of the tree information for the commit that contains the folder.
Instance Attribute Details
#absolute_path ⇒ String
The fully qualified path of the folder in the repository.
2523 2524 2525 2526 2527 2528 2529 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2523 class Folder < Struct.new( :tree_id, :absolute_path, :relative_path) SENSITIVE = [] include Aws::Structure end |
#relative_path ⇒ String
The relative path of the specified folder from the folder where the query originated.
2523 2524 2525 2526 2527 2528 2529 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2523 class Folder < Struct.new( :tree_id, :absolute_path, :relative_path) SENSITIVE = [] include Aws::Structure end |
#tree_id ⇒ String
The full SHA-1 pointer of the tree information for the commit that contains the folder.
2523 2524 2525 2526 2527 2528 2529 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2523 class Folder < Struct.new( :tree_id, :absolute_path, :relative_path) SENSITIVE = [] include Aws::Structure end |