Class: Aws::CodeCommit::Types::FileSizes
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::FileSizes
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Information about the size of files in a merge or pull request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base ⇒ Integer
The size of a file in the base of a merge or pull request.
-
#destination ⇒ Integer
The size of a file in the destination of a merge or pull request.
-
#source ⇒ Integer
The size of a file in the source of a merge or pull request.
Instance Attribute Details
#base ⇒ Integer
The size of a file in the base of a merge or pull request.
2559 2560 2561 2562 2563 2564 2565 |
# File 'lib/aws-sdk-codecommit/types.rb', line 2559 class FileSizes < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end |