Class: Aws::ACM::Types::OtherName

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-acm/types.rb

Overview

Defines a custom ASN.1 X.400 ‘GeneralName` using an object identifier (OID) and value. For more information, see NIST’s definition of [Object Identifier (OID)].

[1]: csrc.nist.gov/glossary/term/Object_Identifier

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#object_identifierString

Specifies an OID.

Returns:

  • (String)


1717
1718
1719
1720
1721
1722
# File 'lib/aws-sdk-acm/types.rb', line 1717

class OtherName < Struct.new(
  :object_identifier,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

Specifies an OID value.

Returns:

  • (String)


1717
1718
1719
1720
1721
1722
# File 'lib/aws-sdk-acm/types.rb', line 1717

class OtherName < Struct.new(
  :object_identifier,
  :value)
  SENSITIVE = []
  include Aws::Structure
end