Class: Aws::DevOpsAgent::Types::Asset
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::Asset
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devopsagent/types.rb
Overview
Represents an asset in an agent space, including its identifier, type, metadata, version, and timestamps.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_id ⇒ String
The unique identifier for this asset.
-
#asset_type ⇒ String
The type of this asset.
-
#created_at ⇒ Time
Timestamp when this asset was created.
-
#metadata ⇒ Hash, ...
The metadata for this asset.
-
#updated_at ⇒ Time
Timestamp when this asset was last updated.
-
#version ⇒ Integer
The version number of this asset.
Instance Attribute Details
#asset_id ⇒ String
The unique identifier for this asset
243 244 245 246 247 248 249 250 251 252 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 243 class Asset < Struct.new( :asset_id, :asset_type, :metadata, :version, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#asset_type ⇒ String
The type of this asset
243 244 245 246 247 248 249 250 251 252 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 243 class Asset < Struct.new( :asset_id, :asset_type, :metadata, :version, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
Timestamp when this asset was created
243 244 245 246 247 248 249 250 251 252 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 243 class Asset < Struct.new( :asset_id, :asset_type, :metadata, :version, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#metadata ⇒ Hash, ...
The metadata for this asset
243 244 245 246 247 248 249 250 251 252 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 243 class Asset < Struct.new( :asset_id, :asset_type, :metadata, :version, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |