Interface CfnTopicRule.IOpenSearchActionProperty
Describes an action that writes data to an Amazon OpenSearch Service domain.
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IOpenSearchActionProperty
Syntax (vb)
Public Interface IOpenSearchActionProperty
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 openSearchActionProperty = new OpenSearchActionProperty {
Endpoint = "endpoint",
Id = "id",
Index = "index",
RoleArn = "roleArn",
Type = "type"
};
Synopsis
Properties
Endpoint | The endpoint of your OpenSearch domain. |
Id | The unique identifier for the document you are storing. |
Index | The OpenSearch index where you want to store your data. |
Role |
The IAM role ARN that has access to OpenSearch. |
Type | The type of document you are storing. |
Properties
Endpoint
The endpoint of your OpenSearch domain.
string Endpoint { get; }
Property Value
System.
Remarks
Id
The unique identifier for the document you are storing.
string Id { get; }
Property Value
System.
Remarks
Index
The OpenSearch index where you want to store your data.
string Index { get; }
Property Value
System.
Remarks
RoleArn
The IAM role ARN that has access to OpenSearch.
string RoleArn { get; }
Property Value
System.
Remarks
Type
The type of document you are storing.
string Type { get; }
Property Value
System.