Class: Aws::CodeCommit::Types::GetFileInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::GetFileInput
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#commit_specifier ⇒ String
The fully quaified reference that identifies the commit that contains the file.
-
#file_path ⇒ String
The fully qualified path to the file, including the full name and extension of the file.
-
#repository_name ⇒ String
The name of the repository that contains the file.
Instance Attribute Details
#commit_specifier ⇒ String
The fully quaified reference that identifies the commit that contains the file. For example, you can specify a full commit ID, a tag, a branch name, or a reference such as refs/heads/main. If none is provided, the head commit is used.
3074 3075 3076 3077 3078 3079 3080 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 3074 class GetFileInput < Struct.new( :repository_name, :commit_specifier, :file_path) SENSITIVE = [] include Aws::Structure end |
#file_path ⇒ String
The fully qualified path to the file, including the full name and extension of the file. For example, /examples/file.md is the fully qualified path to a file named file.md in a folder named examples.
3074 3075 3076 3077 3078 3079 3080 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 3074 class GetFileInput < Struct.new( :repository_name, :commit_specifier, :file_path) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository that contains the file.
3074 3075 3076 3077 3078 3079 3080 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 3074 class GetFileInput < Struct.new( :repository_name, :commit_specifier, :file_path) SENSITIVE = [] include Aws::Structure end |