Class: Aws::SecurityHub::Types::AwsSnsTopicDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsSnsTopicDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsSnsTopicDetails data as a hash:
{
kms_master_key_id: "NonEmptyString",
subscription: [
{
endpoint: "NonEmptyString",
protocol: "NonEmptyString",
},
],
topic_name: "NonEmptyString",
owner: "NonEmptyString",
}
A wrapper type for the topic's ARN.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_master_key_id ⇒ String
The ID of an Amazon Web Services managed key for Amazon SNS or a customer managed key.
-
#owner ⇒ String
The subscription's owner.
-
#subscription ⇒ Array<Types::AwsSnsTopicSubscription>
Subscription is an embedded property that describes the subscription endpoints of an SNS topic.
-
#topic_name ⇒ String
The name of the topic.
Instance Attribute Details
#kms_master_key_id ⇒ String
The ID of an Amazon Web Services managed key for Amazon SNS or a customer managed key.
22350 22351 22352 22353 22354 22355 22356 22357 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22350 class AwsSnsTopicDetails < Struct.new( :kms_master_key_id, :subscription, :topic_name, :owner) SENSITIVE = [] include Aws::Structure end |
#owner ⇒ String
The subscription's owner.
22350 22351 22352 22353 22354 22355 22356 22357 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22350 class AwsSnsTopicDetails < Struct.new( :kms_master_key_id, :subscription, :topic_name, :owner) SENSITIVE = [] include Aws::Structure end |
#subscription ⇒ Array<Types::AwsSnsTopicSubscription>
Subscription is an embedded property that describes the subscription endpoints of an SNS topic.
22350 22351 22352 22353 22354 22355 22356 22357 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22350 class AwsSnsTopicDetails < Struct.new( :kms_master_key_id, :subscription, :topic_name, :owner) SENSITIVE = [] include Aws::Structure end |
#topic_name ⇒ String
The name of the topic.
22350 22351 22352 22353 22354 22355 22356 22357 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22350 class AwsSnsTopicDetails < Struct.new( :kms_master_key_id, :subscription, :topic_name, :owner) SENSITIVE = [] include Aws::Structure end |