Class: Aws::DevOpsAgent::Types::AssetFileContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::AssetFileContent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devopsagent/types.rb
Overview
A single file with path and content
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#body ⇒ Types::AssetFileBody
The file content.
-
#metadata ⇒ Hash, ...
Optional metadata for this file.
-
#path ⇒ String
The path of the file within the asset.
Instance Attribute Details
#body ⇒ Types::AssetFileBody
The file content
366 367 368 369 370 371 372 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 366 class AssetFileContent < Struct.new( :path, :body, :metadata) SENSITIVE = [] include Aws::Structure end |
#metadata ⇒ Hash, ...
Optional metadata for this file
366 367 368 369 370 371 372 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 366 class AssetFileContent < Struct.new( :path, :body, :metadata) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path of the file within the asset
366 367 368 369 370 371 372 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 366 class AssetFileContent < Struct.new( :path, :body, :metadata) SENSITIVE = [] include Aws::Structure end |