Class: Aws::ACMPCA::Types::CustomExtension
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::CustomExtension
- 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
-
#critical ⇒ Boolean
Specifies the critical flag of the X.509 extension.
-
#object_identifier ⇒ String
Specifies the object identifier (OID) of the X.509 extension.
-
#value ⇒ String
Specifies the base64-encoded value of the X.509 extension.
Instance Attribute Details
#critical ⇒ Boolean
Specifies the critical flag of the X.509 extension.
925 926 927 928 929 930 931 |
# File 'lib/aws-sdk-acmpca/types.rb', line 925 class CustomExtension < Struct.new( :object_identifier, :value, :critical) SENSITIVE = [] include Aws::Structure end |
#object_identifier ⇒ String
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
925 926 927 928 929 930 931 |
# File 'lib/aws-sdk-acmpca/types.rb', line 925 class CustomExtension < Struct.new( :object_identifier, :value, :critical) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
Specifies the base64-encoded value of the X.509 extension.
925 926 927 928 929 930 931 |
# File 'lib/aws-sdk-acmpca/types.rb', line 925 class CustomExtension < Struct.new( :object_identifier, :value, :critical) SENSITIVE = [] include Aws::Structure end |