Interface CfnTopicRule.SigV4AuthorizationProperty

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

@Stability(Stable) public static interface CfnTopicRule.SigV4AuthorizationProperty extends software.amazon.jsii.JsiiSerializable
For more information, see Signature Version 4 signing process .

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

See Also: