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)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



508
509
510
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 508

def unknown
  @unknown
end