{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-dms/refs/heads/main/json-schema/amazon-dms-event-subscription-schema.json",
"title": "EventSubscription",
"description": "Describes an event notification subscription created by the CreateEventSubscription operation.",
"type": "object",
"properties": {
"CustomerAwsId": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The Amazon Web Services customer account associated with the DMS event notification subscription."
}
]
},
"CustSubscriptionId": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The DMS event notification subscription Id."
}
]
},
"SnsTopicArn": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The topic ARN of the DMS event notification subscription."
}
]
},
"Status": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "
The status of the DMS event notification subscription.
Constraints:
Can be one of the following: creating | modifying | deleting | active | no-permission | topic-not-exist
The status \"no-permission\" indicates that DMS no longer has permission to post to the SNS topic. The status \"topic-not-exist\" indicates that the topic was deleted after the subscription was created.
" } ] }, "SubscriptionCreationTime": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The time the DMS event notification subscription was created." } ] }, "SourceType": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The type of DMS resource that generates events.
Valid values: replication-instance | replication-server | security-group | replication-task
" } ] }, "SourceIdsList": { "allOf": [ { "$ref": "#/components/schemas/SourceIdsList" }, { "description": "A list of source Ids for the event subscription." } ] }, "EventCategoriesList": { "allOf": [ { "$ref": "#/components/schemas/EventCategoriesList" }, { "description": "A lists of event categories." } ] }, "Enabled": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Boolean value that indicates if the event subscription is enabled." } ] } } }