Class: Aws::Ivschat::Types::MessageReviewHandler
- Inherits:
-
Struct
- Object
- Struct
- Aws::Ivschat::Types::MessageReviewHandler
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivschat/types.rb
Overview
Configuration information for optional message review.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fallback_result ⇒ String
Specifies the fallback behavior (whether the message is allowed or denied) if the handler does not return a valid response, encounters an error, or times out.
-
#uri ⇒ String
Identifier of the message review handler.
Instance Attribute Details
#fallback_result ⇒ String
Specifies the fallback behavior (whether the message is allowed or denied) if the handler does not return a valid response, encounters an error, or times out. (For the timeout period, see [ Service Quotas].) If allowed, the message is delivered with returned content to all users connected to the room. If denied, the message is not delivered to any user. Default: ‘ALLOW`.
[1]: docs.aws.amazon.com/ivs/latest/userguide/service-quotas.html
830 831 832 833 834 835 |
# File 'lib/aws-sdk-ivschat/types.rb', line 830 class MessageReviewHandler < Struct.new( :uri, :fallback_result) SENSITIVE = [] include Aws::Structure end |
#uri ⇒ String
Identifier of the message review handler. Currently this must be an ARN of a lambda function.
830 831 832 833 834 835 |
# File 'lib/aws-sdk-ivschat/types.rb', line 830 class MessageReviewHandler < Struct.new( :uri, :fallback_result) SENSITIVE = [] include Aws::Structure end |