How to Hide the "Amazon SES SMTP" Admin Menu

function plt_hide_wp_amazon_ses_smtp_menus() {
	//Hide the "Amazon SES SMTP" menu.
	remove_menu_page('amgsessmtp');
}

add_action('admin_menu', 'plt_hide_wp_amazon_ses_smtp_menus', 11);

Where do I put this code?