Show / Hide Table of Contents

Class CfnRoom.MessageReviewHandlerProperty

The MessageReviewHandler property type specifies configuration information for optional message review.

Inheritance
System.Object
CfnRoom.MessageReviewHandlerProperty
Implements
CfnRoom.IMessageReviewHandlerProperty
Namespace: Amazon.CDK.AWS.IVSChat
Assembly: Amazon.CDK.AWS.IVSChat.dll
Syntax (csharp)
public class MessageReviewHandlerProperty : Object, CfnRoom.IMessageReviewHandlerProperty
Syntax (vb)
Public Class MessageReviewHandlerProperty
    Inherits Object
    Implements CfnRoom.IMessageReviewHandlerProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivschat-room-messagereviewhandler.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IVSChat;

var messageReviewHandlerProperty = new MessageReviewHandlerProperty {
    FallbackResult = "fallbackResult",
    Uri = "uri"
};

Synopsis

Constructors

MessageReviewHandlerProperty()

Properties

FallbackResult

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

Identifier of the message review handler.

Constructors

MessageReviewHandlerProperty()

public MessageReviewHandlerProperty()

Properties

FallbackResult

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.

public string FallbackResult { get; set; }
Property Value

System.String

Remarks

(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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivschat-room-messagereviewhandler.html#cfn-ivschat-room-messagereviewhandler-fallbackresult

Uri

Identifier of the message review handler.

public string Uri { get; set; }
Property Value

System.String

Remarks

Currently this must be an ARN of a lambda function.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivschat-room-messagereviewhandler.html#cfn-ivschat-room-messagereviewhandler-uri

Implements

CfnRoom.IMessageReviewHandlerProperty
Back to top Generated by DocFX