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.
578 579 580 581 582 583 584 585 586 587 |
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 578 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
578 579 580 |
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 578 def unknown @unknown end |