Class: Aws::Cbor::Tagged Private

Inherits:
Struct
  • Object
show all
Defined in:
lib/aws-sdk-core/cbor.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

CBOR Tagged data (Major type 6). A Tag consists of a tag number and a value. In the extended generic data model, a tag number’s definition describes the additional semantics conveyed with the tag number. # @!method initialize(*args)

@option args [Integer] :tag The tag number.
@option args [Object] :value The tag's content.

Instance Attribute Summary collapse

Instance Attribute Details

#tagInteger

The tag number.

Returns:

  • (Integer)


20
# File 'lib/aws-sdk-core/cbor.rb', line 20

Tagged = Struct.new(:tag, :value)

#valueObject

The tag’s content.

Returns:

  • (Object)


20
# File 'lib/aws-sdk-core/cbor.rb', line 20

Tagged = Struct.new(:tag, :value)