Use this PHP snippet to prevent certain post types from appearing in your AIOSEO sitemap, giving you better control over what gets indexed by search engines.
add_filter( 'aioseo_sitemap_post_types', function ( $postTypes ) {
unset( $postTypes['custom_post_type'] );
return $postTypes;
});