Class: Aws::ACMPCA::Types::Extensions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb

Overview

Contains X.509 extension information for a certificate.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_policiesArray<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.

Returns:



1210
1211
1212
1213
1214
1215
1216
1217
1218
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1210

class Extensions < Struct.new(
  :certificate_policies,
  :extended_key_usage,
  :key_usage,
  :subject_alternative_names,
  :custom_extensions)
  SENSITIVE = []
  include Aws::Structure
end

#custom_extensionsArray<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.

Returns:



1210
1211
1212
1213
1214
1215
1216
1217
1218
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1210

class Extensions < Struct.new(
  :certificate_policies,
  :extended_key_usage,
  :key_usage,
  :subject_alternative_names,
  :custom_extensions)
  SENSITIVE = []
  include Aws::Structure
end

#extended_key_usageArray<Types::ExtendedKeyUsage>

Specifies additional purposes for which the certified public key may be used other than basic purposes indicated in the KeyUsage extension.

Returns:



1210
1211
1212
1213
1214
1215
1216
1217
1218
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1210

class Extensions < Struct.new(
  :certificate_policies,
  :extended_key_usage,
  :key_usage,
  :subject_alternative_names,
  :custom_extensions)
  SENSITIVE = []
  include Aws::Structure
end

#key_usageTypes::KeyUsage

Defines one or more purposes for which the key contained in the certificate can be used. Default value for each option is false.

Returns:



1210
1211
1212
1213
1214
1215
1216
1217
1218
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1210

class Extensions < Struct.new(
  :certificate_policies,
  :extended_key_usage,
  :key_usage,
  :subject_alternative_names,
  :custom_extensions)
  SENSITIVE = []
  include Aws::Structure
end

#subject_alternative_namesArray<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.

Returns:



1210
1211
1212
1213
1214
1215
1216
1217
1218
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1210

class Extensions < Struct.new(
  :certificate_policies,
  :extended_key_usage,
  :key_usage,
  :subject_alternative_names,
  :custom_extensions)
  SENSITIVE = []
  include Aws::Structure
end