Class: Aws::CodeCommit::Types::SetFileModeEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::SetFileModeEntry
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Note:
When making an API call, you may pass SetFileModeEntry data as a hash:
{
file_path: "Path", # required
file_mode: "EXECUTABLE", # required, accepts EXECUTABLE, NORMAL, SYMLINK
}
Information about the file mode changes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_mode ⇒ String
The file mode for the file.
-
#file_path ⇒ String
The full path to the file, including the name of the file.
Instance Attribute Details
#file_mode ⇒ String
The file mode for the file.
7169 7170 7171 7172 7173 7174 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 7169 class SetFileModeEntry < Struct.new( :file_path, :file_mode) SENSITIVE = [] include Aws::Structure end |
#file_path ⇒ String
The full path to the file, including the name of the file.
7169 7170 7171 7172 7173 7174 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 7169 class SetFileModeEntry < Struct.new( :file_path, :file_mode) SENSITIVE = [] include Aws::Structure end |