Interface CfnTopicRule.HttpAuthorizationProperty

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

@Stability(Stable) public static interface CfnTopicRule.HttpAuthorizationProperty extends software.amazon.jsii.JsiiSerializable
The authorization method used to send messages.

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.*;
 HttpAuthorizationProperty httpAuthorizationProperty = HttpAuthorizationProperty.builder()
         .sigv4(SigV4AuthorizationProperty.builder()
                 .roleArn("roleArn")
                 .serviceName("serviceName")
                 .signingRegion("signingRegion")
                 .build())
         .build();
 

See Also: