Class: Aws::ACMPCA::Types::ExtendedKeyUsage

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#extended_key_usage_object_identifierString

Specifies a custom ‘ExtendedKeyUsage` with an object identifier (OID).

Returns:

  • (String)


1154
1155
1156
1157
1158
1159
# File 'lib/aws-sdk-acmpca/types.rb', line 1154

class ExtendedKeyUsage < Struct.new(
  :extended_key_usage_type,
  :extended_key_usage_object_identifier)
  SENSITIVE = []
  include Aws::Structure
end

#extended_key_usage_typeString

Specifies a standard ‘ExtendedKeyUsage` as defined as in [RFC 5280].

[1]: datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.12

Returns:

  • (String)


1154
1155
1156
1157
1158
1159
# File 'lib/aws-sdk-acmpca/types.rb', line 1154

class ExtendedKeyUsage < Struct.new(
  :extended_key_usage_type,
  :extended_key_usage_object_identifier)
  SENSITIVE = []
  include Aws::Structure
end