Class: Aws::CodeCommit::Types::DeleteFileEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::DeleteFileEntry
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Note:
When making an API call, you may pass DeleteFileEntry data as a hash:
{
file_path: "Path", # required
}
A file that is deleted as part of a commit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_path ⇒ String
The full path of the file to be deleted, including the name of the file.
Instance Attribute Details
#file_path ⇒ String
The full path of the file to be deleted, including the name of the file.
2085 2086 2087 2088 2089 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2085 class DeleteFileEntry < Struct.new( :file_path) SENSITIVE = [] include Aws::Structure end |