Amazon SNS · Schema

SubscriptionMember

EmailMessagingNotificationsPub/SubPush NotificationsSMS

Properties

Name Type Description
SubscriptionArn string The subscription ARN
Owner string The subscription owner's AWS account ID
Protocol string The subscription protocol
Endpoint string The subscription endpoint
TopicArn string The topic ARN that this subscription is associated with
View JSON Schema on GitHub

JSON Schema

amazon-sns-subscription-member-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SubscriptionMember",
  "type": "object",
  "properties": {
    "SubscriptionArn": {
      "type": "string",
      "description": "The subscription ARN"
    },
    "Owner": {
      "type": "string",
      "description": "The subscription owner's AWS account ID"
    },
    "Protocol": {
      "type": "string",
      "description": "The subscription protocol"
    },
    "Endpoint": {
      "type": "string",
      "description": "The subscription endpoint"
    },
    "TopicArn": {
      "type": "string",
      "description": "The topic ARN that this subscription is associated with"
    }
  }
}