Class: Aws::CodeCommit::Types::FileModes
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::FileModes
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Information about file modes in a merge or pull request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base ⇒ String
The file mode of a file in the base of a merge or pull request.
-
#destination ⇒ String
The file mode of a file in the destination of a merge or pull request.
-
#source ⇒ String
The file mode of a file in the source of a merge or pull request.
Instance Attribute Details
#base ⇒ String
The file mode of a file in the base of a merge or pull request.
2518 2519 2520 2521 2522 2523 2524 |
# File 'lib/aws-sdk-codecommit/types.rb', line 2518 class FileModes < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end |