/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::SSMContacts::ContactChannel */ export type AwsSsmcontactsContactchannel = { /** * ARN of the contact resource */ ContactId?: string; /** * The device name. String of 6 to 50 alphabetical, numeric, dash, and underscore characters. */ ChannelName?: string; /** * Device type, which specify notification channel. Currently supported values: “SMS”, “VOICE”, “EMAIL”, “CHATBOT. */ ChannelType?: "SMS" | "VOICE" | "EMAIL"; /** * If you want to activate the channel at a later time, you can choose to defer activation. SSM Incident Manager can't engage your contact channel until it has been activated. */ DeferActivation?: boolean; /** * The details that SSM Incident Manager uses when trying to engage the contact channel. */ ChannelAddress?: string; /** * The Amazon Resource Name (ARN) of the engagement to a contact channel. */ Arn?: string; } & { [k: string]: unknown; };