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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicRule.HttpAuthorizationPropertystatic final classAn implementation forCfnTopicRule.HttpAuthorizationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSigv4
Use Sig V4 authorization.For more information, see Signature Version 4 Signing Process .
Returns union: either
IResolvableorCfnTopicRule.SigV4AuthorizationProperty- See Also:
-
builder
-