Class: Aws::CodeCommit::Types::FileModes
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::FileModes
- Defined in:
- gems/aws-sdk-codecommit/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.
2520 2521 2522 2523 2524 2525 2526 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2520 class FileModes < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end |
#destination ⇒ String
The file mode of a file in the destination of a merge or pull request.
2520 2521 2522 2523 2524 2525 2526 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2520 class FileModes < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end |