Show / Hide Table of Contents

Class CfnRoom.MessageReviewHandlerProperty

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

Inheritance
object
CfnRoom.MessageReviewHandlerProperty
Implements
CfnRoom.IMessageReviewHandlerProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IVSChat
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRoom.MessageReviewHandlerProperty : CfnRoom.IMessageReviewHandlerProperty
Syntax (vb)
Public Class CfnRoom.MessageReviewHandlerProperty Implements CfnRoom.IMessageReviewHandlerProperty
Remarks

See: 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()

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

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()

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

public MessageReviewHandlerProperty()
Remarks

See: 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"
             };

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

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

Default: - "ALLOW"

See: 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

string

Remarks

Currently this must be an ARN of a lambda function.

See: 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