Class: Aws::Braket::Types::ActionMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Braket::Types::ActionMetadata
- 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
-
#action_type ⇒ String
The type of action associated with the quantum task.
-
#executable_count ⇒ Integer
The number of executables in a program set.
-
#program_count ⇒ Integer
The number of programs in a program set.
Instance Attribute Details
#action_type ⇒ String
The type of action associated with the quantum task.
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_count ⇒ Integer
The number of executables in a program set. This is only available for a Program Set.
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_count ⇒ Integer
The number of programs in a program set. This is only available for a Program Set.
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 |