Interface CfnTopicRule.OpenSearchActionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTopicRule.OpenSearchActionProperty.Jsii$Proxy
Enclosing class:
CfnTopicRule

@Stability(Stable) public static interface CfnTopicRule.OpenSearchActionProperty extends software.amazon.jsii.JsiiSerializable
Describes an action that writes data to an Amazon OpenSearch Service domain.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iot.*;
 OpenSearchActionProperty openSearchActionProperty = OpenSearchActionProperty.builder()
         .endpoint("endpoint")
         .id("id")
         .index("index")
         .roleArn("roleArn")
         .type("type")
         .build();