Class: Aws::ACMPCA::Types::OtherName

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

Overview

Defines a custom ASN.1 X.400 ‘GeneralName` using an object identifier (OID) and value. The OID must satisfy the regular expression shown below. 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

#type_idString

Specifies an OID.

Returns:

  • (String)


2083
2084
2085
2086
2087
2088
# File 'lib/aws-sdk-acmpca/types.rb', line 2083

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

#valueString

Specifies an OID value.

Returns:

  • (String)


2083
2084
2085
2086
2087
2088
# File 'lib/aws-sdk-acmpca/types.rb', line 2083

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