Class: Aws::DevOpsAgent::Types::AssetFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::AssetFile
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devopsagent/types.rb
Overview
Represents a single file within an asset, including its path, content, version, and timestamps.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content ⇒ Types::AssetFileBody
The content of this file.
-
#created_at ⇒ Time
Timestamp when this file was created.
-
#metadata ⇒ Hash, ...
The metadata for this file.
-
#path ⇒ String
The path of this file within the asset.
-
#updated_at ⇒ Time
Timestamp when this file was last updated.
-
#version ⇒ Integer
The asset version this file belongs to.
Instance Attribute Details
#content ⇒ Types::AssetFileBody
The content of this file
310 311 312 313 314 315 316 317 318 319 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 310 class AssetFile < Struct.new( :path, :content, :metadata, :version, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
Timestamp when this file was created
310 311 312 313 314 315 316 317 318 319 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 310 class AssetFile < Struct.new( :path, :content, :metadata, :version, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#metadata ⇒ Hash, ...
The metadata for this file
310 311 312 313 314 315 316 317 318 319 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 310 class AssetFile < Struct.new( :path, :content, :metadata, :version, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path of this file within the asset
310 311 312 313 314 315 316 317 318 319 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 310 class AssetFile < Struct.new( :path, :content, :metadata, :version, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |