@message-queue-toolkit/sns
Version:
SNS adapter for message-queue-toolkit
6 lines (5 loc) • 411 B
TypeScript
import type { CreateTopicCommandInput } from '@aws-sdk/client-sns';
import type { SNSTopicLocatorType } from '../sns/AbstractSnsService';
export type TopicResolutionOptions = CreateTopicCommandInput | SNSTopicLocatorType;
export declare function isCreateTopicCommand(value: unknown): value is CreateTopicCommandInput;
export declare function isSNSTopicLocatorType(value: unknown): value is SNSTopicLocatorType;