Class: Aws::AccessAnalyzer::Types::SnsTopicConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::SnsTopicConfiguration
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
The proposed access control configuration for an Amazon SNS topic. You can propose a configuration for a new Amazon SNS topic or an existing Amazon SNS topic that you own by specifying the policy. If the configuration is for an existing Amazon SNS topic and you do not specify the Amazon SNS policy, then the access preview uses the existing Amazon SNS policy for the topic. If the access preview is for a new resource and you do not specify the policy, then the access preview assumes an Amazon SNS topic without a policy. To propose deletion of an existing Amazon SNS topic policy, you can specify an empty string for the Amazon SNS policy. For more information, see Topic.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#topic_policy ⇒ String
The JSON policy text that defines who can access an Amazon SNS topic.
Instance Attribute Details
#topic_policy ⇒ String
The JSON policy text that defines who can access an Amazon SNS topic. For more information, see Example cases for Amazon SNS access control in the Amazon SNS Developer Guide.
3764 3765 3766 3767 3768 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3764 class SnsTopicConfiguration < Struct.new( :topic_policy) SENSITIVE = [] include Aws::Structure end |