Class: Aws::SESV2::Types::IdentityCertificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::IdentityCertificate
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
An object that contains information about an S/MIME certificate that's associated with an email identity.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the Certificate Manager (ACM) certificate that's associated with the email identity.
-
#certificate_expiry_time ⇒ Time
The timestamp after which the certificate is no longer valid.
-
#from_address ⇒ String
The email address that the certificate applies to.
-
#status ⇒ String
The status of the certificate association.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the Certificate Manager (ACM) certificate that's associated with the email identity.
4866 4867 4868 4869 4870 4871 4872 4873 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 4866 class IdentityCertificate < Struct.new( :from_address, :status, :certificate_arn, :certificate_expiry_time) SENSITIVE = [] include Aws::Structure end |
#certificate_expiry_time ⇒ Time
The timestamp after which the certificate is no longer valid.
4866 4867 4868 4869 4870 4871 4872 4873 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 4866 class IdentityCertificate < Struct.new( :from_address, :status, :certificate_arn, :certificate_expiry_time) SENSITIVE = [] include Aws::Structure end |
#from_address ⇒ String
The email address that the certificate applies to.
4866 4867 4868 4869 4870 4871 4872 4873 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 4866 class IdentityCertificate < Struct.new( :from_address, :status, :certificate_arn, :certificate_expiry_time) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the certificate association. A status of ACTIVE
indicates that the certificate is ready to use for signing.
4866 4867 4868 4869 4870 4871 4872 4873 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 4866 class IdentityCertificate < Struct.new( :from_address, :status, :certificate_arn, :certificate_expiry_time) SENSITIVE = [] include Aws::Structure end |