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
Note:
When making an API call, you may pass CustomExtension data as a hash:
{
object_identifier: "CustomObjectIdentifier", # required
value: "Base64String1To4096", # required
critical: false,
}
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.
1313 1314 1315 1316 1317 1318 1319 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1313 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.
1313 1314 1315 1316 1317 1318 1319 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1313 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.
1313 1314 1315 1316 1317 1318 1319 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1313 class CustomExtension < Struct.new( :object_identifier, :value, :critical) SENSITIVE = [] include Aws::Structure end |