Class: Aws::CodeCommit::Types::IsBinaryFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::IsBinaryFile
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Information about whether a file is binary or textual in a merge or pull request operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base ⇒ Boolean
The binary or non-binary status of a file in the base of a merge or pull request.
-
#destination ⇒ Boolean
The binary or non-binary status of a file in the destination of a merge or pull request.
-
#source ⇒ Boolean
The binary or non-binary status of file in the source of a merge or pull request.
Instance Attribute Details
#base ⇒ Boolean
The binary or non-binary status of a file in the base of a merge or pull request.
4086 4087 4088 4089 4090 4091 4092 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 4086 class IsBinaryFile < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end |
#destination ⇒ Boolean
The binary or non-binary status of a file in the destination of a merge or pull request.
4086 4087 4088 4089 4090 4091 4092 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 4086 class IsBinaryFile < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end |
#source ⇒ Boolean
The binary or non-binary status of file in the source of a merge or pull request.
4086 4087 4088 4089 4090 4091 4092 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 4086 class IsBinaryFile < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end |