Class: Aws::ACMPCA::Types::CustomExtension
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::CustomExtension
- 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
-
#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.
927 928 929 930 931 932 933 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 927 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.
927 928 929 930 931 932 933 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 927 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.
927 928 929 930 931 932 933 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 927 class CustomExtension < Struct.new( :object_identifier, :value, :critical) SENSITIVE = [] include Aws::Structure end |