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
358 359 360 361 362 363 364 365 366 367 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 358 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
358 359 360 361 362 363 364 365 366 367 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 358 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
358 359 360 361 362 363 364 365 366 367 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 358 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
358 359 360 361 362 363 364 365 366 367 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 358 class Asset < Struct.new( :asset_id, :asset_type, :metadata, :version, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |