@message-queue-toolkit/sns
Version:
SNS adapter for message-queue-toolkit
12 lines • 415 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.isCreateTopicCommand = isCreateTopicCommand;
exports.isSNSTopicLocatorType = isSNSTopicLocatorType;
function isCreateTopicCommand(value) {
return !!value && !!value.Name;
}
function isSNSTopicLocatorType(value) {
return (!!value &&
(!!value.topicArn || !!value.topicName));
}
//# sourceMappingURL=TopicTypes.js.map
;