Class: Aws::SecurityHub::Types::AwsCertificateManagerCertificateExtendedKeyUsage
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsCertificateManagerCertificateExtendedKeyUsage
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsCertificateManagerCertificateExtendedKeyUsage data as a hash:
{
name: "NonEmptyString",
o_id: "NonEmptyString",
}
Contains information about an extended key usage X.509 v3 extension object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of an extension value.
-
#o_id ⇒ String
An object identifier (OID) for the extension value.
Instance Attribute Details
#name ⇒ String
The name of an extension value. Indicates the purpose for which the certificate public key can be used.
1769 1770 1771 1772 1773 1774 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 1769 class AwsCertificateManagerCertificateExtendedKeyUsage < Struct.new( :name, :o_id) SENSITIVE = [] include Aws::Structure end |
#o_id ⇒ String
An object identifier (OID) for the extension value.
The format is numbers separated by periods.
1769 1770 1771 1772 1773 1774 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 1769 class AwsCertificateManagerCertificateExtendedKeyUsage < Struct.new( :name, :o_id) SENSITIVE = [] include Aws::Structure end |