Class: Aws::Braket::Types::ExperimentalCapabilities
- Inherits:
-
Struct
- Object
- Struct
- Aws::Braket::Types::ExperimentalCapabilities
- Defined in:
- gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb
Overview
Note:
ExperimentalCapabilities is a union - when making an API calls you must set exactly one of the members.
Note:
ExperimentalCapabilities is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExperimentalCapabilities corresponding to the set member.
Enabled experimental capabilities for quantum hardware. Note that the use of these features may impact device capabilities and performance beyond its standard specifications.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ String
Enabled experimental capabilities.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#enabled ⇒ String
Enabled experimental capabilities.
508 509 510 511 512 513 514 515 516 517 |
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 508 class ExperimentalCapabilities < Struct.new( :enabled, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Enabled < ExperimentalCapabilities; end class Unknown < ExperimentalCapabilities; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
508 509 510 |
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 508 def unknown @unknown end |