Class: Aws::Braket::Types::ExperimentalCapabilities

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

Enabled, Unknown

Defined Under Namespace

Classes: Enabled, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledString

Enabled experimental capabilities.

Returns:

  • (String)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



578
579
580
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 578

def unknown
  @unknown
end