Class: Aws::Braket::Types::ActionMetadata

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb

Overview

Contains metadata about the quantum task action, including the action type and program statistics.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#action_typeString

The type of action associated with the quantum task.

Returns:

  • (String)


45
46
47
48
49
50
51
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 45

class ActionMetadata < Struct.new(
  :action_type,
  :program_count,
  :executable_count)
  SENSITIVE = []
  include Aws::Structure
end

#executable_countInteger

The number of executables in a program set. This is only available for a Program Set.

Returns:

  • (Integer)


45
46
47
48
49
50
51
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 45

class ActionMetadata < Struct.new(
  :action_type,
  :program_count,
  :executable_count)
  SENSITIVE = []
  include Aws::Structure
end

#program_countInteger

The number of programs in a program set. This is only available for a Program Set.

Returns:

  • (Integer)


45
46
47
48
49
50
51
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 45

class ActionMetadata < Struct.new(
  :action_type,
  :program_count,
  :executable_count)
  SENSITIVE = []
  include Aws::Structure
end