Class: Aws::AppTest::Types::InputFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::InputFile
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apptest/types.rb
Overview
Specifies the input file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_metadata ⇒ Types::FileMetadata
The file metadata of the input file.
-
#source_location ⇒ String
The source location of the input file.
-
#target_location ⇒ String
The target location of the input file.
Instance Attribute Details
#file_metadata ⇒ Types::FileMetadata
The file metadata of the input file.
1267 1268 1269 1270 1271 1272 1273 |
# File 'lib/aws-sdk-apptest/types.rb', line 1267 class InputFile < Struct.new( :source_location, :target_location, :file_metadata) SENSITIVE = [] include Aws::Structure end |