Class: Aws::ACMPCA::Types::CustomExtension

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

Overview

Specifies the X.509 extension information for a certificate.

Extensions present in CustomExtensions follow the ApiPassthrough template rules.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#criticalBoolean

Specifies the critical flag of the X.509 extension.

Returns:

  • (Boolean)


929
930
931
932
933
934
935
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 929

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

#object_identifierString

Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database.

Returns:

  • (String)


929
930
931
932
933
934
935
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 929

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

#valueString

Specifies the base64-encoded value of the X.509 extension.

Returns:

  • (String)


929
930
931
932
933
934
935
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 929

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