Interface CfnTopicInlinePolicyProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicInlinePolicyProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:07.652Z")
@Stability(Stable)
public interface CfnTopicInlinePolicyProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTopicInlinePolicy
.
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.sns.*; Object policyDocument; CfnTopicInlinePolicyProps cfnTopicInlinePolicyProps = CfnTopicInlinePolicyProps.builder() .policyDocument(policyDocument) .topicArn("topicArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopicInlinePolicyProps
static final class
An implementation forCfnTopicInlinePolicyProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A policy document that contains permissions to add to the specified Amazon SNS topic.The Amazon Resource Name (ARN) of the topic to which you want to add the policy.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPolicyDocument
A policy document that contains permissions to add to the specified Amazon SNS topic.- See Also:
-
getTopicArn
The Amazon Resource Name (ARN) of the topic to which you want to add the policy.- See Also:
-
builder
- Returns:
- a
CfnTopicInlinePolicyProps.Builder
ofCfnTopicInlinePolicyProps
-