Interface CfnTopicRule.RepublishActionHeadersProperty

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

@Stability(Stable) public static interface CfnTopicRule.RepublishActionHeadersProperty extends software.amazon.jsii.JsiiSerializable
Specifies MQTT Version 5.0 headers information. For more information, see MQTT in the IoT Core Developer Guide.

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.*;
 RepublishActionHeadersProperty republishActionHeadersProperty = RepublishActionHeadersProperty.builder()
         .contentType("contentType")
         .correlationData("correlationData")
         .messageExpiry("messageExpiry")
         .payloadFormatIndicator("payloadFormatIndicator")
         .responseTopic("responseTopic")
         .userProperties(List.of(UserPropertyProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: