# File lib/fog/aws/requests/rds/create_db_cluster_snapshot.rb, line 19
        def create_db_cluster_snapshot(identifier, name)
          request(
            'Action'                      => 'CreateDBClusterSnapshot',
            'DBClusterIdentifier'         => identifier,
            'DBClusterSnapshotIdentifier' => name,
            :parser                       => Fog::Parsers::AWS::RDS::CreateDBClusterSnapshot.new
          )
        end