Class: Aws::ACMPCA::Types::Extensions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::Extensions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-acmpca/types.rb
Overview
Contains X.509 extension information for a certificate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_policies ⇒ Array<Types::PolicyInformation>
Contains a sequence of one or more policy information terms, each of which consists of an object identifier (OID) and optional qualifiers.
-
#custom_extensions ⇒ Array<Types::CustomExtension>
Contains a sequence of one or more X.509 extensions, each of which consists of an object identifier (OID), a base64-encoded value, and the critical flag.
-
#extended_key_usage ⇒ Array<Types::ExtendedKeyUsage>
Specifies additional purposes for which the certified public key may be used other than basic purposes indicated in the ‘KeyUsage` extension.
-
#key_usage ⇒ Types::KeyUsage
Defines one or more purposes for which the key contained in the certificate can be used.
-
#subject_alternative_names ⇒ Array<Types::GeneralName>
The subject alternative name extension allows identities to be bound to the subject of the certificate.
Instance Attribute Details
#certificate_policies ⇒ Array<Types::PolicyInformation>
Contains a sequence of one or more policy information terms, each of which consists of an object identifier (OID) and optional qualifiers. For more information, see NIST’s definition of [Object Identifier (OID)].
In an end-entity certificate, these terms indicate the policy under which the certificate was issued and the purposes for which it may be used. In a CA certificate, these terms limit the set of policies for certification paths that include this certificate.
1206 1207 1208 1209 1210 1211 1212 1213 1214 |
# File 'lib/aws-sdk-acmpca/types.rb', line 1206 class Extensions < Struct.new( :certificate_policies, :extended_key_usage, :key_usage, :subject_alternative_names, :custom_extensions) SENSITIVE = [] include Aws::Structure end |
#custom_extensions ⇒ Array<Types::CustomExtension>
Contains a sequence of one or more X.509 extensions, each of which consists of an object identifier (OID), a base64-encoded value, and the critical flag. For more information, see the [Global OID reference database.]
[1]: oidref.com/2.5.29
1206 1207 1208 1209 1210 1211 1212 1213 1214 |
# File 'lib/aws-sdk-acmpca/types.rb', line 1206 class Extensions < Struct.new( :certificate_policies, :extended_key_usage, :key_usage, :subject_alternative_names, :custom_extensions) SENSITIVE = [] include Aws::Structure end |
#extended_key_usage ⇒ Array<Types::ExtendedKeyUsage>
Specifies additional purposes for which the certified public key may be used other than basic purposes indicated in the ‘KeyUsage` extension.
1206 1207 1208 1209 1210 1211 1212 1213 1214 |
# File 'lib/aws-sdk-acmpca/types.rb', line 1206 class Extensions < Struct.new( :certificate_policies, :extended_key_usage, :key_usage, :subject_alternative_names, :custom_extensions) SENSITIVE = [] include Aws::Structure end |
#key_usage ⇒ Types::KeyUsage
Defines one or more purposes for which the key contained in the certificate can be used. Default value for each option is false.
1206 1207 1208 1209 1210 1211 1212 1213 1214 |
# File 'lib/aws-sdk-acmpca/types.rb', line 1206 class Extensions < Struct.new( :certificate_policies, :extended_key_usage, :key_usage, :subject_alternative_names, :custom_extensions) SENSITIVE = [] include Aws::Structure end |
#subject_alternative_names ⇒ Array<Types::GeneralName>
The subject alternative name extension allows identities to be bound to the subject of the certificate. These identities may be included in addition to or in place of the identity in the subject field of the certificate.
1206 1207 1208 1209 1210 1211 1212 1213 1214 |
# File 'lib/aws-sdk-acmpca/types.rb', line 1206 class Extensions < Struct.new( :certificate_policies, :extended_key_usage, :key_usage, :subject_alternative_names, :custom_extensions) SENSITIVE = [] include Aws::Structure end |