Class: Aws::SecurityAgent::Types::ActorMessage

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb

Overview

A message received at an actor's server-generated email MFA address.

Constant Summary collapse

SENSITIVE =
[:sender, :subject, :body]

Instance Attribute Summary collapse

Instance Attribute Details

#body ⇒ String

The plain-text body of the message, containing the MFA code or verification link.

Returns:

  • (String)


133
134
135
136
137
138
139
140
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 133

class ActorMessage < Struct.new(
  :sender,
  :subject,
  :body,
  :received_at)
  SENSITIVE = [:sender, :subject, :body]
  include Aws::Structure
end

#received_at ⇒ Time

The time the message was received.

Returns:

  • (Time)


133
134
135
136
137
138
139
140
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 133

class ActorMessage < Struct.new(
  :sender,
  :subject,
  :body,
  :received_at)
  SENSITIVE = [:sender, :subject, :body]
  include Aws::Structure
end

#sender ⇒ String

The address the message was sent from.

Returns:

  • (String)


133
134
135
136
137
138
139
140
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 133

class ActorMessage < Struct.new(
  :sender,
  :subject,
  :body,
  :received_at)
  SENSITIVE = [:sender, :subject, :body]
  include Aws::Structure
end

#subject ⇒ String

The subject line of the message.

Returns:

  • (String)


133
134
135
136
137
138
139
140
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 133

class ActorMessage < Struct.new(
  :sender,
  :subject,
  :body,
  :received_at)
  SENSITIVE = [:sender, :subject, :body]
  include Aws::Structure
end