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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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].

[1]: docs.aws.amazon.com/privateca/latest/userguide/UsingTemplates.html#template-order-of-operations

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 '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.]

[1]: oidref.com/2.5.29

Returns:

  • (String)


929
930
931
932
933
934
935
# File '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 'lib/aws-sdk-acmpca/types.rb', line 929

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