Class CfnTopicRule.SqsActionProperty
Describes an action to publish data to an Amazon SQS queue.
Inheritance
System.Object
CfnTopicRule.SqsActionProperty
Implements
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SqsActionProperty : Object, CfnTopicRule.ISqsActionProperty
Syntax (vb)
Public Class SqsActionProperty
Inherits Object
Implements CfnTopicRule.ISqsActionProperty
Remarks
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.IoT;
var sqsActionProperty = new SqsActionProperty {
QueueUrl = "queueUrl",
RoleArn = "roleArn",
// the properties below are optional
UseBase64 = false
};
Synopsis
Constructors
SqsActionProperty() |
Properties
QueueUrl | The URL of the Amazon SQS queue. |
RoleArn | The ARN of the IAM role that grants access. |
UseBase64 | Specifies whether to use Base64 encoding. |
Constructors
SqsActionProperty()
public SqsActionProperty()
Properties
QueueUrl
The URL of the Amazon SQS queue.
public string QueueUrl { get; set; }
Property Value
System.String
Remarks
RoleArn
The ARN of the IAM role that grants access.
public string RoleArn { get; set; }
Property Value
System.String
Remarks
UseBase64
Specifies whether to use Base64 encoding.
public object UseBase64 { get; set; }
Property Value
System.Object