Interface CfnTopicRule.HttpActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.HttpActionProperty extends software.amazon.jsii.JsiiSerializable
Send data to an HTTPS endpoint.

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.*;
 HttpActionProperty httpActionProperty = HttpActionProperty.builder()
         .url("url")
         // the properties below are optional
         .auth(HttpAuthorizationProperty.builder()
                 .sigv4(SigV4AuthorizationProperty.builder()
                         .roleArn("roleArn")
                         .serviceName("serviceName")
                         .signingRegion("signingRegion")
                         .build())
                 .build())
         .confirmationUrl("confirmationUrl")
         .headers(List.of(HttpActionHeaderProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: