Class: AWS::Flow::ActivityMetadata Private

Inherits:
Object
  • Object
show all
Defined in:
lib/aws/decider/activity.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Contains metadata about an activity.

API:

  • private

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(activity_id) ⇒ ActivityMetadata

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Initializes a new ActivityMetadata object.

Parameters:

  • The ID of the activity.

API:

  • private



36
# File 'lib/aws/decider/activity.rb', line 36

def initialize(activity_id); @activity_id = activity_id; end

Instance Attribute Details

#activity_idObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

The stored ID of the activity.

API:

  • private



29
30
31
# File 'lib/aws/decider/activity.rb', line 29

def activity_id
  @activity_id
end