Class: Aws::SESV2::Types::AssociateEmailIdentityCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::AssociateEmailIdentityCertificateRequest
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
A request to associate an S/MIME certificate 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 to associate with the email identity.
-
#email_identity ⇒ String
The email identity, either an email address or a domain, to associate the certificate with.
-
#from_address ⇒ String
The email address that the certificate applies to.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the Certificate Manager (ACM) certificate to associate with the email identity.
112 113 114 115 116 117 118 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 112 class AssociateEmailIdentityCertificateRequest < Struct.new( :email_identity, :from_address, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#email_identity ⇒ String
The email identity, either an email address or a domain, to associate the certificate with.
112 113 114 115 116 117 118 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 112 class AssociateEmailIdentityCertificateRequest < Struct.new( :email_identity, :from_address, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#from_address ⇒ String
The email address that the certificate applies to. This value is required when the email identity is a domain, and the address must belong to that domain or one of its subdomains. When the email identity is an email address, this value is optional. If you specify it, it must exactly match the email identity.
112 113 114 115 116 117 118 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 112 class AssociateEmailIdentityCertificateRequest < Struct.new( :email_identity, :from_address, :certificate_arn) SENSITIVE = [] include Aws::Structure end |