Class: Aws::ACM::Types::CertificateOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::CertificateOptions
- Defined in:
- gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb
Overview
Structure that contains options for your certificate. You can use this structure to specify whether to opt in to or out of certificate transparency logging and export your certificate.
Some browsers require that public certificates issued for your domain be recorded in a log. Certificates that are not logged typically generate a browser error. Transparency makes it possible for you to detect SSL/TLS certificates that have been mistakenly or maliciously issued for your domain. For general information, see Certificate Transparency Logging.
You can export public ACM certificates to use with Amazon Web Services services as well as outside Amazon Web Services Cloud. For more information, see Certificate Manager exportable public certificate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_transparency_logging_preference ⇒ String
You can opt out of certificate transparency logging by specifying the
DISABLED
option. -
#export ⇒ String
You can opt in to allow the export of your certificates by specifying
ENABLED
.
Instance Attribute Details
#certificate_transparency_logging_preference ⇒ String
You can opt out of certificate transparency logging by specifying
the DISABLED
option. Opt in by specifying ENABLED
.
308 309 310 311 312 313 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 308 class CertificateOptions < Struct.new( :certificate_transparency_logging_preference, :export) SENSITIVE = [] include Aws::Structure end |
#export ⇒ String
You can opt in to allow the export of your certificates by
specifying ENABLED
.
308 309 310 311 312 313 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 308 class CertificateOptions < Struct.new( :certificate_transparency_logging_preference, :export) SENSITIVE = [] include Aws::Structure end |