Class: Aws::SESV2::Types::AssociateEmailIdentityCertificateRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#certificate_arnString

The Amazon Resource Name (ARN) of the Certificate Manager (ACM) certificate to associate with the email identity.

Returns:

  • (String)


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_identityString

The email identity, either an email address or a domain, to associate the certificate with.

Returns:

  • (String)


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_addressString

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.

Returns:

  • (String)


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