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
488 489 490 491 492 493 494 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 488 class AssetFileContent < Struct.new( :path, :body, :metadata) SENSITIVE = [] include Aws::Structure end |
#metadata ⇒ Hash, ...
Optional metadata for this file
488 489 490 491 492 493 494 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 488 class AssetFileContent < Struct.new( :path, :body, :metadata) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path of the file within the asset
488 489 490 491 492 493 494 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 488 class AssetFileContent < Struct.new( :path, :body, :metadata) SENSITIVE = [] include Aws::Structure end |