Class: Aws::SecurityAgent::Types::ActorMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::ActorMessage
- 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
-
#body ⇒ String
The plain-text body of the message, containing the MFA code or verification link.
-
#received_at ⇒ Time
The time the message was received.
-
#sender ⇒ String
The address the message was sent from.
-
#subject ⇒ String
The subject line of the message.
Instance Attribute Details
#body ⇒ String
The plain-text body of the message, containing the MFA code or verification link.
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.
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.
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.
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 |